@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

:root {
  --color-primary: #ff2851;
  --color-primary-dark: #e52045;
  --color-secondary: #fdcf2d;
  --color-dark: #000000;
  --color-gray-dark: #353535;
  --color-gray: #9a9a9a;
  --color-light-gray: #eeeeee;
  --color-white: #ffffff;
  --color-bg: #ffffff;
  --color-secondary-bg: #f7f7f7;

  --font-family-base: "Poppins", sans-serif;

  --fs-h1: 65px;
  --fs-h2: 48px;
  --fs-h3: 40px;
  --fs-h4: 32px;
  --fs-h5: 24px;
  --fs-h6: 20px;
  --fs-body-lg: 18px;
  --fs-body: 16px;
  --fs-body-sm: 14px;

  --lh-heading: 1.1;
  --lh-body: 1.6;

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --radius-pill: 999px;

  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08);

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-7: 32px;
  --space-8: 40px;
  --space-9: 48px;
  --space-10: 56px;
  --space-11: 64px;
  --space-12: 80px;
  --space-13: 96px;
  --space-14: 120px;

  --container-max: 1400px;
  --container-pad-desktop: 75px;
  --container-pad-tablet: 40px;
  --container-pad-mobile: 10px;
  --section-pad-desktop: 70px;
  --section-pad-tablet: 50px;
  --section-pad-mobile: 40px;
  --header-sticky-inset: 10px;
  --topbar-pad-inline: 16px;
  --header-gap: 16px;
  --header-overlay-space: 110px;
  --header-radius: 999px;
  --header-mobile-radius: 36px;
  --header-collapse-radius: 32px;
  --alpha-bg: 0.7;
  --backdrop-filter: blur(10px);
}

@media (max-width: 1149.98px) {
  :root {
    --fs-h1: 48px;
    --fs-h2: 38px;
    --fs-h3: 32px;
    --fs-h4: 28px;
    --fs-h5: 22px;
    --fs-h6: 18px;
    --fs-body-lg: 17px;
    --fs-body: 15px;
    --fs-body-sm: 13px;
    --header-overlay-space: 92px;
  }
}

@media (max-width: 749.98px) {
  :root {
    --fs-h1: 38px;
    --fs-h2: 30px;
    --fs-h3: 26px;
    --fs-h4: 24px;
    --fs-h5: 20px;
    --fs-h6: 18px;
    --fs-body-lg: 16px;
    --fs-body: 15px;
    --fs-body-sm: 13px;
    --header-gap: 8px;
    --header-overlay-space: 76px;
  }
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  font-family: var(--font-family-base);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--color-dark);
  background-color: var(--color-bg);
  overflow-x: clip;
}

body.menu-open,
html.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

.site-topbar,
.header-sticky-wrap,
.hero-section,
.site-footer {
  overflow-x: clip;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: inherit;
}

section {
  padding: var(--section-pad-desktop) 0;
}

@media (max-width: 1149.98px) {
  section {
    padding: var(--section-pad-tablet) 0;
  }
}

@media (max-width: 749.98px) {
  section {
    padding: var(--section-pad-mobile) 0;
  }
}

.container-custom {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad-desktop);
}

.container-custom .row {
  --bs-gutter-x: 20px;
}

@media (max-width: 1149.98px) {
  .container-custom {
    max-width: var(--container-max);
    padding-inline: var(--container-pad-tablet);
  }
}

@media (max-width: 749.98px) {
  .container-custom {
    max-width: var(--container-max);
    padding-inline: var(--container-pad-mobile);
  }
}

.h-display-1,
h1,
.h1 {
  font-size: var(--fs-h1);
  line-height: var(--lh-heading);
  font-weight: 600;
}

h2,
.h2 {
  font-size: var(--fs-h2);
  line-height: var(--lh-heading);
  font-weight: 600;
}

h3,
.h3 {
  font-size: var(--fs-h3);
  line-height: 1.2;
  font-weight: 600;
}

h4,
.h4 {
  font-size: var(--fs-h4);
  line-height: 1.2;
  font-weight: 600;
}

h5,
.h5 {
  font-size: var(--fs-h5);
  line-height: 1.3;
  font-weight: 600;
}

h6,
.h6 {
  font-size: var(--fs-h6);
  line-height: 1.4;
  font-weight: 600;
}

.text-body-lg {
  font-size: var(--fs-body-lg);
}

.text-body {
  font-size: var(--fs-body);
}

.text-body-sm {
  font-size: var(--fs-body-sm);
}

.text-gray {
  color: var(--color-gray);
}

.text-gray-dark {
  color: var(--color-gray-dark);
}

/* Buttons */
.btn {
  border-radius: var(--radius-pill);
  font-weight: 500;
  transition: all 0.25s ease;
  box-shadow: none !important;
}

.btn-main {
  background-color: var(--color-primary);
  border: 1px solid var(--color-primary);
  color: var(--color-white);
  padding: 8px;
}

.btn-main:hover,
.btn-main:active,
.btn-main:focus {
  background-color: var(--color-primary-dark) !important;
  border-color: var(--color-primary-dark) !important;
  color: var(--color-white) !important;
}

/* Topbar */
.site-topbar {
  width: 100%;
  max-width: 100%;
  background: var(--color-dark);
  color: var(--color-white);
  padding: 10px var(--topbar-pad-inline);
  position: relative;
}

.topbar-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  min-width: 0;
}

.topbar-right {
  gap: 0;
  flex-wrap: nowrap;
  flex-shrink: 0;
  max-width: 100%;
  overflow: hidden;
}

.topbar-link,
.topbar-lang-toggle {
  color: var(--color-white);
  font-size: 14px;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  line-height: 1;
  white-space: nowrap;
}

.topbar-link {
  padding: 0 10px;
}

.topbar-search-link {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.topbar-search-link span {
  overflow: hidden;
  text-overflow: ellipsis;
}

.topbar-link span,
.topbar-lang-toggle .lang-label {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.topbar-link:hover,
.topbar-lang-toggle:hover {
  color: var(--color-white);
  opacity: 1;
}

.topbar-divider {
  width: 1px;
  height: 16px;
  background-color: rgba(255, 255, 255, 0.82);
  display: inline-block;
  margin-inline: 2px;
  flex-shrink: 0;
}

/* Language dropdown */
.language-dropdown {
  position: relative;
}

.topbar-lang-toggle {
  display: inline-flex;
  align-items: center;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  min-height: 20px;
  line-height: 1;
}

.lang-globe-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lang-globe-icon i {
  font-size: 20px;
  line-height: 1;
  font-weight: 400;
  transform: scale(0.9);
  opacity: 0.88;
}

.topbar-lang-toggle .lang-label {
  font-size: 14px;
  font-weight: 400;
}

.topbar-lang-toggle .lang-chevron {
  width: 12px;
  height: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  line-height: 1;
  transition: transform 0.25s ease;
  opacity: 0.88;
}

.language-dropdown.show .topbar-lang-toggle .lang-chevron {
  transform: rotate(180deg);
}

.topbar-link .bi-search {
  font-size: 20px;
  line-height: 1;
  transform: scale(0.9);
  opacity: 0.88;
}

.language-menu {
  width: max-content;
  min-width: 142px;
  max-width: none;
  max-height: 196px;
  overflow-y: auto;
  background: #3a3a3a;
  border: 0;
  border-radius: 14px;
  padding: 6px 0;
  margin-top: 8px !important;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.28);
}

.language-menu .dropdown-item {
  color: var(--color-white);
  font-size: 14px;
  font-weight: 400;
  padding: 6px 10px;
  line-height: 1.5;
  background: transparent;
  white-space: nowrap;
}

.language-menu .dropdown-item:hover,
.language-menu .dropdown-item:focus {
  background: transparent;
  color: var(--color-secondary);
}

.language-menu .dropdown-item.active,
.language-menu .dropdown-item:active {
  background: transparent;
  color: var(--color-secondary);
}

/* Sticky wrapper */
.header-sticky-wrap {
  position: sticky;
  top: 0;
  z-index: 2;
  padding-top: var(--header-gap);
  padding-inline: var(--header-sticky-inset);
  margin-bottom: calc(-1 * var(--header-overlay-space));
  background: transparent;
}

.site-header {
  background: transparent;
}

.site-header .container-custom {
  max-width: var(--container-max);
  padding-inline: 0;
}

.site-header .navbar-shell {
  background: var(--color-dark);
  border-radius: var(--header-radius);
  padding: 12px 12px 12px 20px;
  display: flex;
  align-items: center;
  column-gap: 16px;
  flex-wrap: nowrap;
  max-width: 100%;
}

.navbar-brand {
  font-size: 24px;
  line-height: 1;
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: -0.3px;
  margin-right: 0;
  flex-shrink: 0;
  min-width: 0;
  transition: none;
}

.navbar-brand:hover,
.navbar-brand:focus,
.navbar-brand:active {
  color: var(--color-primary);
  opacity: 1;
  text-decoration: none;
  outline: none;
  box-shadow: none;
}

.navbar-toggler {
  margin-left: auto;
  border: 0;
  box-shadow: none !important;
  padding: 0;
}

.navbar-toggler-label {
  display: none;
}

.navbar-expand-th .navbar-toggler {
  display: none;
}

.navbar-expand-th .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
  align-items: center;
  flex-grow: 1;
  min-width: 0;
}

.navbar-expand-th .navbar-nav {
  flex-direction: row;
}

.navbar-nav {
  margin-left: auto;
  margin-right: 0 !important;
  column-gap: 0;
  min-width: 0;
}

.navbar-nav .nav-link {
  color: var(--color-white);
  font-size: 16px;
  font-weight: 400;
  padding-inline: 14px !important;
  padding-top: 8px;
  padding-bottom: 8px;
  white-space: nowrap;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: var(--color-secondary);
}

.header-actions {
  margin-left: 10px;
  flex-shrink: 0;
  min-width: 0;
}

.header-actions-tablet,
.nav-overlay-top,
.nav-overlay-divider,
.nav-overlay-brand,
.nav-overlay-close {
  display: none;
}

.mobile-menu-overlay {
  display: none;
}

/* Header CTA */
.btn-header-cta .btn-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-primary);
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  transition:
    background-color 0.28s ease,
    border-color 0.28s ease,
    color 0.28s ease;
}

.btn-header-cta .btn-icon .icon-filled,
.btn-header-cta .btn-icon .icon-outline {
  position: absolute;
  inset: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.32s ease,
    opacity 0.32s ease;
}

.btn-header-cta .btn-icon .icon-filled {
  opacity: 1;
  transform: translateX(0);
}

.btn-header-cta .btn-icon .icon-outline {
  opacity: 0;
  transform: translateX(-45%);
}

.btn-header-cta .btn-icon i {
  font-size: 16px;
  line-height: 1;
}

.btn-header-cta .btn-text {
  white-space: nowrap;
  font-size: 16px;
  font-weight: 400;
}

.btn-header-cta:hover .btn-icon,
.btn-header-cta:active .btn-icon,
.btn-header-cta:focus .btn-icon {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

.btn-header-cta:hover .btn-icon .icon-filled,
.btn-header-cta:active .btn-icon .icon-filled,
.btn-header-cta:focus .btn-icon .icon-filled {
  opacity: 0;
  transform: translateX(70%);
}

.btn-header-cta:hover .btn-icon .icon-outline,
.btn-header-cta:active .btn-icon .icon-outline,
.btn-header-cta:focus .btn-icon .icon-outline {
  opacity: 1;
  transform: translateX(0);
}

.btn-header-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-right: 14px;
  min-height: 44px;
}

.btn-header-cta .btn-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-primary);
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.btn-header-cta .btn-icon .icon-filled,
.btn-header-cta .btn-icon .icon-outline {
  position: absolute;
  inset: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.btn-header-cta .btn-icon .icon-filled {
  opacity: 1;
  transform: translateX(0);
}

.btn-header-cta .btn-icon .icon-outline {
  opacity: 0;
  transform: translateX(-55%);
}

.btn-header-cta .btn-icon i {
  font-size: 16px;
  line-height: 1;
}

.btn-header-cta .btn-text {
  white-space: nowrap;
  font-size: 16px;
  font-weight: 400;
}

.btn-header-cta:hover .btn-icon,
.btn-header-cta:active .btn-icon,
.btn-header-cta:focus .btn-icon {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

.btn-header-cta:hover .btn-icon .icon-filled,
.btn-header-cta:active .btn-icon .icon-filled,
.btn-header-cta:focus .btn-icon .icon-filled {
  opacity: 0;
  transform: translateX(55%);
}

.btn-header-cta:hover .btn-icon .icon-outline,
.btn-header-cta:active .btn-icon .icon-outline,
.btn-header-cta:focus .btn-icon .icon-outline {
  opacity: 1;
  transform: translateX(0);
}

/* Hero */
.hero-section {
  padding-top: calc(var(--section-pad-desktop) + var(--header-overlay-space));
  padding-bottom: var(--section-pad-desktop);
  background: #f3f3f3;
}

.hero-title {
  max-width: 850px;
  margin-bottom: 20px;
  font-size: 60px;
  line-height: 1.2em;
  letter-spacing: -0.04em;
  font-weight: normal;
}

.hero-desc {
  max-width: 670px;
  color: #171717;
  margin-bottom: 28px;
  font-size: 18px;
  line-height: 1.42;
  font-weight: 400;
}

.hero-section .row:first-child {
  margin-bottom: 0;
}

.hero-section .row+.row {
  margin-top: 0;
}

.prompt-box {
  background: var(--color-white);
  border: 12px solid #ffcf42;
  border-radius: 30px;
  padding: 30px 28px 22px;
  min-height: 386px;
  box-shadow: none;
}

.prompt-label {
  display: block;
  font-size: 17px;
  color: #1f1f1f;
  margin-bottom: 18px;
  line-height: 1.2;
  font-style: italic;
  font-weight: 400;
}

.prompt-input {
  border: 0;
  outline: 0;
  background: transparent;
  width: 100%;
  resize: none;
  font-style: italic;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.35;
  color: #949494;
  min-height: 220px;
  padding: 0;
  margin: 0;
}

.prompt-input::placeholder {
  color: #949494;
  opacity: 1;
}

.prompt-box .d-flex.justify-content-end {
  margin-top: auto;
}

.prompt-box .d-flex.justify-content-end .btn,
.prompt-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px !important;
  border-radius: 999px;
  background: #050505;
  color: var(--color-white);
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  border: 0;
}

.prompt-box .d-flex.justify-content-end .btn:hover,
.prompt-box .d-flex.justify-content-end .btn:focus,
.prompt-submit:hover,
.prompt-submit:focus {
  background: #050505;
  color: var(--color-white);
}

.hero-note {
  font-size: 15px;
  color: #1e1e1e;
  margin-top: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.35;
}

.hero-note i {
  font-size: 16px;
  color: #050505;
}

.employer-hero {
  background:
    linear-gradient(180deg, var(--color-dark) 0%, #6b6b6b 52%, var(--color-white) 100%);
}

.employer-hero .hero-title {
  color: var(--color-white);
}

.hero-title-strong {
  font-weight: 600;
}

.hero-title-light {
  font-weight: 400;
}

.employer-hero .hero-desc {
  color: rgba(255, 255, 255, 0.95);
}

.employer-hero .prompt-box-employer {
  border-color: var(--color-primary);
}

.employer-hero .prompt-box-employer .prompt-label {
  color: #111111;
}

.employer-hero .prompt-box-employer .prompt-input {
  color: #949494;
}

.employer-hero .prompt-box-employer .prompt-input::placeholder {
  color: #949494;
}

.employer-hero .hero-note {
  color: #111111;
}

.employer-hero .hero-note i {
  color: #111111;
}

/* Testimonial */
.testimonial-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
}

.testimonial-media {
  background: linear-gradient(135deg, #d9d9d9, #bdbdbd);
}

.testimonial-quote {
  background: var(--color-primary);
  color: var(--color-white);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: var(--radius-lg);
}

.testimonial-quote p {
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.3;
  margin-bottom: var(--space-6);
}

.testimonial-quote small {
  font-size: 20px;
  opacity: 0.95;
}

/* Section heading */
.section-heading {
  text-align: center;
  margin-bottom: var(--space-9);
}

.section-heading h2 {
  font-size: 40px;
}

/* Steps */
.steps-row {
  row-gap: var(--space-8);
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-badge {
  width: 120px;
  height: 160px;
  background: var(--color-primary);
  color: var(--color-white);
  margin-inline: auto;
  clip-path: polygon(50% 0%, 100% 12%, 100% 100%, 50% 88%, 0% 100%, 0% 12%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  font-weight: 600;
  margin-bottom: var(--space-5);
}

.step-title {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: var(--space-3);
}

.step-text {
  color: var(--color-gray-dark);
  font-size: 16px;
  max-width: 260px;
  margin-inline: auto;
}

@media (min-width: 992px) {
  .steps-row {
    position: relative;
  }

  .steps-row::before {
    content: "";
    position: absolute;
    left: 12.5%;
    right: 12.5%;
    top: 68px;
    height: 26px;
    background:
      radial-gradient(circle, var(--color-secondary) 0 11px, transparent 12px) left center / 32px 26px repeat-x;
    z-index: 0;
    pointer-events: none;
  }
}

/* Comparison */
.compare-wrapper {
  overflow-x: auto;
}

.compare-table {
  min-width: 800px;
  border-collapse: separate;
  border-spacing: 10px;
  margin: -10px -10px 0px -10px;
  width: 100%;
  table-layout: fixed;
}


.compare-table th,
.compare-table td {
  padding: 16px 18px;
  border-radius: 0;
  vertical-align: middle;
  font-size: 15px;
}

.compare-table thead th {
  background: #d9d9d9;
  text-align: center;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.2;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.compare-table tbody tr:last-child td {
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}

.compare-table .feature-col {
  background: var(--color-primary);
  color: var(--color-white);
  width: 130px;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
}

.compare-table .brand-col {
  background: var(--color-secondary);
  width: calc((100% - 180px) / 3);
}

.compare-table .neutral-col {
  background: #d9d9d9;
  width: calc((100% - 180px) / 3);
}

/* Why us */
.why-divider {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  border-top: 1px dashed #c9c9c9;
}

.why-stack {
  position: relative;
  margin-bottom: -30px;
}

.why-item {
  position: sticky;
  background: #ffffff;
  padding: 30px 0;
  z-index: 1;
  top: 120px;
}

.why-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% - 50vw);
  width: 100vw;
  border-top: 1px dashed #c9c9c9;
}

.why-item:first-child::before {
  display: none;
}

.why-card {
  display: grid;
  grid-template-columns: 3ch minmax(0, 1fr) minmax(0, 1fr);
  grid-template-rows: min-content 1fr auto;
  align-items: start;
  column-gap: 100px;
  row-gap: 30px;
}

.why-head {
  grid-column: 1 / 3;
  display: grid;
  grid-template-columns: 3ch minmax(0, 1fr);
  column-gap: 100px;
  align-items: center;
  background: #ffffff;
  z-index: 2;
}

.why-head h3 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 0;
}

.why-index {
  font-size: 24px;
  font-weight: 500;
  color: var(--color-dark);
  line-height: 1;
  width: 3ch;
  padding-top: 0;
  align-self: center;
}


.why-copy p {
  margin: 0;
  color: var(--color-dark);
  font-size: 18px;
  line-height: 1.5;
}

.why-copy {
  grid-column: 2;
  grid-row: 2 / span 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  margin-top: 0;
  align-self: start;
}

.why-cta {
  min-height: 52px;
  padding-right: 18px;
}

.why-media {
  grid-column: 3;
  grid-row: 1 / span 3;
  min-height: 350px;
  height: 100%;
  border-radius: 42px;
  overflow: hidden;
  position: relative;
  align-self: start;
  background: linear-gradient(135deg, #d9d9d9, #bdbdbd);
}

.why-media::before {
  content: "Video / gorsel alani";
  position: absolute;
  inset: 0 auto 50% 0;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 8px;
  color: #111111;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}

.why-media::after {
  content: "PDF'deki testimonial gorseli burada kullanilacak.";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  padding: 0 24px;
  color: #4a4a4a;
  font-size: 15px;
  line-height: 1.45;
  text-align: center;
  transform: translateY(-10px);
}

.why-media--brand,
.why-media--insight,
.why-media--speed,
.why-media--fit {
  background: linear-gradient(135deg, #d9d9d9, #bdbdbd);
}

/* Pricing */
#pricing .row {
  --bs-gutter-x: 75px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}


.pricing-card {
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  font-size: 16px;
  height: 100%;
}

.pricing-card-primary {
  background: var(--color-primary);
  color: var(--color-white);
}

.pricing-card-secondary {
  background: var(--color-secondary);
  color: var(--color-dark);
}

.pricing-card .eyebrow {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: var(--space-4);
  text-transform: uppercase;
}

.pricing-big {
  font-size: 50px;
  line-height: 1.2;
  margin-bottom: var(--space-5);
}

.pricing-bigger {
  font-size: 90px;
}

@media (max-width: 1149.98px) {
  #pricing .row {
    --bs-gutter-x: 50px;
  }
}

@media (max-width: 749.98px) {
  #pricing .row {
    --bs-gutter-x: 0px;
    --bs-gutter-y: 20px;

  }
}

/* FAQ */
.accordion {
  --bs-accordion-border-color: #EEEEEE;
  --bs-accordion-btn-focus-box-shadow: none;
  --bs-accordion-btn-bg: transparent;
  --bs-accordion-active-bg: transparent;
  --bs-accordion-bg: transparent;
}

.accordion-item {
  border-left: 0;
  border-right: 0;
  border-radius: 0 !important;
}

.accordion-item:first-child {
  border-top: 0;
}

.accordion-button {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
  padding-left: 0;
  padding-right: 0;
}

.accordion-button,
.accordion-button:not(.collapsed) {
  color: var(--color-dark);
}

.accordion-button:not(.collapsed) {
  box-shadow: none;
}

.accordion-body {
  padding-left: 0;
  padding-top: 0;
  padding-right: 0;
  color: var(--color-gray-dark);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

/* Footer */
.site-footer {
  position: relative;
  background: #000000;
  color: var(--color-white);
  padding-top: 120px;
  padding-bottom: 34px;
  margin-top: 75px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  overflow: visible;
  isolation: isolate;
}

.footer-top-desktop {
  position: absolute;
  left: 0;
  right: 0;
  top: -71px;
  width: auto;
  height: 72px;
  z-index: 1;
  pointer-events: none;
}

.footer-top-desktop-left {
  position: absolute;
  left: 0;
  top: 0;
  width: 456px;
  height: 72px;
}

.footer-top-desktop-left svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: #000000;
  transform: scale(-1, -1);
  transform-origin: center;
}

.footer-top-desktop-right {
  position: absolute;
  right: clamp(56px, 7vw, 120px);
  top: 0;
  width: 248px;
  height: 75px;
}

.footer-top-desktop-right-shape {
  position: absolute;
  inset: 0;
}

.footer-top-desktop-right-shape svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: #000000;
}

.footer-shell {
  position: relative;
  z-index: 2;
}

.footer-scroll-top {
  position: absolute;
  top: 28px;
  left: 50%;
  width: 73px;
  height: 73px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  text-decoration: none;
}

.footer-scroll-top svg {
  display: block;
  width: 100%;
  height: 100%;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1.1fr;
  gap: 75px;
  align-items: start;
}

.footer-brand-block {
  padding-top: 0;
}

.footer-brand {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 30px;
  line-height: 1.08;
  margin-bottom: 16px;
}

.footer-brand sup {
  font-size: 0.48em;
  top: -0.7em;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  color: var(--color-white);
  font-size: 20px;
  text-decoration: none;
  opacity: 0.95;
}

.footer-locations {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px 58px;
}

.footer-location {
  min-width: 0;
}

.footer-title {
  font-size: 21px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 10px;
}

.footer-text {
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
  line-height: 1.42;
}

.footer-newsletter-block {
  padding-top: 0;
  width: 100%;
  max-width: 420px;
  justify-self: start;
  align-self: start;
}

.footer-newsletter-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}

.footer-newsletter-row .form-control {
  flex: 1 1 auto;
  min-width: 0;
}

.footer-newsletter .form-control {
  background: #3f3f3f;
  border: 0;
  color: var(--color-white);
  border-radius: var(--radius-pill);
  min-height: 50px;
  padding: 8px 16px;
  font-size: 16px;
}

.footer-newsletter .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer-newsletter .form-control:hover,
.footer-newsletter .form-control:focus,
.footer-newsletter .form-control:active {
  background: #3f3f3f;
  border: 0;
  box-shadow: none;
  outline: none;
}

.footer-newsletter-btn {
  flex: 0 0 auto;
  min-height: 50px;
  min-width: 110px;
  padding: 8px 16px;
  font-size: 16px;
  font-weight: 400;
  white-space: nowrap;
}

.footer-check {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  max-width: 420px;
}

.footer-check-input {
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  width: 18px;
  height: 18px;
  margin: 0;
  flex: 0 0 auto;
  border: 1.5px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
  outline: none;
}

.footer-check-input:hover,
.footer-check-input:focus,
.footer-check-input:active {
  border-color: rgba(255, 255, 255, 0.92);
  box-shadow: none;
  outline: none;
}

.footer-check-input:checked::after {
  content: "\F26E";
  font-family: "bootstrap-icons";
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  color: var(--color-white);
  font-size: 12px;
  line-height: 1;
}

.footer-check .footer-text {
  font-size: 15px;
  line-height: 1.2;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  margin-top: 46px;
  padding-top: 34px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-link {
  color: inherit;
  text-decoration: none;
}

.footer-bottom-link:hover,
.footer-bottom-link:focus {
  color: var(--color-white);
  text-decoration: none;
}

@media (max-width: 1149.98px) {
  .site-footer {
    padding-top: 70px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  .footer-top-desktop {
    display: block;
    top: -58px;
    height: 58px;
  }

  .footer-top-desktop-left {
    display: none;
  }

  .footer-top-desktop-right {
    right: 28px;
    top: -8px;
    width: 220px;
    height: 72px;
  }

  .footer-scroll-top {
    top: 19px;
    width: 65px;
    height: 65px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }

  .footer-locations {
    grid-column: 1 / -1;
    gap: 28px 32px;
  }

  .footer-newsletter-block {
    grid-column: 2;
    grid-row: 1;
    max-width: 460px;
    justify-self: start;
  }

  .footer-check-input:checked::after {
    font-size: 10px;
  }
}

@media (max-width: 749.98px) {
  .site-footer {
    margin-top: 56px;
    padding-top: 76px;
    padding-bottom: 30px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  .footer-top-desktop {
    top: -48px;
    height: 48px;
  }

  .footer-top-desktop-right {
    right: 18px;
    top: -6px;
    width: 188px;
    height: 60px;
  }

  .footer-scroll-top {
    top: 16px;
    width: 55px;
    height: 55px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-brand {
    font-size: 26px;
    margin-bottom: 14px;
  }

  .footer-socials {
    gap: 18px;
  }

  .footer-newsletter-block {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    max-width: none;
    justify-self: stretch;
  }

  .footer-locations {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 20px;
  }

  .footer-title {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .footer-text {
    font-size: 15px;
    line-height: 1.36;
  }

  .footer-newsletter-row {
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }

  .footer-newsletter-btn {
    width: auto;
    min-width: 104px;
  }

  .footer-check {
    max-width: none;
    gap: 10px;
  }

  .footer-check .footer-text {
    font-size: 14px;
    line-height: 1.12;
  }

  .footer-bottom {
    margin-top: 42px;
    padding-top: 24px;
    text-align: center;
  }
}

@media (max-width: 1149.98px) {

  .header-sticky-wrap,
  .site-header,
  .site-header .container-custom,
  .site-header .navbar,
  .site-header .navbar-shell {
    overflow: visible !important;
  }

  .container-custom .row {
    --bs-gutter-x: 20px;
  }

  .topbar-inner {
    gap: 12px;
  }

  .site-header .navbar-shell {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    column-gap: 12px;
    padding: 12px 12px 12px 20px;
  }

  .navbar-brand {
    order: 1;
    font-size: 22px;
    max-width: 100%;
    margin-right: auto;
  }

  .header-actions-tablet {
    order: 3;
    display: flex;
    margin-left: 0;
    margin-right: 0;
    flex-shrink: 0;
    align-items: center;
    width: auto;
    max-width: none;
    justify-content: flex-start;
  }

  .header-actions-tablet .btn-header-cta {
    padding: 7px 16px 7px 8px;
    gap: 10px;
    width: auto;
  }

  .header-actions-tablet .btn-text {
    font-size: 14px;
    line-height: 1;
  }

  .navbar-expand-th .navbar-toggler {
    order: 2;
    min-width: auto;
    display: inline-flex;
    margin-left: auto;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    padding: 7px 18px 7px 18px;
    background: #000000;
    color: var(--color-white);
    border-radius: var(--radius-pill);
    font-size: 5px;
    line-height: 1;
    flex-shrink: 0;
    min-height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.06);
  }

  .navbar-toggler-label {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    color: var(--color-white);
  }

  .navbar-toggler-icon {
    width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-image: none;
    background-color: transparent;
    border-radius: 0;
    position: relative;
    flex-shrink: 0;
  }

  .navbar-toggler-icon i {
    font-size: 16px;
    line-height: 1;
    color: var(--color-secondary);
    transition:
      color 0.25s ease,
      transform 0.25s ease;
  }

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon i {
    color: var(--color-white);
    transform: rotate(180deg);
  }

  .navbar-expand-th .navbar-collapse {
    display: none !important;
  }

  .mobile-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: start center;
    padding: 18px 24px 24px;
    background: rgba(0, 0, 0, 0.9);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.22s ease,
      visibility 0.22s ease;
  }

  .mobile-menu-overlay.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-menu-panel {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 22px;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    overflow-y: auto;
    overflow-x: hidden;
    transform: translateY(8px);
    transition: transform 0.22s ease;
  }

  .mobile-menu-overlay.is-open .mobile-menu-panel {
    transform: translateY(0);
  }

  .mobile-menu-top {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }

  .mobile-menu-brand {
    display: inline-flex;
    color: var(--color-primary);
    font-size: 26px;
    font-weight: 600;
    line-height: 1;
  }

  .mobile-menu-brand:hover,
  .mobile-menu-brand:focus,
  .mobile-menu-brand:active {
    color: var(--color-primary);
    opacity: 1;
    text-decoration: none;
    outline: none;
    box-shadow: none;
  }

  .mobile-menu-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: var(--color-white);
    font-size: 22px;
    flex-shrink: 0;
  }

  .mobile-menu-divider {
    width: 100%;
    border-top: 1px dashed rgba(255, 255, 255, 0.65);
  }

  .mobile-menu-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .mobile-menu-item {
    width: 100%;
  }

  .mobile-menu-link {
    display: flex;
    width: 100%;
    align-items: center;
    padding: 16px 24px;
    background: #3a3a3a;
    border-radius: 999px;
    color: var(--color-white);
    line-height: 1.25;
    font-size: 16px;
  }

  .mobile-menu-link.active,
  .mobile-menu-link:hover,
  .mobile-menu-link:focus-visible {
    color: var(--color-dark);
    background: var(--color-secondary);
  }

  .mobile-menu-actions {
    display: flex;
    width: 100%;
    justify-content: flex-start;
  }

  .hero-section {
    padding-top: calc(var(--section-pad-tablet) + var(--header-overlay-space));
    padding-bottom: var(--section-pad-tablet);
  }

  .prompt-box {
    min-height: 320px;
    padding: 24px 22px 20px;
  }

  .prompt-input {
    min-height: 180px;
    font-size: 25px;
  }

  .hero-title {
    font-size: 50px;
  }

  .hero-desc {
    font-size: 17px;
  }

  .section-heading {
    margin-bottom: var(--space-8);
  }

  .section-heading h2 {
    font-size: 30px;
  }

  .testimonial-media {
    min-height: 280px;
  }

  .feature-media-card {
    min-height: 320px;
    margin-top: var(--space-8);
  }

  .why-card {
    grid-template-columns: 3ch minmax(0, 1fr) minmax(320px, 0.92fr);
    grid-template-rows: min-content 1fr auto;
    column-gap: 36px;
    row-gap: 20px;
  }

  .why-head {
    grid-column: 1 / 3;
    column-gap: 36px;
  }

  .why-copy {
    grid-column: 2;
    grid-row: 2 / span 2;
    margin-top: 0;
  }

  .why-media {
    grid-column: 3;
    grid-row: 1 / span 3;
    min-height: 350px;
    height: 100%;
    border-radius: 32px;
    align-self: start;
  }

  .why-copy p {
    font-size: 16px;
  }

}

@media (max-width: 749.98px) {
  .hero-section {
    padding-top: calc(var(--section-pad-mobile) + var(--header-overlay-space));
    padding-bottom: var(--section-pad-mobile);
  }

  .container-custom .row {
    --bs-gutter-x: 16px;
  }

  .topbar-inner {
    gap: 8px;
  }

  .topbar-link,
  .topbar-lang-toggle {
    font-size: 13px;
    gap: 4px;
  }

  .topbar-link {
    padding-inline: 6px;
  }

  .topbar-right>.topbar-link:nth-child(1),
  .topbar-right>.topbar-divider:nth-child(2),
  .topbar-right>.topbar-link:nth-child(3),
  .topbar-right>.topbar-divider:nth-child(4) {
    display: none;
  }

  .lang-globe-icon i,
  .topbar-link .bi-search {
    font-size: 18px;
  }

  .lang-globe-icon {
    width: 18px;
    height: 18px;
  }

  .topbar-lang-toggle .lang-chevron {
    width: 10px;
    height: 10px;
    font-size: 8px;
  }

  .topbar-link span,
  .topbar-lang-toggle .lang-label {
    font-size: 13px;
  }

  .language-menu {
    min-width: max-content;
  }

  .header-actions-tablet {
    display: none;
  }

  .navbar-brand,
  .nav-overlay-brand {
    font-size: 20px;
  }

  .navbar-expand-th .navbar-toggler {
    order: 2;
    padding: 7px 16px 7px 16px;
    margin-left: auto;
    min-height: 42px;
  }

  .site-header .navbar-shell {
    padding: 8px 8px 8px 16px;
  }

  .mobile-menu-overlay {
    padding: 25px 20px;
  }

  .mobile-menu-panel {
    width: 100%;
    max-height: calc(100dvh - 24px);
    gap: 18px;
  }

  .mobile-menu-brand {
    font-size: 20px;
  }

  .mobile-menu-link {
    font-size: 15px;
  }

  .btn-header-cta .btn-text {
    font-size: 14px;
  }

  .hero-title,
  .hero-desc {
    max-width: 100%;
  }

  .why-stack {
    margin-bottom: -20px;
  }

  .why-item {
    padding: 20px 0;
    top: 90px;
  }

  .why-card {
    grid-template-columns: 3ch minmax(0, 1fr);
    column-gap: 14px;
    row-gap: 20px;
  }

  .why-head {
    grid-column: 1 / -1;
    column-gap: 5px;
  }

  .why-head h3 {
    font-size: 24px;
  }

  .why-index {
    height: 100%;
    padding-top: 5px;
    font-size: 18px;
  }

  .why-copy {
    grid-column: 1 / -1;
    grid-row: auto;
    padding-left: calc(3ch + 5px);
    row-gap: 20px;
  }

  .why-media {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 350px;
    height: auto;
    border-radius: 26px;
  }

  .hero-title {
    font-size: 35px;
    margin-bottom: 12px;
  }

  .hero-desc {
    font-size: 16px;
    line-height: 1.45;
    margin-bottom: 5px;
  }

  .prompt-box {
    min-height: 260px;
    padding: 20px 18px 18px;
    border-width: 10px;
    border-radius: 24px;
  }

  .prompt-label {
    font-size: 14px;
    margin-bottom: 14px;
  }

  .prompt-input {
    min-height: 150px;
    font-size: 20px;
  }

  .prompt-box .d-flex.justify-content-end .btn,
  .prompt-submit {
    font-size: 14px;
  }

  .hero-note {
    font-size: 14px;
    align-items: flex-start;
  }

  .compare-table thead th {
    font-size: 18px;
  }

  .section-heading {
    margin-bottom: var(--space-7);
  }

  .step-badge {
    width: 96px;
    height: 128px;
    font-size: 42px;
  }

  .accordion-button {
    font-size: 16px;
  }

  .accordion-body {
    font-size: 15px;
  }

  .testimonial-quote p {
    font-size: 24px;
  }

  .testimonial-quote small {
    font-size: 18px;
  }

  .step-title {
    font-size: 18px;
  }

  .step-text {
    font-size: 15px;
  }

  .section-heading h2 {
    font-size: 25px;
  }

  .footer-brand {
    font-size: 30px;
  }

  .pricing-card {
    padding: var(--space-6);
  }

  .pricing-big {
    font-size: 40px;
  }

  .pricing-bigger {
    font-size: 55px;
  }

  .eyebrow {
    font-size: 18px;
  }
}