@font-face {
    font-family: 'Fixel';
    src: url('./assets/fonts/FixelText-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Fixel';
    src: url('./assets/fonts/FixelText-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

:root {
    /* Colors */
    --primary-color: #4CAF50;
    --secondary-color: #2196F3;
    --text-color: #141417;
    --text-light: #666;
    --text-accent: #BF0DE8;
    --bg-primary: #F7F0FF;
    --bg-card: rgba(255, 255, 255, 1);
    --bg-black: #141417;
    --border-card: rgba(166, 122, 219, 0.1);
    --border-color: #ddd;
    --error-color: #f44336;
    --success-color: #4CAF50;

    --btn-google-bg: #141417;
    --btn-primary-bg: #BF0DE8;
    --btn-primary-bg-hover: rgb(208, 115, 208);
    --btn-primary-color: white;

    --btn-secondary-bg: #4CAF50;
    --btn-secondary-bg-hover: #75ba78;
    --btn-secondary-color: white;

    --btn-danger-bg: magenta;
    --btn-danger-bg-hover: magenta;
    --btn-danger-color: white;
    
    /* Typography */
    --font-size-base: 16px;
    --font-size-xs: 0.75rem;
    --font-size-lg: 1.25rem;
    --font-size-xl: 1.5rem;
    --font-weight-normal: 400;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 4rem;
    --spacing-2xl: 6rem;
    
    /* Borders */
    --border-radius: 8px;
    --border-width: 1px;

    /* Heights */
    --height-header: 102px;
    --height-footer: 70px;

    /* Width */
    --sm-screen: 768px;
    --step-number-card: 64px;
    --step-number-card-sm: 56px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body { 
    font-family: Geologica, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-primary);
    margin: 0;
    overflow-x: hidden;
}

.hidden {
    display: none;
}

header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 2rem 2.5rem;
  gap: var(--spacing-lg);
  height: var(--height-header);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.header-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-sm);
}

.user-info {
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: var(--spacing-xs);

}

@media (max-width: 768px) {
  header {
    padding: 32px 16px;
  }
}

footer {
  display: flex;
  background-color: var(--bg-black);
  color: white;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
  gap: var(--spacing-sm);
  padding-top: var(--spacing-md);
  padding-bottom: var(--spacing-sm);
}

.footer-conteiner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
} 

footer a {
  color: white;
  text-decoration: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

#profile-section {
  padding: 40px 80px 40px 80px;
}

@media (max-width: 768px) {
  #profile-section {
    padding: 20px 16px 20px 16px;
  }
}

.header-content {
    width: 100%;
    /* padding-inline: var(--spacing-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-sm); */
}

.description {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
}

@media (max-width: 768px) {
  .header-content {
    
    gap: var(--spacing-xs);
    padding-bottom: var(--spacing-xs);
  }
}


h3, h2 {
  margin: 0;
}

h4, p {
  margin: 0;
}

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

.flex-row-gap-24 {
    display: flex;
    gap: var(--spacing-md);
}

.card {
  padding: 24px 36px 36px;
  border: 1px solid var(--border-card);
  border-radius: 12px;
  background-color: var(--bg-card);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

@media (max-width: 768px) {
  .card {
    padding: var(--spacing-sm);
  } 
}

.initial {
    height: 100%;
}

.exp-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .exp-header {
    gap: var(--spacing-xs);
  }
}

.exp-card {
  margin: 8px 0;
  padding: 16px;
  border: 1px solid grey;
  border-radius: 8px;
}

.exp-label {
  display: flex;
  align-items: center;
  flex: 1;
}

@media (max-width: 768px) {
  .exp-label{
    gap: var(--spacing-xs);
  }
}

.exp-summary {
  margin-left: 8px;
}

.exp-details-wrapper {
  margin-left: 20px;
}

@media (max-width: 768px) {
  .exp-details-wrapper {
    margin-left: 0px;
  }
}


.exp-details {
  display: flex;
  flex-direction: column;
  margin-bottom: 8px;
}

.exp-details input {
  width: 320px;
  margin-bottom: 6px;
}

.exp-details input:last-child {
  margin-bottom: 12px;
}

.section-title {
  display: inline-block;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

/* inputs */
.job-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.form-input {
    width: 100%;
    padding: var(--spacing-xs);
    font-size: var(--font-size-base);
}

input[type="text"], input[type="url"], textarea {
  width: 100%;
  padding: 8px;
  font-size: 14px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  textarea {
    height: 200px;
}
  
}

label {
  font-weight: bold;
  display: block;
}

.input-label {
  font-size: 14px;
  font-weight: bold;
}

input[type="submit"] {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  font-size: 14px;
  box-sizing: border-box;
  background-color: #4CAF50;
  border-radius: 12px;
  color: white;
  border: none;
  cursor: pointer;
}


/* -------- buttons -------- */

.btn-group {
    display: flex;
    justify-content: end ;
    gap: var(--spacing-sm);
    justify-items: center;
    align-items: center;
    flex: 1;
}

.ai-button {
  padding: 12px;
  font-size: 14px;
  box-sizing: border-box;
  background-color: var(--btn-primary-bg);
  border-radius: 12px;
  color: var(--btn-primary-color);
  border: none;
  cursor: pointer;
}

.green-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 12px;
  border: 1px solid var(--btn-primary-bg);
  border-radius: 10px;
  background-color: var(--btn-primary-bg);
  color: var(--btn-secondary-color);
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.2s ease;
}

.green-btn:hover {
  background-color: transparent;
  color: var(--btn-primary-bg);
}

.green-btn svg {
  width: 16px;
  height: 16px;
}

.green-outline-btn {
    background: transparent;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border: 1px solid var(--btn-primary-bg);
    border-radius: 6px;
    color: var(--btn-primary-bg);
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s ease;
}

.green-outline-btn:hover {
    background-color: var(--btn-primary-bg);
    color: var(--btn-secondary-color);
}

.green-outline-btn svg {
    width: 16px;
    height: 16px;
}

.remove-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border: 1px solid var(--btn-danger-bg);
  border-radius: 12px;
  color: var(--btn-danger-bg);
  background-color: transparent;
  cursor: pointer;
  font-size: 20px;
  transition: background 0.2s ease, color 0.2s ease;
}

.remove-btn:hover {
  background-color: var(--btn-danger-bg-hover);
  color: #fff;
}

.remove-btn svg {
  width: 16px;
  height: 16px;
}

.google-btn-wrapper {
    position: relative;
    display: inline-block;
}

.google-btn {
  background: var(--btn-google-bg);
  border: none;
  border-radius: 32px;
  padding: 8px 30px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
  width: 213px;
  height: 46px;
  position: relative;
  overflow: hidden;
  display: flex;
}


.google-btn:hover {
  box-shadow: 0 15px 40px rgba(107, 33, 168, 0.4);
}

.google-icon {
  width: 24px;
  height: 24px;
}

.google-text {
  color: white;
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.05px;
  font-family: Fixel;
  z-index: 1;
}

.google-button-bg{
  position: absolute;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
  z-index: 0;
}

.education-checkbox {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}

.education-checkbox input[type="checkbox"] {
  margin-top: 4px;
  margin-right: 8px;
}

label.education-checkbox {
  font-weight: normal;
}
.education-text {
  display: block;
  text-align: left;
  line-height: 1.4;
}

#profile-section , #user-nav {
    display: none;
}


#auth-section{
    display: flex;
    flex-direction: column;
    width: 100%;
}

.login-section {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-md);
}

#toast {
    visibility: hidden;
    min-width: 200px;
    background: #333;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    padding: 10px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    transition: opacity 0.5s ease;
    opacity: 0;
}
#toast.show {
    visibility: visible;
    opacity: 1;
}

#loaderOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}

#loaderBackdrop {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

#loaderCentered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.separator {
  margin: 2rem 0;
  border-bottom: 1px solid #ddd;
}

.service {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: var(--font-size-xs);
}

/* Hero Section */
.hero-section {
  min-height: clamp(645px, calc(100vh - var(--height-header)), 900px);
  position: relative;
  padding: 40px 96px;
  display: flex;
  align-items: center;
  font: var(--font-family-base);
  overflow-x: hidden;
}

@supports (height: 100dvh) {
  .hero-section {
    min-height: clamp(645px, calc(100vh - var(--height-header)), 960px);
  }

  .how-section {
    min-height: clamp(645px, calc(100vh - var(--height-header)), 960px);
  }
}

.page-shadow {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: auto;
  z-index: -1;
  pointer-events: none;
}

.page-shadow-mob {
  display: none;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  position: relative;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 64px;
    color: var(--text-color);
    white-space: nowrap;
    display: inline-flex;
}

.hero-title .highlight {
    background: rgba(255, 255, 255, 0.9);
    margin-left: 10px;
    color: var(--text-accent);
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid var(--text-accent);
    display: flex;
    align-items: center;
    width: 0; /* Critical: Start with 0 width */
    animation: 
      typing 1s steps(6, end) 1.5s forwards, /* 'forwards' keeps final state */
      blink-caret .75s step-end infinite;
}

.hero-subtitle {
  font-weight: 300;
  font-size: 22px;
  line-height: 120%;
  letter-spacing: 0px;
}

.hero-description {
  font-weight: 700;
  font-size: 22px;
  line-height: 120%;
  letter-spacing: 0px;
  color: var(--text-accent);
}

.hero-description span {
  color: var(--text-color);
}

.hero-image-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
  display: flex;
  align-items: flex-end;
}

.hero-image {
  display: none;
}
.hero-image-desctop {
  width: clamp(400px, 60vw, 990px);
  height: auto;
  transform: translate(0, 100px);
}

@media (max-width: 1024px) {
  .hero-section {
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 40px;
    gap: 32px;
  }

  .hero-title {
    display: flex;
    flex-direction: column;
    white-space: normal;
    font-size: 36px;
    line-height: 42px;
  }

  .hero-title .highlight {
    margin-left: 0;
  }

  /* .hero-image {
    top: 70%;
    right: -15%;
  } */
}

@media (max-width: 768px) {
  .page-shadow {
    display: none;
  }

  .page-shadow-mob {
    display: block;
    position: absolute;
    top: -10%;
    right: 0;
    width: 100%;
    height: auto;
    z-index: -1;
    pointer-events: none;
  }

  .hero-section {
    padding: 40px 16px;
  }

  .hero-title {
    font-size: 36px;
    line-height: 42px;
    margin: 0;
    display: inline-flex;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-description {
    font-size: 20px;
  }

  .hero-image-wrapper {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
  }

  .hero-image {
    display: block;
    max-height: 536px;
    transform: translate(0, 80px);
}
  .hero-image-desctop {
      display: none;
  }
}

@keyframes typing {
  from { width: 0 }
  to { width: 6ch } 
}

@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: var(--text-accent); }
}

/* How it works Section */
.how-section {
  min-height: clamp(850px, calc(100vh - var(--height-header)), 950px);
  padding: 120px 96px 0 96px;
  display: flex;
  gap: 80px;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

.step-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

/* Make image and text columns take exactly half width on desktop */
@media (min-width: 1025px) {
  .how-section > .steps-text,
  .how-section > .step-text,
  .how-section > .steps-image,
  .how-section > .steps-image-container {
    flex: 1 1 0;
    min-width: 0; /* allow content to shrink without causing overflow */
  }
}

.step-text {
  gap: 24px;
}

.section-title {
  font-weight: 700;
  font-size: 42px;
  line-height: 64px;
  letter-spacing: 0px;
  text-align: center;
}

.steps-container {
  display: flex;
}

.steps-image-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

#steps-image {
  width: clamp(400px, 60vw, 650px);
}

#steps-image-mob {
  display: none;
}
.steps-text {
  flex: 1;
}
.steps-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-top: 40px;
  gap: 80px;
  position: relative; /* for vertical connector line */
}

/* Auto-stretch vertical connector line that aligns to the center of step-number */
.steps-list::before {
  content: "";
  position: absolute;
  left: calc(var(--step-number-card) / 2);
  top: calc(var(--step-number-card) );
  bottom: calc(var(--step-number-card) / 2);
  width: 2px;
  background: var(--text-accent);
  z-index: -1; /* keep behind content */
}

/* Hide per-item fixed-height connector to avoid misalignment on different screens */
.step-connector {
  display: none;
}

.step-item {
  display: flex;
  gap: 24px;
  align-items: center;
  position: relative;
}

.step-number {
  min-width: var(--step-number-card);
  height: var(--step-number-card);
  background: rgba(255, 255, 255, 0.98);
  border-radius: 16px;
  border: 2px solid var(--text-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 900;
  color: var(--text-accent);
  text-shadow: 0px 4px 16px 0px rgba(191, 13, 232, 0.5);

}

.step-number.last {
  background: var(--text-accent);
  color: white;
}
.step-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.step-content h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  letter-spacing: 0px;
}

.step-content p {
  font-family: Fixel;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0px;
  margin-top: 2px;
}

.step-connector {
  position: absolute;
  z-index: -1;
  top: var(--step-number-card);
  border-left: 2px solid var(--text-accent);
  height: 80px;
  margin-left: 32px;
}

@media (max-width: 1024px) {
  .how-section {
    padding: 40px 40px;
    justify-content: flex-start;
  }

  .steps-image-container {
    position: absolute;
    z-index: -1;
    bottom: 0;
    display: flex;
  }
}

@media (max-width: 768px) {
  .how-section {
    padding: 40px 16px;
    align-content: space-between;
  }
  .section-title {
    font-size: 36px;
    line-height: 42px;
  }

  .section-title-2 {
    font-size: 20px;
    line-height: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .steps-list {
    gap: 65px;
  }
  .steps-list::before {
    left: calc(var(--step-number-card-sm) / 2);
    top: calc(var(--step-number-card-sm));
    bottom: calc(var(--step-number-card-sm) / 2);
  }
  .step-item {
    gap: 16px;
}

  .step-number {
    min-width: var(--step-number-card-sm);
    height: var(--step-number-card-sm);
    font-size: 24px;
    font-weight: 700;
  }

  .step-content {
    gap: 4px;
  }

  .step-content h3 {
    font-size: 20px;
  }

  .step-content p {
    font-weight: 300;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0px;
  }

  .step-connector {
    position: absolute;
    bottom: var(--step-number-card-sm);
    height: 90px;
    margin-left: 27px;
  }

  /* removed empty .steps-image img ruleset */

  #steps-image {
    display: none;
}

  #steps-image-mob {
    display: block;
  }
}

.section {
  padding: 120px 96px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Benefits Section */
.benefits-section {
  padding: 120px 96px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.benefits-section .section-title {
  text-align: center;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 1300px;
  margin: 0 auto;
}

.benefit-card {
  background: var(--bg-card);
  padding: 32px;
  border-radius: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border: 4px solid var(--border-card);
}

.benefit-icon {
  min-width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  background: rgba(254, 1, 226, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 5px;
}

.benefit-icon img {
    width: 100%;
    height: 100%;
}

.benefit-content {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.benefit-content h3 {
  font-weight: 300;
  font-style: Light;
  font-size: 24px;
  line-height: 120%;
  letter-spacing: 0px;
}

@media (max-width: 1024px) {

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

@media (max-width: 768px) {
  .benefits-section {
    padding: 40px 16px;
    padding-bottom: 80px;
  }

  .benefit-card {
    gap: 16px;
    min-height: 114px;
    align-items: center;
  }

  .benefit-icon {
    min-width: 48px;
    height: 48px;
    font-size: 24px;
    border-radius: 12px;
    padding-top: 3px;
  }

  .benefit-content h3 {
    font-size: 20px;
    line-height: 120%;
  }

  .section {
    padding: 40px 16px;
    display: flex;
}
}

/* CTA Section */
.cta-section {
  min-height: clamp(850px, calc(100vh - var(--height-header) - var(--height-footer)), 940px);
  padding: 240px 96px 0 96px;
  display: flex;
  gap: 32px;
  justify-content: start;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

.cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
  position: relative;
  overflow: visible;
}

.cta-card {
  background: var(--bg-card);
  padding: 40px 32px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
  border: 4px solid var(--border-card);
  max-width: 832px;
  height: 250px;
  width: 100%;
  margin: 0 auto;
  box-shadow: 10px 5px 70px 15px #FE01E2;
  position: relative;
}

.cta-card-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  z-index: 2;
}

.cta-card-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cta-description {
  font-family: Fixel;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0px;
  color: var(--text-color);
}

.cta-image-wrapper {
  position: absolute;
  z-index: 1;
  bottom: -600px;
}

@media (max-width: 768px) {
  .cta-section {
    flex-direction: column;
    padding: 80px 16px;
    align-items: center;
    min-height: clamp(620px, calc(100vh - var(--height-header) - var(--height-footer)), 740px);
  }

  .cta-card {
    padding: 32px 24px;
    max-width: 100%;
  }

  .cta-description {
    font-weight: 300;
    font-size: 16px;
  }

  .cta-image-wrapper {
    bottom: -400px;
    right: 0;
    
    
}
  .cta-image-wrapper img{
    width: 600px;
    transform: translate(160px,0);
}
}

/* Honestly section */
.honestly-section {
  display: inline-flex;
  align-items: start;
  text-align: start;
  min-height: 800px;
  position: relative;
  padding-inline: 96px;

}

.honestly-section-wrapper {
  display: inline-flex;
  align-items: start;
  text-align: start;
  min-height: 800px;
  text-align: start;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

 .section-title {
  text-align: start;
  max-width: 800px;
}

.honestly-title {
  font-weight: 700;
  font-size: 26px;
  line-height: 120%;
  letter-spacing: 0px;
}

.honestly-section-img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 600px;
  display: flex;
  justify-content: end;
}

.honestly-section-img img {
  width: 100%;
  transform: translate(0, 200px);
  z-index: -1;
}

.highlight {
  background: linear-gradient(
    to top,
    #c00de855 50%,   /* колір маркера */
    transparent 50%
  );
  background-size: 100% 60px; /* висота підчоркування */
  background-repeat: no-repeat;
  background-position: 0 90%; /* зсунь вище або нижче */
}

/* ==================== Pricing Section ==================== */
.pricing-section {
  padding: 120px 96px;
  padding-top: 0;
  display: flex;
  flex-direction: column;
  gap: 56px;
  align-items: center;
  position: relative;
}

.pricing-section .section-title {
  text-align: center;
  margin-bottom: 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px;
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg-card);
  padding-inline: 32px;
  padding-top: 56px;
  padding-bottom: 42px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border: 4px solid var(--border-card);
  position: relative;
  min-height: 540px;
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 20px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 18px;
  position: absolute;
  top: -15px;
}

.pricing-badge-green {
  background: rgba(76, 175, 80, 1);
  color: white;
}

.pricing-badge-purple {
  background: var(--text-accent);
  color: white;
}

.pricing-card-title {
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  margin: 0;
  color: var(--text-color);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  padding-bottom: 32px;
}

.pricing-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  line-height: 100%;
  color: var(--text-color);
  font-family: Fixel;
  font-weight: 400;
}

.svg-wrapper {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-feature-item img {
  transform: translate(0, 3px);
}

/* .pricing-icon {
  flex-shrink: 0;
  margin-top: 2px;
} */

.pricing-icon-green {
  color: #4CAF50;
}

.pricing-icon-purple {
  color: var(--text-accent);
}

.pricing-image-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* removed empty .pricing-image ruleset */
/* .pricing-character {
  position: absolute;
  bottom: 0;
  width: auto;
  height: 400px;
  object-fit: contain;
  pointer-events: none;
} */

.pricing-image {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 80%;
  object-fit: contain;
}

/* .pricing-character-left {
  right: 0;
  bottom: -20px;
}

.pricing-character-right {
  right: -20px;
  bottom: -20px;
} */

.pricing-card .google-btn {
  z-index: 2;
  position: relative;
}

@media (max-width: 1024px) {
  .pricing-section {
    padding: 80px 40px;
  }

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

  .pricing-character {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .pricing-section {
    padding: 40px 16px;
  }
  .pricing-feature-item span{
    max-width: 193px;
  }
  .pricing-image-wrapper{
    overflow: hidden;
  }
  .pricing-card-title {
    font-size: 24px;
  }

  .pricing-feature {
    font-size: 16px;
  }

  .pricing-image {
    height: 60%;
    transform: translate(20px);
  }

  .pricing-badge {
    font-size: 14px;
    padding: 6px 16px;
  }

  .honestly-section {
    padding-inline: 16px;
  }

  .honestly-section-img {
    width: 100%;
    display: flex;
    align-items: flex-end;
  }
}

/* ==================== Target Audience Section ==================== */
.target-section {
  padding: 120px 96px;
  padding-top: 0;
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
  background: var(--bg-primary);
}

.target-section .section-title {
  text-align: center;
  margin-bottom: 0;
}

.target-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
}

.target-card {
  background: var(--bg-card);
  padding: 40px 32px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  border: 4px solid var(--border-card);
  min-height: 280px;
}

.target-icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  background: rgba(191, 13, 232, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.target-icon {
  width: 40px;
  height: 40px;
}

.target-card-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  margin: 0;
  color: var(--text-color);
}

.target-card-description {
  font-family: Fixel, sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  color: var(--text-color);
  margin: 0;
}

@media (max-width: 1024px) {
  .target-section {
    padding: 80px 40px;
  }

  .target-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .target-section {
    padding: 40px 16px;
    gap: 32px;
  }

  .target-card {
    padding: 32px 24px;
    gap: 16px;
    min-height: auto;
  }

  .target-icon-wrapper {
    width: 64px;
    height: 64px;
  }

  .target-icon {
    width: 32px;
    height: 32px;
  }

  .target-card-title {
    font-size: 20px;
  }

  .target-card-description {
    font-size: 16px;
  }
}