:root {
  --background: #f0f2f5;
  --surface: #ffffff;
  --surface-variant: #f5f8fc;
  --text-primary: #2c3e50;
  --text-secondary: #5c7089;
  --border-color: rgba(0, 0, 0, 0.08);
  --divider: rgba(0, 0, 0, 0.04);
  --hover: rgba(50, 115, 220, 0.04);
  --selected: rgba(50, 115, 220, 0.08);
  --appbar-bg: #ffffff;
  --drawer-bg: #ffffff;
  --drawer-border: rgba(0, 0, 0, 0.04);
  --card-bg: #ffffff;
  --color-primary: #3273dc;
  --color-primary-light: #4a89dc;
  --color-primary-dark: #2661c7;
  --color-primary-rgb: 50, 115, 220;
  --color-secondary: #00d1b2;
  --color-secondary-light: #00f3d1;
  --color-secondary-dark: #00a693;
  --color-secondary-rgb: 0, 209, 178;
  --color-success: #2661c7;
  --color-success-light: #3273dc;
  --color-success-dark: #1e4b94;
  --color-success-rgb: 38, 97, 199;
  --color-warning: #ffdd57;
  --color-warning-light: #ffe97d;
  --color-warning-dark: #e6c64c;
  --color-warning-rgb: 255, 221, 87;
  --color-error: #ff3860;
  --color-error-light: #ff5b7f;
  --color-error-dark: #e6324d;
  --color-error-rgb: 255, 56, 96;
  --color-info: #3498db;
  --color-info-light: #5dade2;
  --color-info-dark: #2980b9;
  --color-info-rgb: 52, 152, 219;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-xxl: 4rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;
  --spacing-4xl: 8rem;
  --spacing-5xl: 12rem;
  --border-radius-xs: 2px;
  --border-radius-sm: 4px;
  --border-radius-md: 6px;
  --border-radius-lg: 8px;
  --border-radius-xl: 12px;
  --border-radius-2xl: 16px;
  --border-radius-3xl: 24px;
  --border-radius-4xl: 32px;
  --border-radius-5xl: 48px;
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.03);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 2px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 8px 24px rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0 12px 36px rgba(0, 0, 0, 0.12);
  --shadow-3xl: 0 16px 48px rgba(0, 0, 0, 0.15);
  --shadow-4xl: 0 20px 56px rgba(0, 0, 0, 0.18);
  --shadow-5xl: 0 24px 64px rgba(0, 0, 0, 0.2);
}
:root .dark-theme {
  --background: #121212;
  --surface: #1e1e1e;
  --surface-variant: #2c2c2c;
  --text-primary: #f5f5f5;
  --text-secondary: #aaaaaa;
  --border-color: rgba(255, 255, 255, 0.12);
  --divider: rgba(255, 255, 255, 0.08);
  --hover: rgba(50, 115, 220, 0.08);
  --selected: rgba(50, 115, 220, 0.12);
  --appbar-bg: #1e1e1e;
  --drawer-bg: #1e1e1e;
  --drawer-border: rgba(255, 255, 255, 0.08);
  --card-bg: #1e1e1e;
}

.theme-transition {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.dark-theme {
  --background: #121212;
  --surface: #1e1e1e;
  --surface-variant: #2c2c2c;
  --text-primary: #f5f5f5;
  --text-secondary: #aaaaaa;
  --divider: rgba(255, 255, 255, 0.08);
  --hover: rgba(50, 115, 220, 0.08);
  --selected: rgba(50, 115, 220, 0.12);
  --appbar-bg: #1e1e1e;
  --drawer-bg: #1e1e1e;
  --drawer-border: rgba(255, 255, 255, 0.08);
  --card-bg: #1e1e1e;
}

.hero {
  position: relative;
  padding: 3rem 1rem 2rem;
  overflow: hidden;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  width: 100%;
  max-width: 100vw;
  min-height: 100vh;
  margin: 0;
  left: 0;
  right: 0;
  color: white;
  display: flex;
  flex-direction: column;
}
.hero .container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
}
.hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}
.hero__shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}
.hero__shape--1 {
  width: 600px;
  height: 600px;
  top: -300px;
  right: -100px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
}
.hero__shape--2 {
  width: 400px;
  height: 400px;
  bottom: -200px;
  left: -150px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
}
.hero__shape--3 {
  width: 300px;
  height: 300px;
  top: 30%;
  left: 20%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
}
.hero__particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero__language-flags {
  position: absolute;
  overflow: visible;
  z-index: 1;
}
.hero__logo {
  position: absolute;
  top: 2rem;
  left: 2rem;
  z-index: 10;
}
.hero__content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 2rem;
  width: 100%;
  min-height: calc(100vh - 6rem);
  position: relative;
  z-index: 2;
}
.hero__text {
  color: #ffffff;
  position: relative;
  z-index: 3;
}
.hero__text .hero__title, .hero__title {
  font-size: clamp(2.5rem, 7.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #ffffff;
  letter-spacing: -0.5px;
  opacity: 1;
  animation: fadeInUp 0.8s ease-out;
  text-wrap: balance;
}
.hero__gradient-text {
  background: linear-gradient(135deg, #ffcc33 0%, #ff6b6b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.hero__subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  opacity: 0.9;
  max-width: 90%;
  animation: fadeInUp 0.8s ease-out 0.2s both;
  text-wrap: pretty;
  hyphens: auto;
}
.hero__dashboard {
  margin-bottom: 2.5rem;
  width: 100%;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}
.hero__dashboard-content {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  padding: 1.5rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  gap: 2rem;
  transition: all 0.3s ease;
}
.hero__dashboard-info {
  flex: 1;
}
.hero__dashboard-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.25rem 0;
  background: linear-gradient(135deg, #ffcc33 0%, #ff6b6b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__dashboard-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-weight: 400;
}
.hero__dashboard-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #ff6b6b 0%, #ffcc33 100%);
  border: none;
  outline: none;
  color: #ffffff;
  padding: 1rem 1.75rem;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
  white-space: nowrap;
  flex-shrink: 0;
}
.hero__dashboard-btn i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}
.hero__dashboard-btn span {
  font-weight: 700;
}
.hero__dashboard-btn:hover {
  background: linear-gradient(135deg, #ff5252 0%, #ffbb00 100%);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.5);
  transform: translateY(-1px);
}
.hero__dashboard-btn:hover i {
  transform: scale(1.1);
}
.hero__dashboard-btn:active {
  transform: translateY(0);
}
.hero__input {
  margin-bottom: 2.5rem;
  width: 100%;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}
.hero__input-wrapper {
  display: flex;
  margin-bottom: 2rem;
  background-color: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.hero__input-wrapper:focus-within {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}
.hero__input-field {
  flex: 1;
  border: none;
  outline: none;
  padding: 1.25rem 1.5rem;
  font-size: 1.1rem;
  color: #333;
  background: transparent;
}
.hero__input-field::placeholder {
  color: #a0a0a0;
}
.hero__input-button {
  background: linear-gradient(135deg, #ff6b6b 0%, #ffcc33 100%);
  border: none;
  outline: none;
  color: #ffffff;
  padding: 0 1.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.1rem;
  min-width: 120px;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hero__input-button:hover {
  background: linear-gradient(135deg, #ff5252 0%, #ffbb00 100%);
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}
.hero__input-button:hover .hero__button-icon {
  transform: translateX(3px);
}
.hero__input-button:active {
  transform: translateY(1px);
}
.hero__button-text {
  display: block;
  font-size: 1rem;
}
.hero__button-icon {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}
.hero__suggestions {
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease-out 0.4s both;
  --hero-text-color: rgba(255, 255, 255, 0.92);
  --hero-text-color-bright: rgba(255, 255, 255, 0.98);
  --hero-text-color-dim: rgba(255, 255, 255, 0.85);
  --hero-bg-color: rgba(255, 255, 255, 0.12);
  --hero-bg-color-hover: rgba(255, 255, 255, 0.18);
  --hero-border-color: rgba(255, 255, 255, 0.2);
  --hero-border-color-hover: rgba(255, 255, 255, 0.3);
  --hero-border-radius: 16px;
  --hero-padding: 0.5rem 0.875rem;
  --hero-padding-mobile: 0.4rem 0.75rem;
  --hero-font-size: 0.75rem;
  --hero-font-size-mobile: 0.7rem;
  --hero-icon-size: 1rem;
  --hero-icon-size-mobile: 0.9rem;
  --hero-gap: 0.5rem;
  --hero-gap-tablet: 0.4rem;
  --hero-gap-mobile: 0.3rem;
  --hero-backdrop-blur: blur(12px);
  --hero-justify: center;
  --hero-max-width: 800px;
  --hero-list-margin: 0 auto;
  --hero-text-align: center;
  --hero-title-margin: 0.75rem;
  --hero-item-max-width: none;
  --hero-item-min-width: auto;
  --hero-whitespace: normal;
  --hero-overflow: hidden;
  --hero-before-content: "";
  --hero-after-content: "";
  --hero-before-opacity: 0.8;
  --hero-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  --hero-hover-box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12), 0 3px 10px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  --hero-hover-transform: translateY(-1px);
  --hero-active-transform: translateY(0px);
  --hero-active-duration: 0.1s;
  --hero-text-weight: 500;
  --hero-text-line-height: 1.3;
  --hero-text-line-height-mobile: 1.25;
  --hero-text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  --hero-icon-filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.15));
  --hero-icon-hover-transform: scale(1.05);
  --hero-icon-hover-filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.2));
  --hero-transition-speed: 0.15s;
}
@media (max-width: 960px) {
  .hero__suggestions {
    --hero-max-width: 100%;
    --hero-gap: 0.4rem;
  }
}
@media (max-width: 600px) {
  .hero__suggestions {
    --hero-border-radius: 12px;
    --hero-hover-transform: none;
    --hero-hover-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    --hero-active-transform: scale(0.98);
    --hero-bg-color-hover: rgba(255, 255, 255, 0.16);
    --hero-padding: 0.35rem 0.6rem;
    --hero-gap: 0.25rem;
  }
}
.hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 1.5rem 0 2rem 0;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}
.hero__feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.hero__feature i {
  color: #ffffff;
  font-size: 1.1rem;
}
.hero__feature span {
  font-size: 0.85rem;
  font-weight: 500;
  color: #ffffff;
}
.hero__feature--language {
  background: linear-gradient(135deg, rgba(255, 204, 51, 0.2) 0%, rgba(255, 107, 107, 0.2) 100%);
  border: 1px solid rgba(255, 204, 51, 0.3);
  padding: 0.5rem 1rem;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.hero__feature--language i {
  color: #ffcc33;
}
.hero__feature--language span {
  font-weight: 600;
}
.hero__image {
  position: absolute;
  top: 0;
  right: -3vw;
  width: 45vw;
  height: 100vh;
  z-index: 1;
  overflow: visible;
  pointer-events: none;
  animation: fadeInLeft 1.3s ease-out 0.2s both;
}
.hero__figure {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  overflow: visible;
}
.hero__figure-image {
  width: auto;
  height: 80vh;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.15));
  object-fit: contain;
  object-position: right bottom;
  transform: none;
  max-width: none;
}
@media (max-width: 1440px) {
  .hero {
    padding: 2.5rem 1rem 2rem;
  }
  .hero__content {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1.5rem;
    min-height: calc(100vh - 5rem);
  }
  .hero__title {
    font-size: 3.5rem;
    margin-bottom: 1.25rem;
  }
  .hero__subtitle {
    font-size: 1.15rem;
    margin-bottom: 1.75rem;
  }
  .hero__image {
    right: -2vw;
    width: 42vw;
  }
  .hero__figure-image {
    height: 75vh;
  }
}
@media (max-width: 1366px) {
  .hero {
    padding: 2rem 1rem 2rem;
  }
  .hero__content {
    grid-template-columns: 1fr 0.8fr;
    gap: 1.5rem;
    min-height: calc(100vh - 4rem);
  }
  .hero__title {
    font-size: 3.25rem;
    margin-bottom: 1rem;
  }
  .hero__subtitle {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }
  .hero__features {
    gap: 1rem;
    margin: 1rem 0 1.5rem 0;
  }
  .hero__feature {
    padding: 0.4rem 0.6rem;
  }
  .hero__feature i {
    font-size: 1rem;
  }
  .hero__feature span {
    font-size: 0.8rem;
  }
  .hero__image {
    right: 0;
    width: 38vw;
  }
  .hero__figure-image {
    height: 70vh;
  }
  .hero__dashboard {
    margin-bottom: 2rem;
  }
  .hero__dashboard-content {
    padding: 1.25rem 1.75rem;
    gap: 1.5rem;
  }
  .hero__input {
    margin-bottom: 2rem;
  }
}
@media (max-width: 1200px) {
  .hero {
    padding: 2rem 1rem 2rem;
  }
  .hero__content {
    grid-template-columns: 1fr 0.75fr;
    gap: 1.5rem;
    min-height: calc(100vh - 4rem);
  }
  .hero__title {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  .hero__subtitle {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
  }
  .hero__image {
    right: 0;
    width: 35vw;
  }
  .hero__figure-image {
    height: 65vh;
  }
}
@media (max-width: 1024px) {
  .hero {
    padding: 2rem 1rem 2rem;
  }
  .hero__content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
    min-height: calc(100vh - 4rem);
    align-items: flex-start;
    justify-content: center;
  }
  .hero__features {
    display: none;
  }
  .hero__title {
    font-size: 3.25rem;
    margin-bottom: 1rem;
  }
  .hero__subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.5;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .hero__dashboard {
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero__input {
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero__suggestions {
    margin-bottom: 1rem;
  }
  .hero__image {
    display: none;
  }
  .hero__figure {
    display: none;
  }
  .hero__figure-image {
    display: none;
  }
}
@media (max-width: 1200px) {
  .hero__title {
    font-size: clamp(2.25rem, 6vw, 3.5rem);
  }
  .hero__subtitle {
    font-size: 1.15rem;
  }
}
@media (max-width: 992px) {
  .hero {
    padding: 2rem 1.25rem 2rem;
    min-height: 100vh;
    overflow: visible;
  }
  .hero__logo {
    top: 1.5rem;
    left: 1.5rem;
  }
  .hero__content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    min-height: calc(100vh - 4rem);
    align-items: flex-start;
    justify-content: center;
    padding-top: 1rem;
  }
  .hero__text {
    order: 1;
  }
  .hero__title {
    font-size: clamp(2.1rem, 7vw, 2.75rem);
    margin-bottom: 1rem;
  }
  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  .hero__input {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
  }
  .hero__dashboard {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
  }
  .hero__dashboard-content {
    gap: 1.5rem;
    padding: 1.25rem 1.5rem;
  }
  .hero__dashboard-title {
    font-size: 1.4rem;
  }
  .hero__dashboard-subtitle {
    font-size: 0.95rem;
  }
  .hero__dashboard-btn {
    padding: 0.9rem 1.5rem;
    font-size: 0.95rem;
  }
  .hero__features {
    display: none;
  }
  .hero__image {
    display: none;
  }
  .hero__figure {
    display: none;
  }
  .hero__figure-image {
    display: none;
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 1.5rem 0.75rem 2rem;
    min-height: 100vh;
    overflow: visible;
  }
  .hero__logo {
    top: 1.25rem;
    left: 1.25rem;
  }
  .hero__partners {
    bottom: 1rem;
    left: 1rem;
  }
  .hero .container {
    align-items: flex-start;
    padding-top: 1rem;
  }
  .hero__content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    min-height: calc(100vh - 3.5rem);
    align-items: flex-start;
    justify-content: center;
  }
  .hero__title {
    font-size: clamp(2rem, 8vw, 2.4rem);
    margin-bottom: 1rem;
  }
  .hero__subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 100%;
  }
  .hero__input {
    margin-bottom: 2rem;
  }
  .hero__input-field {
    padding: 1.1rem 1.25rem;
    font-size: 1rem;
  }
  .hero__input-button {
    padding: 0 1.25rem;
    min-width: auto;
  }
  .hero__button-text {
    display: none;
  }
  .hero__button-icon {
    font-size: 1.5rem;
    margin: 0 0.5rem;
  }
  .hero__dashboard {
    margin-bottom: 2rem;
  }
  .hero__dashboard-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding: 1.25rem;
  }
  .hero__dashboard-title {
    font-size: 1.3rem;
  }
  .hero__dashboard-subtitle {
    font-size: 0.9rem;
  }
  .hero__dashboard-btn {
    width: 100%;
    max-width: 250px;
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
  }
  .hero__features {
    display: none;
  }
  .hero__image {
    display: none;
  }
  .hero__figure {
    display: none;
  }
  .hero__figure-image {
    display: none;
  }
}
@media (max-width: 576px) {
  .hero {
    padding: 1rem 0.75rem 2rem;
    min-height: 100vh;
    overflow: visible;
  }
  .hero__logo {
    top: 1rem;
    left: 1rem;
  }
  .hero__partners {
    bottom: 0.75rem;
    left: 0.75rem;
  }
  .hero__content {
    grid-template-columns: 1fr;
    gap: 1rem;
    min-height: calc(100vh - 3rem);
    align-items: flex-start;
    justify-content: center;
  }
  .hero__title {
    font-size: clamp(1.85rem, 9vw, 2.2rem);
    margin-bottom: 1rem;
  }
  .hero__subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
  }
  .hero__input {
    margin-bottom: 1.5rem;
  }
  .hero__text {
    order: 0;
  }
  .hero__input-wrapper {
    border-radius: 0.75rem;
  }
  .hero__input-field {
    padding: 0.9rem 1rem;
    font-size: 0.95rem;
  }
  .hero__dashboard {
    margin-bottom: 1.5rem;
  }
  .hero__dashboard-content {
    padding: 1rem;
    gap: 0.75rem;
  }
  .hero__dashboard-title {
    font-size: 1.2rem;
  }
  .hero__dashboard-subtitle {
    font-size: 0.85rem;
  }
  .hero__dashboard-btn {
    padding: 0.9rem 1.25rem;
    font-size: 0.9rem;
  }
  .hero__features {
    display: none;
  }
  .hero__image {
    display: none;
  }
  .hero__figure {
    display: none;
  }
  .hero__figure-image {
    display: none;
  }
}
.hero__partners {
  position: absolute;
  bottom: 1.5rem;
  left: 2rem;
  z-index: 5;
  animation: partnersFadeInUp 1s ease-out 2s both;
}
.hero__partners .container {
  width: auto;
  margin: 0;
  padding: 0;
}
.hero__partners-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.5rem;
  padding: 0;
  white-space: nowrap;
}
.hero__partners-title {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.25rem;
  text-align: left;
}
.hero__partners-logos {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.5rem;
  flex-wrap: nowrap;
}
.hero__partners-logos img {
  height: 18px;
  width: auto;
  opacity: 0.6;
  transition: opacity 0.3s ease, transform 0.3s ease, filter 0.3s ease;
  filter: invert(1) grayscale(1) brightness(1.2);
  flex-shrink: 0;
}
.hero__partners-logos img:hover {
  opacity: 0.9;
  transform: scale(1.05);
  filter: invert(1) grayscale(1) brightness(1.4);
}
.hero__partners-badge {
  height: 20px !important;
  filter: invert(1) grayscale(1) brightness(1.2) !important;
}
@media (max-width: 1400px) {
  .hero__partners {
    bottom: 1rem;
    left: 1.5rem;
  }
  .hero__partners-title {
    font-size: 0.7rem;
  }
  .hero__partners-logos {
    gap: 1rem;
  }
  .hero__partners-logos img {
    height: 14px;
  }
  .hero__partners-badge {
    height: 16px !important;
  }
}
@media (max-width: 992px) {
  .hero__partners-content {
    justify-content: flex-start;
    padding: 0 1rem;
  }
  .hero__partners-logos {
    justify-content: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
  }
  .hero__partners-logos img {
    height: 16px;
    opacity: 0.7;
  }
  .hero__partners-badge {
    height: 18px !important;
  }
}

@media (max-height: 700px) and (min-width: 768px) {
  .hero {
    padding: 1.5rem 1rem 1.5rem;
    min-height: 100vh;
  }
  .hero__content {
    min-height: calc(100vh - 3rem);
    gap: 1rem;
  }
  .hero__title {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
  }
  .hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.25rem;
    line-height: 1.4;
  }
  .hero__features {
    margin: 0.75rem 0 1.25rem 0;
    gap: 0.75rem;
  }
  .hero__dashboard {
    margin-bottom: 1.5rem;
  }
  .hero__dashboard-content {
    padding: 1rem 1.5rem;
    gap: 1.25rem;
  }
  .hero__dashboard-title {
    font-size: 1.25rem;
  }
  .hero__dashboard-subtitle {
    font-size: 0.9rem;
  }
  .hero__input {
    margin-bottom: 1.5rem;
  }
  .hero__suggestions {
    margin-bottom: 1rem;
  }
  .hero__image {
    right: 0;
    width: 30vw;
  }
  .hero__figure-image {
    height: 60vh;
  }
}
@media (max-height: 600px) and (min-width: 992px) {
  .hero {
    padding: 1rem 1rem 1rem;
    min-height: 100vh;
  }
  .hero__content {
    min-height: calc(100vh - 2rem);
    gap: 0.75rem;
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__title {
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
  }
  .hero__subtitle {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
  .hero__features {
    display: none;
  }
  .hero__dashboard {
    margin-bottom: 1.25rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero__dashboard-content {
    padding: 0.75rem 1.25rem;
    gap: 1rem;
  }
  .hero__dashboard-title {
    font-size: 1.1rem;
  }
  .hero__dashboard-subtitle {
    font-size: 0.85rem;
  }
  .hero__input {
    margin-bottom: 1.25rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero__suggestions {
    margin-bottom: 0.75rem;
  }
  .hero__image {
    display: none;
  }
}
@media (max-width: 399px) {
  .hero {
    padding: 0.85rem 0.65rem 1.5rem;
    min-height: 100vh;
  }
  .hero__content {
    gap: 0.75rem;
    min-height: calc(100vh - 2.5rem);
  }
  .hero__title {
    font-size: clamp(1.5rem, 9.5vw, 1.9rem);
    margin-bottom: 0.5rem;
  }
  .hero__subtitle {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }
  .hero__input {
    margin-bottom: 1.25rem;
  }
  .hero__dashboard {
    margin-bottom: 1.25rem;
  }
  .hero__dashboard-content {
    padding: 0.75rem;
    gap: 0.5rem;
  }
  .hero__dashboard-title {
    font-size: 1.1rem;
  }
  .hero__dashboard-subtitle {
    font-size: 0.8rem;
  }
  .hero__dashboard-btn {
    padding: 0.8rem 1rem;
    font-size: 0.85rem;
  }
  .hero__input-field {
    padding: 0.8rem 0.9rem;
    font-size: 0.9rem;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes scrollBounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-8px);
  }
  60% {
    transform: translateY(-4px);
  }
}
@keyframes scrollArrow {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(4px);
  }
}
@keyframes partnersFadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero__input {
  margin-bottom: 2.5rem;
  width: 100%;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero__input-wrapper {
  display: flex;
  margin-bottom: 2rem;
  background-color: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.hero__input-wrapper:focus-within {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.hero__input-field {
  flex: 1;
  border: none;
  outline: none;
  padding: 1.25rem 1.5rem;
  font-size: 1.1rem;
  color: #333;
  background: transparent;
}
.hero__input-field::placeholder {
  color: #a0a0a0;
}

.hero__input-button {
  background: linear-gradient(135deg, #ff6b6b 0%, #ffcc33 100%);
  border: none;
  outline: none;
  color: #ffffff;
  padding: 0 1.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.1rem;
  min-width: 120px;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hero__input-button:hover {
  background: linear-gradient(135deg, #ff5252 0%, #ffbb00 100%);
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}
.hero__input-button:hover .hero__button-icon {
  transform: translateX(3px);
}
.hero__input-button:active {
  transform: translateY(1px);
}

.hero__button-text {
  display: block;
  font-size: 1rem;
}

.hero__button-icon {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.hero__suggestions {
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease-out 0.4s both;
  --hero-text-color: rgba(255, 255, 255, 0.92);
  --hero-text-color-bright: rgba(255, 255, 255, 0.98);
  --hero-text-color-dim: rgba(255, 255, 255, 0.85);
  --hero-bg-color: rgba(255, 255, 255, 0.12);
  --hero-bg-color-hover: rgba(255, 255, 255, 0.18);
  --hero-border-color: rgba(255, 255, 255, 0.2);
  --hero-border-color-hover: rgba(255, 255, 255, 0.3);
  --hero-border-radius: 16px;
  --hero-padding: 0.5rem 0.875rem;
  --hero-padding-mobile: 0.4rem 0.75rem;
  --hero-font-size: 0.75rem;
  --hero-font-size-mobile: 0.7rem;
  --hero-icon-size: 1rem;
  --hero-icon-size-mobile: 0.9rem;
  --hero-gap: 0.5rem;
  --hero-gap-tablet: 0.4rem;
  --hero-gap-mobile: 0.3rem;
  --hero-backdrop-blur: blur(12px);
  --hero-justify: center;
  --hero-max-width: 800px;
  --hero-list-margin: 0 auto;
  --hero-text-align: center;
  --hero-title-margin: 0.75rem;
  --hero-item-max-width: none;
  --hero-item-min-width: auto;
  --hero-whitespace: normal;
  --hero-overflow: hidden;
  --hero-before-content: "";
  --hero-after-content: "";
  --hero-before-opacity: 0.8;
  --hero-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  --hero-hover-box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12),
    0 3px 10px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  --hero-hover-transform: translateY(-1px);
  --hero-active-transform: translateY(0px);
  --hero-active-duration: 0.1s;
  --hero-text-weight: 500;
  --hero-text-line-height: 1.3;
  --hero-text-line-height-mobile: 1.25;
  --hero-text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  --hero-icon-filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.15));
  --hero-icon-hover-transform: scale(1.05);
  --hero-icon-hover-filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.2));
  --hero-transition-speed: 0.15s;
}
@media (max-width: 1024px) {
  .hero__suggestions {
    --hero-max-width: 100%;
    --hero-gap: 0.4rem;
  }
}
@media (max-width: 768px) {
  .hero__suggestions {
    --hero-max-width: 100%;
    --hero-title-margin: 0.5rem;
  }
}

.features {
  background: linear-gradient(135deg, #f8faff 0%, #ffffff 50%, #f0f7ff 100%);
  padding: 2rem 1rem;
  position: relative;
  overflow: hidden;
  color: #333;
  margin: 0;
  z-index: 5;
}
.features__wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 0;
  pointer-events: none;
}
.features__wave svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
}
.features::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 70' preserveAspectRatio='none'%3E%3Cpath fill='%23f9f9f9' d='M0,0L48,5.3C96,11,192,21,288,26.7C384,32,480,32,576,21.3C672,11,768,0,864,0C960,0,1056,11,1152,21.3C1248,32,1344,43,1392,48L1440,53L1440,70L1392,70C1344,70,1248,70,1152,70C1056,70,960,70,864,70C768,70,672,70,576,70C480,70,384,70,288,70C192,70,96,70,48,70L0,70Z'%3E%3C/path%3E%3C/svg%3E");
  background-size: cover;
  background-position: center top;
  z-index: 1;
  pointer-events: none;
}
.features::before {
  content: "";
  position: absolute;
  width: 1200px;
  height: 1200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43, 109, 239, 0.08) 0%, rgba(43, 109, 239, 0) 70%);
  top: -600px;
  right: -300px;
  z-index: 1;
}
.features .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}
.features__title {
  font-size: 3.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 0.5rem;
  color: #333;
  letter-spacing: -1.2px;
  line-height: 1.2;
}
.features__highlight {
  background: linear-gradient(135deg, #2b6def 0%, #11c5ec 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  position: relative;
}
.features__highlight::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, rgba(43, 109, 239, 0.1), rgba(17, 197, 236, 0.1));
  z-index: -1;
  border-radius: 4px;
}
.features__subtitle {
  font-size: 1.25rem;
  text-align: center;
  color: #666;
  margin-bottom: 5rem;
  font-weight: 500;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.features__workflow {
  margin: 4rem auto;
  max-width: 1200px;
  position: relative;
}
.features__steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  padding: 2rem 0;
}
.features__steps::before {
  content: "";
  position: absolute;
  top: 100px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, rgba(43, 109, 239, 0.5) 0%, rgba(54, 209, 220, 0.5) 50%, rgba(156, 39, 176, 0.5) 100%);
  z-index: 1;
}
.features__step {
  flex: 1;
  max-width: 300px;
  text-align: center;
  padding: 0 1rem;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}
.features__step:hover {
  transform: translateY(-5px);
}
.features__step:hover .features__badge {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.features__step::after {
  content: "";
  position: absolute;
  top: 100px;
  left: 50%;
  width: 2px;
  height: 20px;
  background: linear-gradient(to bottom, transparent, rgba(91, 134, 229, 0.5));
  transform: translateX(-50%);
  z-index: 1;
  opacity: 0.7;
}
.features__step:first-child::after {
  display: none;
}
.features__step-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #363636;
  margin-bottom: 0.5rem;
}
.features__step-description {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.features__badge {
  width: 160px;
  height: 160px;
  border-radius: 24px;
  margin: 0 auto 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05), 0 6px 6px rgba(0, 0, 0, 0.06);
}
.features__badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
  z-index: 2;
}
.features__badge--step-1 {
  background: linear-gradient(135deg, #f5f9ff 0%, #e1f0ff 100%);
  border: 1px solid rgba(43, 109, 239, 0.1);
}
.features__badge--step-1 .features__step-number {
  color: #2b6def;
}
.features__badge--step-1 .features__badge-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #2b6def, #11c5ec);
}
.features__badge--step-1 .features__badge-shape {
  position: absolute;
  width: 60px;
  height: 60px;
  background: rgba(43, 109, 239, 0.08);
  border-radius: 12px;
  transform: rotate(45deg);
  bottom: -20px;
  right: -20px;
  z-index: 1;
}
.features__badge--step-1 .features__badge-shape-2 {
  position: absolute;
  width: 40px;
  height: 40px;
  background: rgba(17, 197, 236, 0.08);
  border-radius: 8px;
  transform: rotate(45deg);
  top: -10px;
  left: 20px;
  z-index: 1;
}
.features__badge--step-2 {
  background: linear-gradient(135deg, #f5fffd 0%, #e1fffc 100%);
  border: 1px solid rgba(54, 209, 220, 0.1);
}
.features__badge--step-2 .features__step-number {
  color: #36d1dc;
}
.features__badge--step-2 .features__badge-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #36d1dc, #5b86e5);
}
.features__badge--step-2 .features__badge-shape {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(54, 209, 220, 0.08);
  top: -30px;
  right: -30px;
  z-index: 1;
}
.features__badge--step-2 .features__badge-shape-2 {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(91, 134, 229, 0.08);
  bottom: 20px;
  left: 20px;
  z-index: 1;
}
.features__badge--step-3 {
  background: linear-gradient(135deg, #faf5ff 0%, #f3e6ff 100%);
  border: 1px solid rgba(156, 39, 176, 0.1);
}
.features__badge--step-3 .features__step-number {
  color: #9c27b0;
}
.features__badge--step-3 .features__badge-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #9c27b0, #673ab7);
}
.features__badge--step-3 .features__badge-shape {
  position: absolute;
  width: 100px;
  height: 2px;
  background: rgba(156, 39, 176, 0.08);
  transform: rotate(45deg);
  top: 50px;
  left: -20px;
  z-index: 1;
}
.features__badge--step-3 .features__badge-shape-2 {
  position: absolute;
  width: 100px;
  height: 2px;
  background: rgba(103, 58, 183, 0.08);
  transform: rotate(-45deg);
  bottom: 50px;
  right: -20px;
  z-index: 1;
}
.features__badge--step-3 .features__badge-shape-3 {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(156, 39, 176, 0.05);
  transform: rotate(45deg);
  bottom: 10px;
  left: 10px;
  z-index: 1;
}
.features__step-number {
  font-size: 4rem;
  font-weight: 700;
  position: relative;
  z-index: 3;
}
.features__mini-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}
.features__mini-feature {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.9rem;
  color: #5b86e5;
  font-weight: 500;
}
.features__mini-feature i {
  font-size: 1rem;
}
.features__video {
  margin: 4rem auto;
  max-width: 800px;
  position: relative;
  text-align: center;
}
.features__video-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: linear-gradient(135deg, #5b86e5, #36d1dc);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(91, 134, 229, 0.3);
  z-index: 10;
}
.features__video-container {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}
.features__video-container iframe {
  width: 100%;
  height: 450px;
  border: none;
  border-radius: 16px;
}
.features__video-placeholder {
  position: relative;
  width: 100%;
  height: 450px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: 2;
}
.features__video-placeholder:hover {
  transform: scale(1.02);
}
.features__video-placeholder--hidden {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.98);
}
.features__video-thumbnail {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.features__video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}
.features__video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #5b86e5;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}
.features__video-play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: #5b86e5;
  color: white;
}
.features__video-play-button i {
  margin-left: 4px;
}
.features__social-proof {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}
.features__proof-item {
  text-align: center;
  position: relative;
}
.features__proof-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: #363636;
  margin-bottom: 0.25rem;
  background: linear-gradient(135deg, #5b86e5, #36d1dc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.features__proof-small {
  font-size: 1rem;
  font-weight: 600;
  color: #5b86e5;
}
.features__proof-text {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}
.features__proof-divider {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, transparent, rgba(91, 134, 229, 0.3), transparent);
}
@media (max-width: 992px) {
  .features {
    padding: 1.5rem 1rem;
  }
  .features__title {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
  }
  .features__subtitle {
    font-size: 1.1rem;
    margin-bottom: 3rem;
  }
  .features__steps {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }
  .features__steps::before {
    width: 2px;
    height: 80%;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(180deg, rgba(91, 134, 229, 0.5) 0%, rgba(54, 209, 220, 0.5) 50%, rgba(156, 39, 176, 0.5) 100%);
  }
  .features__step {
    max-width: 100%;
    width: 100%;
    padding: 0 2rem;
  }
  .features__step::after {
    top: auto;
    bottom: -30px;
    left: 50%;
    width: 20px;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(91, 134, 229, 0.5));
    transform: translateX(-50%);
  }
  .features__step:last-child::after {
    display: none;
  }
  .features__video-container iframe, .features__video-placeholder {
    height: 350px;
  }
}
@media (max-width: 768px) {
  .features {
    padding: 1rem 0.75rem;
  }
  .features__workflow {
    margin: 2rem auto;
    padding: 0 0.5rem;
  }
  .features__title {
    font-size: 2.4rem;
    line-height: 1.2;
  }
  .features__subtitle {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }
  .features__steps {
    gap: 2.5rem;
    padding: 1rem 0;
  }
  .features__steps::before {
    height: 85%;
    top: 7.5%;
  }
  .features__step {
    max-width: 280px;
    padding: 0;
    margin-bottom: 0.5rem;
  }
  .features__step::after {
    bottom: -20px;
  }
  .features__badge {
    width: 110px;
    height: 110px;
    border-radius: 20px;
    margin: 0 auto 1rem;
  }
  .features__badge--step-1, .features__badge--step-2, .features__badge--step-3 {
    transform: scale(0.8);
  }
  .features__step-title {
    font-size: 1.3rem;
    margin-bottom: 0.4rem;
  }
  .features__step-description {
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    padding: 0 0.5rem;
  }
  .features__mini-features {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 0.75rem;
  }
  .features__mini-feature {
    font-size: 0.85rem;
    padding: 0.35rem 0.75rem;
    background: rgba(91, 134, 229, 0.05);
    border-radius: 4px;
  }
  .features__mini-feature i {
    font-size: 0.9rem;
  }
  .features__video {
    margin: 2rem auto;
  }
  .features__video-badge {
    font-size: 0.8rem;
    padding: 6px 12px;
    top: -12px;
  }
  .features__video-container iframe {
    height: 300px;
  }
  .features__social-proof {
    padding: 1.25rem 1rem;
    margin-bottom: 2rem;
    flex-direction: row;
  }
  .features__proof-item {
    padding: 0 0.5rem;
  }
  .features__proof-number {
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
  }
  .features__proof-text {
    font-size: 0.8rem;
  }
}
@media (max-width: 480px) {
  .features {
    padding: 0.75rem 0.5rem;
  }
  .features__title {
    font-size: 1.9rem;
    padding: 0 0.5rem;
  }
  .features__subtitle {
    font-size: 0.9rem;
    margin-bottom: 2rem;
    padding: 0 0.5rem;
  }
  .features__workflow {
    margin: 1.5rem auto;
  }
  .features__steps {
    gap: 2rem;
  }
  .features__steps::before {
    height: 85%;
  }
  .features__badge {
    width: 90px;
    height: 90px;
    border-radius: 16px;
    margin-bottom: 0.75rem;
  }
  .features__badge--step-1, .features__badge--step-2, .features__badge--step-3 {
    transform: scale(0.8);
  }
  .features__step-title {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
  }
  .features__step-description {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    padding: 0;
  }
  .features__mini-features {
    gap: 0.5rem;
    margin-top: 0.5rem;
  }
  .features__mini-feature {
    font-size: 0.8rem;
    padding: 0.25rem 0.5rem;
  }
  .features__mini-feature i {
    font-size: 0.8rem;
  }
  .features__video {
    margin: 1.5rem auto;
  }
  .features__video-badge {
    font-size: 0.75rem;
    padding: 5px 10px;
    top: -10px;
    right: 10px;
  }
  .features__video-container {
    border-radius: 12px;
  }
  .features__video-container iframe {
    height: 250px;
  }
  .features__social-proof {
    padding: 1rem 0.75rem;
    margin-bottom: 1.5rem;
    gap: 0.5rem;
  }
  .features__proof-item {
    padding: 0 0.25rem;
  }
  .features__proof-number {
    font-size: 1.5rem;
    margin-bottom: 0.1rem;
  }
  .features__proof-small {
    font-size: 0.9rem;
  }
  .features__proof-text {
    font-size: 0.75rem;
  }
  .features__proof-divider {
    height: 40px;
  }
}
@media (max-width: 375px) {
  .features {
    padding: 0.5rem;
  }
  .features__title {
    font-size: 1.7rem;
  }
  .features__subtitle {
    font-size: 0.85rem;
    margin-bottom: 1.75rem;
  }
  .features__steps {
    gap: 1.75rem;
  }
  .features__badge {
    width: 80px;
    height: 80px;
  }
  .features__badge--step-1, .features__badge--step-2, .features__badge--step-3 {
    transform: scale(0.8);
  }
  .features__step-title {
    font-size: 1.1rem;
  }
  .features__step-description {
    font-size: 0.8rem;
  }
  .features__mini-features {
    flex-direction: column;
    gap: 0.4rem;
  }
  .features__mini-feature {
    width: 100%;
    justify-content: center;
  }
  .features__video-container iframe, .features__video-placeholder {
    height: 200px;
  }
  .features__video-play-button {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  .features__social-proof {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
  .features__proof-number {
    font-size: 1.6rem;
  }
  .features__proof-divider {
    width: 60px;
    height: 1px;
  }
}

.problem {
  background: linear-gradient(135deg, #f8faff 0%, #eef6ff 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.problem__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}
.problem__shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(50, 115, 220, 0.08);
}
.problem__shape--1 {
  width: 400px;
  height: 400px;
  top: -200px;
  left: -100px;
  background: radial-gradient(circle, rgba(50, 115, 220, 0.08) 0%, rgba(50, 115, 220, 0) 70%);
}
.problem__shape--2 {
  width: 300px;
  height: 300px;
  bottom: -150px;
  right: -100px;
  background: radial-gradient(circle, rgba(0, 209, 178, 0.08) 0%, rgba(0, 209, 178, 0) 70%);
}
.problem__shape--3 {
  width: 200px;
  height: 200px;
  top: 40%;
  right: 10%;
  background: radial-gradient(circle, rgba(50, 115, 220, 0.05) 0%, rgba(50, 115, 220, 0) 70%);
}
.problem .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}
.problem__header {
  text-align: center;
  margin-bottom: 4rem;
}
.problem__title {
  font-size: 3rem;
  font-weight: 800;
  color: #2d3748;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.problem__highlight {
  background: linear-gradient(135deg, #3273dc, #00d1b2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.problem__subtitle {
  font-size: 1.2rem;
  color: #718096;
  max-width: 600px;
  margin: 0 auto;
}
.problem__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.problem__card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.problem__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border-color: rgba(50, 115, 220, 0.2);
}
.problem__card:hover .problem__icon-container {
  transform: scale(1.1);
  box-shadow: 0 15px 30px rgba(50, 115, 220, 0.4);
}
.problem__card--featured {
  border: 2px solid #3273dc;
  transform: scale(1.02);
}
.problem__card--featured::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3273dc, #00d1b2);
}
.problem__card-inner {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  height: 100%;
}
.problem__icon-container {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3273dc, #00d1b2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 10px 20px rgba(50, 115, 220, 0.3);
  transition: all 0.3s ease;
}
.problem__icon {
  font-size: 2rem;
  color: white;
}
.problem__card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 1rem;
}
.problem__description {
  font-size: 1rem;
  color: #718096;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.problem__stat {
  background: #f7fafc;
  border-radius: 0.5rem;
  padding: 1rem;
  font-size: 0.9rem;
  color: #4a5568;
  border-left: 4px solid #3273dc;
  margin-top: auto;
}
.problem__stat-value {
  font-weight: 800;
  color: #3273dc;
  font-size: 1.1rem;
}
.problem__impact {
  background: white;
  border-radius: 1rem;
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.problem__impact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3273dc, #00d1b2);
}
.problem__impact-metric {
  text-align: center;
  flex: 1;
  padding: 0 1rem;
}
.problem__impact-metric--highlighted {
  background: linear-gradient(135deg, #3273dc, #00d1b2);
  border-radius: 1rem;
  padding: 1.5rem;
  margin: -1rem 1rem;
  box-shadow: 0 10px 25px rgba(50, 115, 220, 0.3);
}
.problem__impact-metric--highlighted .problem__metric-value {
  color: white;
}
.problem__impact-metric--highlighted .problem__metric-label {
  color: rgba(255, 255, 255, 0.9);
}
.problem__metric-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: #3273dc;
  margin-bottom: 0.5rem;
  line-height: 1;
}
.problem__metric-label {
  font-size: 0.9rem;
  color: #718096;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.problem__cta {
  background: linear-gradient(135deg, #3273dc, #00d1b2);
  color: white;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  margin-left: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(50, 115, 220, 0.3);
  white-space: nowrap;
}
.problem__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(50, 115, 220, 0.4);
  text-decoration: none;
  color: white;
}
.problem::before {
  content: "";
  position: absolute;
  top: 10%;
  right: 5%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(50, 115, 220, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.problem::after {
  content: "";
  position: absolute;
  bottom: 20%;
  left: 8%;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(0, 209, 178, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .problem {
    padding: 5rem 0;
  }
  .problem__title {
    font-size: 2.5rem;
  }
  .problem__grid {
    gap: 1.5rem;
  }
}
@media (max-width: 768px) {
  .problem {
    padding: 4rem 0;
  }
  .problem__title {
    font-size: 2rem;
  }
  .problem__subtitle {
    font-size: 1.1rem;
  }
  .problem__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 400px;
  }
  .problem__card {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .problem__card--featured {
    transform: scale(1);
  }
  .problem__card-inner {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    height: 100%;
  }
  .problem__stat {
    margin-top: auto;
  }
  .problem__icon-container {
    width: 70px;
    height: 70px;
  }
  .problem__icon {
    font-size: 1.5rem;
  }
  .problem__impact {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
  }
  .problem__impact-metric {
    padding: 0;
  }
  .problem__impact-metric--highlighted {
    margin: 0;
    padding: 1.5rem;
  }
  .problem__cta {
    margin-left: 0;
    margin-top: 1rem;
    width: 100%;
    text-align: center;
  }
  .problem__metric-value {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .problem {
    padding: 3rem 0;
  }
  .problem .container {
    padding: 0 1rem;
  }
  .problem__title {
    font-size: 1.75rem;
  }
  .problem__subtitle {
    font-size: 1rem;
  }
  .problem__card {
    padding: 1.25rem;
  }
  .problem__card-title {
    font-size: 1.25rem;
  }
  .problem__description {
    font-size: 0.9rem;
  }
  .problem__impact {
    padding: 1.5rem;
  }
  .problem__metric-value {
    font-size: 1.75rem;
  }
  .problem__metric-label {
    font-size: 0.8rem;
  }
}

[data-aos] {
  pointer-events: none;
}
[data-aos].aos-animate {
  pointer-events: auto;
}

.pricing {
  background: linear-gradient(135deg, #f8faff 0%, #ffffff 50%, #f0f7ff 100%);
  padding: 2rem 1rem;
  position: relative;
  overflow: hidden;
}
.pricing__decoration {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}
.pricing__decoration--circle-1 {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43, 109, 239, 0.04) 0%, transparent 70%);
  top: 10%;
  right: -150px;
  animation: float 6s ease-in-out infinite;
}
.pricing__decoration--circle-2 {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(54, 209, 220, 0.03) 0%, transparent 70%);
  bottom: 20%;
  left: -100px;
  animation: float 8s ease-in-out infinite reverse;
}
.pricing__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}
.pricing__hero {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.pricing__title {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.1;
  color: #1a1a1a;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
@media (max-width: 768px) {
  .pricing__title {
    font-size: 2.2rem;
  }
}
@media (max-width: 576px) {
  .pricing__title {
    font-size: 1.8rem;
  }
}
.pricing__title-highlight {
  background: linear-gradient(135deg, #2b6def 0%, #11c5ec 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  position: relative;
}
.pricing__subtitle {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 0;
  font-weight: 400;
}
@media (max-width: 768px) {
  .pricing__subtitle {
    font-size: 1rem;
  }
}
.pricing__billing-toggle {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}
.pricing__billing-container {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50px;
  padding: 4px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.pricing__billing-option {
  position: relative;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #666;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.pricing__billing-option:hover {
  color: #2b6def;
}
.pricing__billing-option--active {
  background: linear-gradient(135deg, #2b6def 0%, #11c5ec 100%);
  color: white;
  box-shadow: 0 2px 10px rgba(43, 109, 239, 0.3);
}
.pricing__save-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 6px;
  border-radius: 10px;
  white-space: nowrap;
  box-shadow: 0 1px 6px rgba(255, 107, 107, 0.4);
  animation: pulse 2s infinite;
}
.pricing__plans {
  display: grid;
  grid-template-columns: 1fr 1.25fr 1fr;
  gap: 1.5rem;
  margin-bottom: 4rem;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 992px) {
  .pricing__plans {
    max-width: 750px;
    gap: 1rem;
    grid-template-columns: 1fr 1.2fr 1fr;
  }
}
@media (max-width: 768px) {
  .pricing__plans {
    grid-template-columns: 1fr;
    max-width: 400px;
    gap: 1.5rem;
  }
}
.pricing__plan {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
  border: 2px solid transparent;
  position: relative;
  display: flex;
  flex-direction: column;
  height: auto;
}
.pricing__plan--starter {
  border-color: #e5e7eb;
}
.pricing__plan--pro {
  border-color: #2b6def;
  transform: scale(1.02);
}
@media (max-width: 768px) {
  .pricing__plan--pro {
    transform: scale(1);
  }
}
.pricing__plan--enterprise {
  border-color: #11c5ec;
}
.pricing__plan--featured {
  background: linear-gradient(135deg, #fff 0%, #f8faff 100%);
  box-shadow: 0 15px 40px rgba(43, 109, 239, 0.12);
}
@media (max-width: 992px) {
  .pricing__plan {
    padding: 1.25rem;
  }
}
@media (max-width: 768px) {
  .pricing__plan {
    padding: 1.5rem;
  }
}
.pricing__plan-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #2b6def 0%, #11c5ec 100%);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 3px 12px rgba(43, 109, 239, 0.3);
}
.pricing__plan-header {
  text-align: center;
  margin-bottom: 1.5rem;
}
.pricing__plan-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}
.pricing__plan-description {
  color: #666;
  font-size: 0.85rem;
  line-height: 1.4;
  margin: 0;
}
.pricing__plan-price {
  text-align: center;
  margin-bottom: 1.5rem;
  position: relative;
}
.pricing__price-original {
  color: #999;
  font-size: 0.9rem;
  text-decoration: line-through;
  margin-bottom: 0.25rem;
}
.pricing__price-savings {
  background: linear-gradient(135deg, #10b981 0%, #047857 100%);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 10px;
  display: inline-block;
  margin-bottom: 0.5rem;
  box-shadow: 0 1px 6px rgba(16, 185, 129, 0.3);
}
.pricing__price-savings--large {
  font-size: 0.75rem;
  padding: 4px 12px;
}
.pricing__price-main {
  font-size: 2.2rem;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.pricing__price-main--featured {
  background: linear-gradient(135deg, #2b6def 0%, #11c5ec 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.pricing__price-main--custom {
  font-size: 1.8rem;
  background: linear-gradient(135deg, #11c5ec 0%, #2b6def 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
@media (max-width: 992px) {
  .pricing__price-main {
    font-size: 1.8rem;
  }
}
.pricing__price-period {
  color: #666;
  font-size: 0.85rem;
  font-weight: 500;
}
.pricing__plan-metrics {
  background: linear-gradient(135deg, #f8faff 0%, #e5f3ff 100%);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(43, 109, 239, 0.1);
}
.pricing__plan-metrics--featured {
  background: linear-gradient(135deg, #2b6def 0%, #11c5ec 100%);
  color: white;
}
.pricing__metric {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.pricing__metric-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, #2b6def 0%, #11c5ec 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  flex-shrink: 0;
}
.pricing__metric-icon--featured {
  background: rgba(255, 255, 255, 0.2);
}
.pricing__metric-icon--enterprise {
  background: linear-gradient(135deg, #11c5ec 0%, #2b6def 100%);
}
.pricing__metric-content {
  flex: 1;
  min-width: 0;
}
.pricing__metric-number {
  font-size: 0.93rem;
  font-weight: 700;
  color: #2b6def;
  margin-bottom: 0.1rem;
}
.pricing__plan-metrics--featured .pricing__metric-number {
  color: white;
}
.pricing__metric-label {
  font-size: 0.8rem;
  color: #666;
}
.pricing__plan-metrics--featured .pricing__metric-label {
  color: rgba(255, 255, 255, 0.9);
}
.pricing__plan-features {
  flex: 1;
  margin-bottom: 1.5rem;
}
.pricing__feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f3f4f6;
  position: relative;
}
.pricing__feature:last-child {
  border-bottom: none;
}
.pricing__feature--unavailable {
  opacity: 0.5;
}
.pricing__feature--unavailable .pricing__feature-icon {
  color: #dc2626;
}
.pricing__feature--unavailable .pricing__feature-text {
  text-decoration: line-through;
}
.pricing__feature--highlight {
  background: linear-gradient(135deg, #fff3cd 0%, #fef7e0 100%);
  padding: 0.75rem;
  border-radius: 8px;
  border: 1px solid #f59e0b;
  margin: 0.25rem 0;
}
.pricing__feature--highlight .pricing__feature-icon {
  color: #f59e0b;
}
.pricing__feature--highlight .pricing__feature-text {
  font-weight: 600;
  color: #92400e;
}
.pricing__feature-icon {
  color: #10b981;
  font-size: 1rem;
  flex-shrink: 0;
}
.pricing__feature-text {
  color: #374151;
  font-size: 0.85rem;
  line-height: 1.3;
  flex: 1;
}
.pricing__feature-badge {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 6px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.pricing__plan-cta {
  width: 100%;
  padding: 0.85rem 1.5rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-top: auto;
  background: #f3f4f6;
  color: #374151;
  border: 2px solid #e5e7eb;
}
.pricing__plan-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}
.pricing__plan-cta:hover::before {
  left: 100%;
}
.pricing__plan-cta:hover {
  background: #e5e7eb;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}
.pricing__plan-cta--featured {
  background: linear-gradient(135deg, #2b6def 0%, #11c5ec 100%);
  color: white;
  box-shadow: 0 6px 20px rgba(43, 109, 239, 0.3);
}
.pricing__plan-cta--featured:hover {
  background: linear-gradient(135deg, #1e5ce8 0%, #0fb3d3 100%);
  box-shadow: 0 10px 30px rgba(43, 109, 239, 0.5);
  transform: translateY(-2px);
}
.pricing__plan-cta--outline {
  background: transparent;
  color: #2b6def;
  border: 2px solid #2b6def;
}
.pricing__plan-cta--outline:hover {
  background: #2b6def;
  color: white;
}
.pricing__plan-cta--loading {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none !important;
}
.pricing__loading {
  text-align: center;
  padding: 3rem 2rem;
}
.pricing__loading-spinner {
  margin-bottom: 1rem;
}
.pricing__loading-text {
  color: #666;
  font-size: 1rem;
}
.pricing__comparison {
  margin-bottom: 4rem;
  text-align: center;
}
.pricing__comparison-header {
  margin-bottom: 2rem;
}
.pricing__comparison-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}
@media (max-width: 768px) {
  .pricing__comparison-title {
    font-size: 1.6rem;
  }
}
.pricing__comparison-subtitle {
  color: #666;
  font-size: 1rem;
}
.pricing__social-proof {
  margin-bottom: 4rem;
}
.pricing__social-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
  text-align: center;
}
.pricing__stat {
  padding: 1.5rem 1rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
  border: 1px solid #f3f4f6;
}
.pricing__stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, #2b6def 0%, #11c5ec 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin-bottom: 0.25rem;
}
.pricing__stat-label {
  color: #666;
  font-size: 0.85rem;
  font-weight: 500;
}
.pricing__trust-signals {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}
.pricing__trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
  border: 1px solid #f3f4f6;
}
.pricing__trust-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, #f8faff 0%, #e5f3ff 100%);
  display: flex !important;
  align-items: center;
  justify-content: center;
  color: #2b6def;
  font-size: 1rem;
  flex-shrink: 0;
}
.pricing__trust-icon.material-icons {
  display: flex !important;
  line-height: 1;
}
.pricing__trust-content {
  flex: 1;
}
.pricing__trust-title {
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.1rem;
  font-size: 0.9rem;
}
.pricing__trust-description {
  color: #666;
  font-size: 0.8rem;
}
.pricing__faq {
  margin-bottom: 4rem;
  text-align: center;
}
.pricing__faq-header {
  margin-bottom: 2rem;
}
.pricing__faq-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}
@media (max-width: 768px) {
  .pricing__faq-title {
    font-size: 1.6rem;
  }
}
.pricing__faq-subtitle {
  color: #666;
  font-size: 1rem;
}
.pricing__final-cta {
  text-align: center;
  background: linear-gradient(135deg, #2b6def 0%, #11c5ec 100%);
  color: white;
  padding: 1.5rem 1rem;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(43, 109, 239, 0.3);
  position: relative;
  overflow: hidden;
}
.pricing__final-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  opacity: 0.1;
}
.pricing__final-title {
  font-size: 2.6rem;
  font-weight: 900;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, #f37959 0%, #ffcc33 50%, #ff6b6b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}
@supports not (-webkit-background-clip: text) {
  .pricing__final-title {
    color: #ffffff;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.2));
  }
}
@media (max-width: 768px) {
  .pricing__final-title {
    font-size: 1.6rem;
  }
}
.pricing__final-subtitle {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}
.pricing__final-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.pricing__final-button {
  background: white;
  color: #2b6def;
  padding: 1rem 2.5rem;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.pricing__final-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}
.pricing__final-button--primary {
  background: #2b6def;
  color: #fff;
}
.pricing__final-button--secondary {
  background: white;
  color: #2b6def;
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
@media (max-width: 992px) {
  .pricing {
    padding: 1.5rem 0.75rem;
  }
}
@media (max-width: 768px) {
  .pricing {
    padding: 1rem 0.5rem;
  }
  .pricing__container {
    padding: 0 1rem;
  }
  .pricing__hero {
    margin-bottom: 2rem;
  }
  .pricing__billing-toggle {
    margin-bottom: 2rem;
  }
  .pricing__billing-option {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
  .pricing__plans {
    margin-bottom: 3rem;
  }
  .pricing__social-stats {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .pricing__trust-signals {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .pricing__final-actions {
    flex-direction: column;
    gap: 0.75rem;
  }
  .pricing__final-button {
    width: 100%;
  }
  .pricing__final-cta {
    padding: 1rem 0.5rem;
  }
}
@media (max-width: 576px) {
  .pricing__container {
    padding: 0 0.75rem;
  }
  .pricing__plan-badge {
    font-size: 0.7rem;
    padding: 5px 12px;
  }
  .pricing__price-main {
    font-size: 1.6rem;
  }
  .pricing__final-button {
    padding: 0.85rem 2rem;
    font-size: 0.9rem;
  }
}
.pricing__loading-skeleton .pricing__billing-container {
  width: 200px;
  height: 40px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
  border-radius: 50px;
  margin: 0 auto 3rem;
}
.pricing__plan-skeleton {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
  border: 2px solid #e5e7eb;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.pricing__skeleton-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.pricing__skeleton-price {
  margin-bottom: 1.5rem;
}
.pricing__skeleton-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-grow: 1;
  margin-bottom: 1.5rem;
}
.pricing__skeleton-line {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
  border-radius: 4px;
}
.pricing__skeleton-line--title {
  height: 24px;
  width: 70%;
}
.pricing__skeleton-line--subtitle {
  height: 16px;
  width: 90%;
}
.pricing__skeleton-line--price {
  height: 32px;
  width: 60%;
}
.pricing__skeleton-line--feature {
  height: 18px;
  width: 85%;
}
.pricing__skeleton-button {
  height: 48px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
  border-radius: 8px;
  margin-top: auto;
}
.pricing__error {
  text-align: center;
  padding: 3rem 1rem;
  color: #666;
}
.pricing__error-content {
  max-width: 400px;
  margin: 0 auto;
}
.pricing__error-icon {
  font-size: 3rem;
  color: #ff6b6b;
  margin-bottom: 1rem;
}
.pricing__error-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}
.pricing__error-message {
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.pricing__error-retry {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #2b6def;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.pricing__error-retry:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
}
.pricing__error-retry .material-icons {
  font-size: 18px;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.comparison {
  background-color: #f9fafc;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.comparison::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3273dc, #00d1b2);
  z-index: 1;
}
.comparison .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.comparison__title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5rem;
  color: #363636;
}
.comparison__subtitle {
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #7a7a7a;
}
.comparison__table-container {
  max-width: 1200px;
  margin: 0 auto 2rem;
  overflow-x: auto;
  border-radius: 0.75rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  background-color: #ffffff;
}
.comparison__table-container::-webkit-scrollbar {
  height: 8px;
}
.comparison__table-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}
.comparison__table-container::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 4px;
}
.comparison__table-container::-webkit-scrollbar-thumb:hover {
  background: #a1a1a1;
}
@media (max-width: 992px) {
  .comparison__table-container {
    position: relative;
  }
  .comparison__table-container::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
    pointer-events: none;
    z-index: 1;
  }
}
.comparison__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
.comparison__header {
  display: flex;
  font-weight: 700;
  text-align: center;
  background-color: #f5f9ff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.comparison__feature-column {
  width: 25%;
  min-width: 200px;
  background-color: rgba(50, 115, 220, 0.02);
  padding: 1.25rem 1rem;
  font-weight: 600;
  color: #363636;
}
.comparison__product-column {
  width: 18.75%;
  min-width: 150px;
  padding: 1.25rem 1rem;
  text-align: center;
}
.comparison__product-column--highlighted {
  background-color: rgba(50, 115, 220, 0.05);
  position: relative;
}
.comparison__product-column--highlighted::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3273dc, #00d1b2);
}
.comparison__product-logo {
  font-weight: 700;
  color: #363636;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.comparison__product-logo i {
  color: #3273dc;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.comparison__row {
  display: flex;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.comparison__row:last-child {
  border-bottom: none;
}
.comparison__row:hover {
  background-color: rgba(50, 115, 220, 0.01);
}
.comparison__feature {
  width: 25%;
  min-width: 200px;
  padding: 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #4a4a4a;
  background-color: rgba(50, 115, 220, 0.02);
}
.comparison__value {
  width: 18.75%;
  min-width: 150px;
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: #7a7a7a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.comparison__value--highlighted {
  background-color: rgba(50, 115, 220, 0.03);
}
.comparison__icon {
  margin-bottom: 0.25rem;
  font-size: 1.25rem;
}
.comparison__icon--success {
  color: #00d1b2;
}
.comparison__icon--warning {
  color: #ffdd57;
}
.comparison__icon--error {
  color: #ff3860;
}
.comparison__note {
  font-size: 0.75rem;
  color: #7a7a7a;
  margin-top: 0.25rem;
  line-height: 1.4;
}
.comparison__cta-container {
  text-align: center;
  margin-top: 2rem;
}
.comparison__cta {
  background: linear-gradient(135deg, #3273dc 0%, #00d1b2 100%);
  color: white;
  font-weight: 700;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  border: none;
  box-shadow: 0 4px 12px rgba(50, 115, 220, 0.3);
  transition: all 0.3s ease;
  font-size: 1rem;
  cursor: pointer;
}
.comparison__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(50, 115, 220, 0.4);
}
@media (max-width: 768px) {
  .comparison {
    padding: 3rem 1rem;
  }
  .comparison__title {
    font-size: 2rem;
  }
  .comparison__subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  .comparison__table-container {
    margin-bottom: 1.5rem;
  }
  .comparison__feature-column, .comparison__feature {
    min-width: 160px;
  }
  .comparison__product-column, .comparison__value {
    min-width: 120px;
  }
  .comparison__feature-column, .comparison__product-column, .comparison__feature, .comparison__value {
    padding: 0.75rem 0.5rem;
    font-size: 0.85rem;
  }
  .comparison__note {
    font-size: 0.7rem;
  }
}
@media (max-width: 480px) {
  .comparison {
    padding: 2rem 0.75rem;
  }
  .comparison__title {
    font-size: 1.75rem;
  }
  .comparison__subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  .comparison__feature-column, .comparison__feature {
    min-width: 140px;
  }
  .comparison__product-column, .comparison__value {
    min-width: 100px;
  }
  .comparison__cta {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
  }
}

.product-features {
  padding: 6rem 0;
  background-color: #f9fafc;
  position: relative;
  overflow: hidden;
}
.product-features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 10% 10%, rgba(50, 115, 220, 0.03) 0%, transparent 20%), radial-gradient(circle at 90% 30%, rgba(0, 209, 178, 0.03) 0%, transparent 20%), radial-gradient(circle at 30% 70%, rgba(50, 115, 220, 0.03) 0%, transparent 20%), radial-gradient(circle at 80% 90%, rgba(0, 209, 178, 0.03) 0%, transparent 20%);
  z-index: 0;
}
.product-features__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}
.product-features__header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}
.product-features__title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #363636;
  margin-bottom: 1rem;
}
.product-features__underline {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #3273dc, #00d1b2);
  margin: 0 auto;
  border-radius: 2px;
}
.product-features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-bottom: 4rem;
}
.product-features__card {
  background-color: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 2.5rem;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.product-features__card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}
.product-features__card:hover .product-features__icon {
  color: #3273dc;
}
.product-features__card:hover .product-features__decoration .product-features__decoration-icon:nth-child(1) {
  transform: translate(-5px, -5px) rotate(-10deg);
}
.product-features__card:hover .product-features__decoration .product-features__decoration-icon:nth-child(2) {
  transform: translateY(5px);
}
.product-features__card:hover .product-features__decoration .product-features__decoration-icon:nth-child(3) {
  transform: translate(5px, -5px) rotate(10deg);
}
.product-features__card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, transparent 50%, rgba(50, 115, 220, 0.05) 50%);
  border-radius: 0 1rem 0 0;
}
.product-features__icon-wrapper {
  margin-bottom: 1.5rem;
}
.product-features__icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.product-features__icon i {
  font-size: 2rem;
  color: #ffffff;
}
.product-features__icon--chat {
  background: linear-gradient(135deg, #3273dc, #4a89dc);
}
.product-features__icon--research {
  background: linear-gradient(135deg, #00d1b2, #4cd2c0);
}
.product-features__icon--visual {
  background: linear-gradient(135deg, #ff3860, #ff5c7c);
}
.product-features__icon--content {
  background: linear-gradient(135deg, #ffdd57, #ffea8a);
}
.product-features__icon--content i {
  color: #856404;
}
.product-features__card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #363636;
  margin-bottom: 1rem;
}
.product-features__description {
  font-size: 1rem;
  line-height: 1.6;
  color: #4a4a4a;
  margin-bottom: 1.5rem;
}
.product-features__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}
.product-features__list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: #4a4a4a;
}
.product-features__check-icon {
  color: #00d1b2;
  margin-right: 0.75rem;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.product-features__decoration {
  margin-top: auto;
  text-align: center;
  height: 100px;
  position: relative;
}
.product-features__decoration--chat .product-features__decoration-icon {
  color: #3273dc;
}
.product-features__decoration--research .product-features__decoration-icon {
  color: #00d1b2;
}
.product-features__decoration--visual .product-features__decoration-icon {
  color: #ff3860;
}
.product-features__decoration--content .product-features__decoration-icon {
  color: #ffdd57;
}
.product-features__decoration-icon {
  position: absolute;
  font-size: 2.5rem;
  opacity: 0.15;
  transition: all 0.5s ease;
}
.product-features__decoration-icon:nth-child(1) {
  bottom: 20px;
  left: 20%;
}
.product-features__decoration-icon:nth-child(2) {
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}
.product-features__decoration-icon:nth-child(3) {
  bottom: 20px;
  right: 20%;
}
.product-features__cta {
  text-align: center;
  margin-top: 2rem;
}
.product-features__cta-button {
  background: linear-gradient(135deg, #3273dc 0%, #00d1b2 100%);
  color: white;
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  border: none;
  box-shadow: 0 8px 20px rgba(50, 115, 220, 0.3);
  transition: all 0.3s ease;
  font-size: 1.1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}
.product-features__cta-button i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}
.product-features__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(50, 115, 220, 0.4);
}
.product-features__cta-button:hover i {
  transform: translateX(5px);
}
@media (max-width: 992px) {
  .product-features {
    padding: 5rem 0;
  }
  .product-features__header {
    margin-bottom: 3rem;
  }
  .product-features__title {
    font-size: 2.25rem;
  }
  .product-features__grid {
    gap: 2rem;
  }
  .product-features__card {
    padding: 2rem;
  }
  .product-features__decoration {
    height: 80px;
  }
  .product-features__decoration-icon {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .product-features {
    padding: 4rem 0;
  }
  .product-features__title {
    font-size: 2rem;
  }
  .product-features__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .product-features__card {
    padding: 1.75rem;
  }
  .product-features__icon {
    width: 60px;
    height: 60px;
  }
  .product-features__icon i {
    font-size: 1.75rem;
  }
  .product-features__card-title {
    font-size: 1.35rem;
  }
  .product-features__description {
    font-size: 0.95rem;
  }
  .product-features__list li {
    font-size: 0.9rem;
  }
  .product-features__decoration {
    height: 70px;
  }
  .product-features__decoration-icon {
    font-size: 1.75rem;
  }
  .product-features__cta-button {
    padding: 0.9rem 1.75rem;
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .product-features {
    padding: 3rem 0;
  }
  .product-features__header {
    margin-bottom: 2.5rem;
  }
  .product-features__title {
    font-size: 1.75rem;
  }
  .product-features__card {
    padding: 1.5rem;
  }
  .product-features__icon {
    width: 50px;
    height: 50px;
  }
  .product-features__icon i {
    font-size: 1.5rem;
  }
  .product-features__card-title {
    font-size: 1.25rem;
  }
  .product-features__description {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
  }
  .product-features__list {
    margin-bottom: 1.25rem;
  }
  .product-features__list li {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
  }
  .product-features__check-icon {
    font-size: 1rem;
    margin-right: 0.5rem;
  }
  .product-features__decoration {
    height: 60px;
  }
  .product-features__decoration-icon {
    font-size: 1.5rem;
  }
  .product-features__cta-button {
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
  }
}

.testimonials {
  padding: 6rem 0;
  background-color: #ffffff;
  position: relative;
}
.testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 5% 20%, rgba(50, 115, 220, 0.03) 0%, transparent 15%), radial-gradient(circle at 95% 70%, rgba(0, 209, 178, 0.03) 0%, transparent 15%);
  z-index: 0;
}
.testimonials .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}
.testimonials__header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}
.testimonials__title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #363636;
  margin-bottom: 1rem;
}
.testimonials__underline {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #3273dc, #00d1b2);
  margin: 0 auto;
  border-radius: 2px;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}
.testimonials__card {
  background-color: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.testimonials__card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.testimonials__card:hover .testimonials__photo img {
  transform: scale(1.03);
}
.testimonials__card:hover .testimonials__quote-icon {
  transform: translateY(-3px);
}
.testimonials__card--featured {
  background: linear-gradient(135deg, rgba(50, 115, 220, 0.03) 0%, rgba(0, 209, 178, 0.03) 100%);
  border: 1px solid rgba(50, 115, 220, 0.1);
  transform: scale(1.05);
  z-index: 1;
}
.testimonials__card--featured:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}
.testimonials__card--featured .testimonials__quote-icon {
  background: linear-gradient(135deg, #3273dc, #00d1b2);
}
.testimonials__card--featured .testimonials__photo::after {
  border: 3px solid #3273dc;
}
.testimonials__photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  position: relative;
  overflow: hidden;
}
.testimonials__photo::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid #00d1b2;
  border-radius: 50%;
  z-index: 1;
}
.testimonials__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.5s ease;
}
.testimonials__quote-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #3273dc;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}
.testimonials__quote-icon i {
  color: #ffffff;
  font-size: 1.25rem;
}
.testimonials__text {
  font-size: 1rem;
  line-height: 1.7;
  color: #4a4a4a;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  font-style: italic;
}
.testimonials__divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(50, 115, 220, 0.2), rgba(0, 209, 178, 0.2));
  margin-bottom: 1.5rem;
}
.testimonials__author {
  display: flex;
  justify-content: center;
}
.testimonials__info {
  text-align: center;
}
.testimonials__name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #363636;
  margin: 0 0 0.25rem 0;
}
.testimonials__title-text {
  font-size: 0.9rem;
  color: #3273dc;
  margin: 0;
}
.testimonials__stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 3rem;
  padding: 2rem;
  background-color: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.testimonials__stat {
  display: flex;
  align-items: center;
}
.testimonials__stat-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(50, 115, 220, 0.1) 0%, rgba(0, 209, 178, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}
.testimonials__stat-icon i {
  font-size: 1.75rem;
  background: linear-gradient(135deg, #3273dc, #00d1b2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.testimonials__stat-content {
  display: flex;
  flex-direction: column;
}
.testimonials__stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: #363636;
  margin-bottom: 0.25rem;
}
.testimonials__stat-label {
  font-size: 0.9rem;
  color: #7a7a7a;
}
@media (max-width: 992px) {
  .testimonials {
    padding: 5rem 0;
  }
  .testimonials__header {
    margin-bottom: 3rem;
  }
  .testimonials__title {
    font-size: 2.25rem;
  }
  .testimonials__grid {
    gap: 1.5rem;
  }
  .testimonials__card {
    padding: 1.75rem;
  }
  .testimonials__card--featured {
    transform: scale(1.03);
  }
  .testimonials__card--featured:hover {
    transform: scale(1.03) translateY(-5px);
  }
  .testimonials__stats {
    gap: 3rem;
    padding: 1.75rem;
  }
  .testimonials__stat-icon {
    width: 50px;
    height: 50px;
  }
  .testimonials__stat-icon i {
    font-size: 1.5rem;
  }
  .testimonials__stat-value {
    font-size: 1.35rem;
  }
  .testimonials__stat-label {
    font-size: 0.85rem;
  }
  .testimonials__photo {
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 768px) {
  .testimonials {
    padding: 4rem 0;
  }
  .testimonials__title {
    font-size: 2rem;
  }
  .testimonials__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .testimonials__card {
    max-width: 500px;
    margin: 0 auto;
  }
  .testimonials__card--featured {
    transform: scale(1);
    order: -1;
  }
  .testimonials__card--featured:hover {
    transform: translateY(-5px);
  }
  .testimonials__stats {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    max-width: 500px;
    margin: 2rem auto 0;
  }
  .testimonials__stat {
    width: 100%;
    justify-content: flex-start;
  }
  .testimonials__photo {
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 480px) {
  .testimonials {
    padding: 3rem 0;
  }
  .testimonials__header {
    margin-bottom: 2.5rem;
  }
  .testimonials__title {
    font-size: 1.75rem;
  }
  .testimonials__card {
    padding: 1.5rem;
  }
  .testimonials__quote-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 1.25rem;
  }
  .testimonials__quote-icon i {
    font-size: 1.1rem;
  }
  .testimonials__text {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
  }
  .testimonials__name {
    font-size: 1rem;
  }
  .testimonials__title-text {
    font-size: 0.85rem;
  }
  .testimonials__stats {
    padding: 1.5rem;
  }
  .testimonials__stat {
    flex-direction: row;
    align-items: center;
    padding: 0.5rem 0;
  }
  .testimonials__stat-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    margin-right: 1rem;
  }
  .testimonials__stat-icon i {
    font-size: 1.35rem;
  }
  .testimonials__stat-value {
    font-size: 1.25rem;
    line-height: 1.2;
  }
  .testimonials__stat-label {
    font-size: 0.85rem;
    white-space: nowrap;
  }
  .testimonials__photo {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
  }
}
@media (max-width: 375px) {
  .testimonials {
    padding: 2.5rem 0;
  }
  .testimonials__stats {
    padding: 1.25rem;
  }
  .testimonials__stat-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }
  .testimonials__stat-icon i {
    font-size: 1.2rem;
  }
  .testimonials__stat-value {
    font-size: 1.1rem;
  }
  .testimonials__stat-label {
    font-size: 0.8rem;
  }
  .testimonials__card {
    padding: 1.25rem;
  }
  .testimonials__photo {
    width: 70px;
    height: 70px;
  }
  .testimonials__text {
    font-size: 0.9rem;
  }
}

.faq {
  padding: 6rem 0;
  background-color: #f9f9f9;
  position: relative;
}
.faq::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 10% 10%, rgba(50, 115, 220, 0.03) 0%, transparent 20%), radial-gradient(circle at 90% 90%, rgba(0, 209, 178, 0.03) 0%, transparent 20%);
  z-index: 0;
}
.faq__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}
.faq__header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}
.faq__title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #363636;
  margin-bottom: 1rem;
}
.faq__underline {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #3273dc, #00d1b2);
  margin: 0 auto 1.5rem auto;
  border-radius: 2px;
}
.faq__subtitle {
  font-size: 1.1rem;
  color: #666;
  margin: 0;
  font-weight: 400;
}
.faq__content {
  max-width: 900px;
  margin: 0 auto;
}
.faq__categories {
  margin-bottom: 3rem;
}
.faq__tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 1rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.faq__tab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  background: transparent;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.faq__tab .material-icons {
  font-size: 1.1rem;
}
.faq__tab:hover {
  background: rgba(50, 115, 220, 0.1);
  color: #3273dc;
  transform: translateY(-1px);
}
.faq__tab--active {
  background: linear-gradient(135deg, #3273dc, #00d1b2);
  color: white;
  box-shadow: 0 4px 15px rgba(50, 115, 220, 0.3);
  transform: translateY(-2px);
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
  min-height: 400px;
}
.faq__item {
  background-color: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.faq__item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border-color: rgba(50, 115, 220, 0.1);
  transform: translateY(-2px);
}
.faq__question {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  position: relative;
}
.faq__question:hover {
  background: rgba(50, 115, 220, 0.02);
}
.faq__question h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #363636;
  margin: 0;
  padding-right: 1rem;
  line-height: 1.4;
}
.faq__icon {
  color: #3273dc;
  transition: transform 0.3s ease;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.faq__icon--expanded {
  transform: rotate(180deg);
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq__answer p {
  margin: 0;
  color: #4a4a4a;
  line-height: 1.6;
  font-size: 1rem;
}
.faq__answer--expanded {
  max-height: 400px;
  padding: 0 1.5rem 1.5rem 1.5rem;
}
.faq__cta {
  text-align: center;
  margin-top: 4rem;
  padding: 2.5rem 2rem;
  background: linear-gradient(135deg, rgba(50, 115, 220, 0.05), rgba(0, 209, 178, 0.05));
  border-radius: 1rem;
  border: 1px solid rgba(50, 115, 220, 0.1);
}
.faq__cta p {
  font-size: 1.2rem;
  color: #363636;
  margin-bottom: 2rem;
  font-weight: 600;
}
.faq__cta p.faq-note {
  font-size: 0.9rem;
  color: #666;
  margin-top: 1rem;
  margin-bottom: 0;
  font-weight: 400;
}
.faq__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.faq__cta-primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #3273dc, #00d1b2);
  color: #ffffff;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 2rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  font-size: 1rem;
}
.faq__cta-primary-btn .material-icons {
  font-size: 1.2rem;
}
.faq__cta-primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(50, 115, 220, 0.3);
  text-decoration: none;
  color: white;
}
.faq__cta-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  color: #3273dc;
  font-weight: 600;
  padding: 1rem 2rem;
  border: 2px solid #3273dc;
  border-radius: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}
.faq__cta-contact-btn .material-icons {
  font-size: 1.2rem;
}
.faq__cta-contact-btn:hover {
  background: #3273dc;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(50, 115, 220, 0.2);
}
@media (max-width: 992px) {
  .faq {
    padding: 5rem 0;
  }
  .faq__header {
    margin-bottom: 3rem;
  }
  .faq__title {
    font-size: 2.25rem;
  }
  .faq__tabs {
    padding: 0.25rem;
  }
  .faq__tab {
    padding: 0.65rem 1.25rem;
    font-size: 0.85rem;
  }
}
@media (max-width: 768px) {
  .faq {
    padding: 4rem 0;
  }
  .faq__title {
    font-size: 2rem;
  }
  .faq__subtitle {
    font-size: 1rem;
  }
  .faq__categories {
    margin-bottom: 2rem;
  }
  .faq__tabs {
    justify-content: center;
    overflow-x: auto;
    gap: 0.25rem;
    padding: 0.5rem;
  }
  .faq__tabs::-webkit-scrollbar {
    display: none;
  }
  .faq__tab {
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
    flex-shrink: 0;
  }
  .faq__tab .material-icons {
    font-size: 1rem;
  }
  .faq__question {
    padding: 1.25rem;
  }
  .faq__question h3 {
    font-size: 1rem;
  }
  .faq__icon {
    font-size: 1.3rem;
  }
  .faq__answer--expanded {
    padding: 0 1.25rem 1.25rem 1.25rem;
  }
  .faq__answer p {
    font-size: 0.95rem;
  }
  .faq__cta {
    padding: 2rem 1.5rem;
    margin-top: 3rem;
  }
  .faq__cta p {
    font-size: 1.1rem;
  }
  .faq__cta p.faq-note {
    font-size: 0.85rem;
  }
  .faq__cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .faq__cta-primary-btn, .faq__cta-contact-btn {
    padding: 0.9rem 1.75rem;
    font-size: 0.95rem;
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .faq {
    padding: 3rem 0;
  }
  .faq__header {
    margin-bottom: 2.5rem;
  }
  .faq__title {
    font-size: 1.75rem;
  }
  .faq__question {
    padding: 1rem;
  }
  .faq__question h3 {
    font-size: 0.95rem;
  }
  .faq__answer--expanded {
    padding: 0 1rem 1rem 1rem;
  }
  .faq__answer p {
    font-size: 0.9rem;
  }
  .faq__cta {
    padding: 1.5rem 1rem;
  }
  .faq__cta p {
    font-size: 1rem;
  }
  .faq__cta-primary-btn, .faq__cta-contact-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
}

.steps-section {
  padding: 0 0 5rem;
  background-color: #f9f9f9;
  position: relative;
  overflow: hidden;
}
.steps-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.steps-header {
  text-align: center;
  margin-bottom: 3rem;
}

.steps-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #363636;
  margin-bottom: 1rem;
}
.steps-title__highlight {
  background: linear-gradient(135deg, #3273dc 0%, #00d1b2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.steps-subtitle {
  font-size: 1.1rem;
  color: #7a7a7a;
  max-width: 700px;
  margin: 0 auto;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: center;
  margin-bottom: 3rem;
}

.step-card {
  background-color: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  text-align: center;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #3273dc 0%, #00d1b2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #363636;
  margin-bottom: 1rem;
}

.step-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #4a4a4a;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.step-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.step-action {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: #f5f5f5;
  border-radius: 2rem;
  font-size: 0.9rem;
  color: #4a4a4a;
}
.step-action i {
  font-size: 1.1rem;
  color: #3273dc;
}

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 60px;
  height: 2px;
}
.step-connector .connector-line {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #3273dc, #00d1b2);
}
.step-connector .connector-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3273dc, #00d1b2);
}

.steps-cta {
  text-align: center;
  margin-top: 2rem;
}

.steps-cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #3273dc, #00d1b2);
  color: #ffffff;
  font-weight: 600;
  padding: 0.9rem 2rem;
  border-radius: 2rem;
  text-decoration: none;
  font-size: 1.1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.steps-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

@media (max-width: 992px) {
  .steps-title {
    font-size: 2.25rem;
  }
}
@media (max-width: 768px) {
  .steps-section {
    padding: 0 0 4rem;
  }
  .steps-title {
    font-size: 2rem;
  }
  .steps-subtitle {
    font-size: 1rem;
  }
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 500px;
    margin: 0 auto 2rem;
  }
  .step-connector {
    display: none;
  }
}
@media (max-width: 480px) {
  .steps-section {
    padding: 0 0 3rem;
  }
  .steps-title {
    font-size: 1.75rem;
  }
  .steps-subtitle {
    font-size: 0.95rem;
  }
  .step-card {
    padding: 1.5rem;
  }
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
  }
  .step-title {
    font-size: 1.35rem;
  }
  .step-description {
    font-size: 0.95rem;
  }
  .steps-cta-button {
    padding: 0.8rem 1.75rem;
    font-size: 1rem;
  }
}

/*# sourceMappingURL=landing.css.map */
