/* ===== DESIGN TOKENS ===== */
:root {
  /* Colors from Figma */
  --color-white: #FFFFFF;
  --color-primary: #5d2433;
  --color-secondary: #7c6a65;
  --color-green: #34C759;
  --color-black: #0F0F0F;
  --color-grey-inactive: #696868;
  --color-grey-shaded: #726C7A;
  --color-grey: #EEEEEE;

  /* Typography from Figma */
  --font-family: 'Space Grotesk', sans-serif;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;

  /* Font Sizes */
  --font-size-title: 48px;
  --font-size-subtitle: 24px;
  --font-size-button: 14px;
  --font-size-body: 14px;
  --font-size-footer: 12px;
  --font-size-xxs: 10px;

  /* Line Heights */
  --line-height-100: normal;

  /* Spacing */
  --spacing-xs: 8px;
  --spacing-s: 12px;
  --spacing-m: 16px;
  --spacing-l: 24px;
  --spacing-xl: 32px;
  --spacing-xxl: 48px;
  --spacing-xxxl: 64px;
}

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-family);
}

html {
  scroll-behavior: smooth;
}

body {
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-100);
  color: var(--color-black);
  background: var(--color-white);
  overflow-x: hidden;
}

.block-scroll {
  height: 100vh;
  overflow: hidden;
}

/* Container System */
.container {
  width: 100%;
  max-width: 1388px;
  margin: 0 auto;
  padding: 0 var(--spacing-xl);
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 0.556px solid rgba(93, 36, 51, 0.1);
  z-index: 1000;
  padding: 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-l);
  padding: 0 24px;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  height: 32px;
  width: auto;
}

.logo img {
  width: auto;
  height: 100%;
  max-height: 100%;
  display: block;
  object-fit: contain;
}

.nav-container {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.nav-link {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--color-secondary);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 999px;
  transition: all 0.2s;
}

.nav-link:hover {
  color: var(--color-primary);
  background-color: rgba(93, 36, 51, 0.05);
}

.btn-header {
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  padding: 8px 24px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  text-decoration: none;
}

.btn-header:hover {
  background: #4a1d29;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(93, 36, 51, 0.2);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  transition: all 0.3s;
  display: block;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2000;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}

.mobile-menu.active {
  pointer-events: auto;
  opacity: 1;
}

.mobile-menu-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: -1;
}

.mobile-menu-content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 280px;
  max-width: 80vw;
  background: var(--color-white);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
  transform: translateX(100%);
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
  padding: var(--spacing-l);
}

.mobile-menu.active .mobile-menu-content {
  transform: translateX(0);
}

.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: #1E1E1E;
  margin-bottom: var(--spacing-l);
  transition: opacity 0.2s;
}

.mobile-menu-close:hover {
  opacity: 0.7;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-l);
}

.mobile-nav-link {
  font-size: 18px;
  font-weight: var(--font-weight-medium);
  color: #1E1E1E;
  text-decoration: none;
  padding: var(--spacing-s) 0;
  border-bottom: 1px solid var(--color-grey);
  transition: opacity 0.2s;
}

.mobile-nav-link:hover {
  opacity: 0.7;
}

.btn-mobile-cta {
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-family);
  font-size: var(--font-size-button);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-100);
  padding: 16px var(--spacing-l);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: var(--spacing-l);
  width: 100%;
  text-decoration: none;
  text-align: center;
}

.btn-mobile-cta:hover {
  background: #E64A19;
}

/* ===== FOOTER ===== */
.footer {
  background: #2d1611;
  color: var(--color-white);
  padding: 80px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 80px;
  padding-bottom: 80px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-logo {
  margin-right: auto;
}

.footer-logo img {
  width: auto;
  height: 32px;
}

.footer-description {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  color: var(--color-secondary);
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links button {
  background-color: transparent;
  border: none;
  font-size: var(--font-size-body);
  line-height: normal;
  color: var(--color-secondary);
  text-align: left;
}

.footer-links button:hover {
  color: var(--color-primary);
  cursor: pointer;
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 639px;
  padding-top: 56px;
}

.footer-disclaimer {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: -0.3125px;
  color: var(--color-secondary);
  margin: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 0 0;
  border-top: 0.556px solid var(--color-secondary);
}

.footer-copyright {
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: var(--color-secondary);
  margin: 0;
  white-space: nowrap;
  margin-right: 16px;
}

.btn-back {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid var(--color-black);
  border-radius: .5rem;
  background-color: transparent;
  width: 2rem;
  height: 2rem;
  background-color: transparent;
  transition: background-color 0.15s;
  margin-bottom: 2.625rem;
}

.btn-back:hover {
  background-color: var(--color-grey-shaded);
}

.btn-back img {
  width: 1rem;
  height: 1rem;
}


.btn-primary {
  background: #1E1E1E;
  color: var(--color-white);
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-regular);
  padding: 19px var(--spacing-l);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: inset 0px -1.5px 0px 0px rgba(0, 0, 0, 0.04);
  font-family: var(--font-family);
}

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

/* ===== HERO SECTION ===== */
.hero {
  padding: 128px 0 80px;
  background: var(--color-white);
  position: relative;
}

.hero .container {
  display: flex;
  gap: 64px;
  align-items: center;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-heading {
  margin-bottom: 0;
}

.hero-title {
  font-size: 60px;
  font-weight: 700;
  line-height: 60px;
  letter-spacing: -1.5px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-title span {
  color: var(--color-primary);
}

.hero-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 16px;
  max-width: 585px;
}

.category-pill {
  background: var(--color-white);
  border: 0.556px solid rgba(93, 36, 51, 0.1);
  border-radius: 16px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1), 0px 1px 2px -1px rgba(0, 0, 0, 0.1);
}

.category-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.category-pill img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.category-pill svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--color-secondary);
}

.category-pill span {
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  color: var(--color-secondary);
}

.category-pill-more {
  grid-column: span 1;
}

.hero-description {
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: var(--color-secondary);
  margin: 0;
  max-width: 585px;
}

.hero-cta-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
}

.btn-large {
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
  border: none;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0px 10px 15px -3px rgba(93, 36, 51, 0.2), 0px 4px 6px -4px rgba(93, 36, 51, 0.2);
}

.btn-primary:hover {
  background: #4a1d29;
  transform: translateY(-1px);
  box-shadow: 0px 12px 20px -3px rgba(93, 36, 51, 0.3), 0px 6px 8px -4px rgba(93, 36, 51, 0.3);
}

.btn-secondary {
  background: var(--color-white);
  color: #2d1611;
  border: 0.556px solid rgba(93, 36, 51, 0.2);
  text-decoration: none;
}

.btn-secondary:hover {
  background: rgba(93, 36, 51, 0.05);
  transform: translateY(-1px);
}

.btn-secondary svg {
  width: 20px;
  height: 20px;
}

.hero-stats {
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: var(--color-secondary);
  margin: 0;
}

.hero-right {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.chat-preview {
  width: 100%;
  max-width: 448px;
  min-width: 448px;
  height: 500px;
  position: relative;
  background-color: var(--color-white);
  border: 0.56px solid #5D24331A;
  box-shadow: 0px 25px 50px -12px #00000040;
  border-radius: 16px;
}

/* ===== FAKE CHAT WIDGET (Mobile/Tablet Only) ===== */
.fake-chat-widget {
  display: none;
  background: var(--color-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 425px;
  cursor: pointer;
  margin-top: var(--spacing-l);
}

.fake-chat-widget .chat {
  pointer-events: none;
  height: 500px;
}

/* ===== CHAT WIDGET ===== */
.chat-widget {
  background: var(--color-white);
  border: 0.556px solid rgba(93, 36, 51, 0.1);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
  max-width: 448px;
  flex-shrink: 0;
  width: 100%;
}

/* ===== CHAT MODAL WRAPPER ===== */
.chat-modal-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.chat-modal-wrapper.active {
  display: flex;
}

.chat-modal-wrapper.chat-preview {
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100vh;
  border-radius: 0;
  display: flex;
}

.chat-modal-wrapper.chat-preview .chat-modal-close {
  display: flex;
}

.chat-modal-wrapper .chat {
  height: 100%;
}

.chat-modal-wrapper .chat-header {
  border-radius: 0;
}

.chat-modal-close {
  position: absolute;
  top: var(--spacing-m);
  right: var(--spacing-m);
  background: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  color: var(--color-white);
  font-size: 20px;
  line-height: 1;
  transition: background 0.2s;
}

.chat-modal-close:hover {
  background: rgba(0, 0, 0, 0.7);
}

.chat {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

/* Chat Header */
.chat-header {
  padding: 24px;
  display: flex;
  gap: 12px;
  align-items: center;
  border-bottom: none;
}

.chat-header-avatar {
  position: relative;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: #f3ebe6;
  border-radius: 50%;
}

.chat-header-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.chat-ai-badge {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 18px;
  height: 18px;
  background: var(--color-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-header-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.chat-header-info h4 {
  color: #2d1611;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  margin: 0;
}

.chat-online-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.online-dot {
  width: 8px;
  height: 8px;
  background: #00a63e;
  border-radius: 50%;
}

.chat-online-status span:last-child {
  color: #00a63e;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
}

/* Chat Body */
.chat-body {
  flex: 1;
  padding: var(--spacing-l);
  overflow-y: auto;
  background: var(--color-white);
  border-left: 1px solid #F5F5F5;
  border-right: 1px solid #F5F5F5;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.chat-messages {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 16px;
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.chat-messages::-webkit-scrollbar {
  display: none;
}

/* Chat Messages - JS Generated */
.chat-item-wrapper {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 8px;
}

.chat-item-wrapper.right {
  justify-content: flex-end;
}

.chat-item-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.chat-item {
  display: flex;
  flex-direction: column;
  max-width: 333px;
}

.chat-item-message {
  background: #f3ebe6;
  border-radius: 16px;
  border-top-left-radius: 0;
  padding: 12px;
}

.chat-item-wrapper.right .chat-item-message {
  background: var(--color-primary);
  border-top-right-radius: 0;
  border-top-left-radius: 16px;
}

.chat-item-wrapper.right .chat-item-message .message {
  color: var(--color-white);
}

.chat-item-message .message {
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-regular);
  color: #1E1E1E;
  line-height: 1.4;
  margin: 0;
  word-wrap: break-word;
}

.chat-item-message .message ul {
  padding-left: 20px;
}

.chat-item-message .message.typing {
  color: #999999;
}

.chat-item-message .message.error-message {
  color: #dc2626;
}

/* Chat connected message */
.chat-connected-message {
  text-align: center;
  font-size: 12px;
  color: #999999;
  padding: 8px 0;
  margin: 8px 0;
}

/* Chat suggestions */
.chat-suggestions-categories-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-suggestions-title {
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-medium);
  color: #1E1E1E;
}

.chat-suggestions-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.category-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--color-white);
  border: 1px solid #EEEEF0;
  border-radius: 8px;
  font-size: var(--font-size-body);
  color: #1E1E1E;
  cursor: pointer;
  transition: all 0.2s;
}

.category-btn:hover {
  background: #F5F5F5;
  border-color: var(--color-primary);
}

.category-btn.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

/* Chat Loading Indicator */
.chat-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  color: #999999;
  font-size: var(--font-size-body);
}

.chat-loading.hidden {
  display: none;
}

.loading-icon {
  animation: spin 1s linear infinite;
}

/* Chat Select (Topic Confirmation) */
.chat-select {
  display: flex;
  flex-direction: column;
}

.chat-select.hidden {
  display: none;
}
.chat-select-radio {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.chat-select-radio input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

.chat-select-radio input[type="checkbox"]:checked+label::before {
  border-width: 6px;
  border-color: var(--color-primary);
}

.chat-select-radio label {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 2rem;
  cursor: pointer;
}

.chat-select-radio label::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  border: 1px solid #DBDBDB;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  box-sizing: border-box;
}

.chat-select-radio label span {
  color: var(--color-black);
}

/* Chat Footer */
.chat-footer {
  padding: 16px 24px;
  position: relative;
  border-top: 0.556px solid rgba(93, 36, 51, 0.1);
}

.chat-footer-content {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
}

.chat-input-container {
  flex: 1;
  border: none;
  outline: none;
  font-size: 14px;
  font-weight: 400;
  color: #1E1E1E;
  resize: none;
  min-height: 36px;
  background: #f3ebe6;
  padding: 8px 16px;
  border-radius: 999px;
  font-family: var(--font-family);
}

.chat-input-container textarea::placeholder {
  color: #999999;
}

.chat-privacy-text {
  display: none;
}


/* Chat Tooltip */
.chat-tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 12px;
  background: #1E1E1E;
  color: var(--color-white);
  font-size: var(--font-size-xxs);
  font-weight: var(--font-weight-regular);
  padding: 12px var(--spacing-l);
  border-radius: 8px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.chat-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 20px;
  height: 20px;
  background: #1E1E1E;
  border-bottom-right-radius: 2px;
  margin-top: -10px;
}

.btn-send, .btn-chat-connect {
  background: var(--color-primary);
  color: var(--color-white);
  font-size: var(--font-size-button);
  font-weight: var(--font-weight-semibold);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.btn-send-with-select {
  position: absolute;
  top: 16px;
  right: 24px;
}

.btn-send:hover {
  background: #3429a3;
}

.btn-continue {
  width: 100%;
}

/* ===== STATS SECTION ===== */
.stats {
  padding: 48px 0;
  background: #f9f5f3;
  border-top: 0.556px solid rgba(93, 36, 51, 0.1);
  border-bottom: 0.556px solid rgba(93, 36, 51, 0.1);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-value {
  font-family: var(--font-family);
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
  color: var(--color-primary);
  margin: 0 0 4px 0;
}

.stat-label {
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: var(--color-primary);
  margin: 0;
}

/* ===== EXPERTS SECTION ===== */
.experts-section {
  margin-top: 80px;
}

.experts-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 48px;
}

.experts-badge {
  background: rgba(93, 36, 51, 0.1);
  border-radius: 999px;
  padding: 5px 16px;
}

.experts-badge span {
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 20px;
}

.experts-title {
  font-family: var(--font-family);
  font-size: 36px;
  font-weight: 700;
  line-height: 40px;
  text-align: center;
  margin: 0;
  color: #2d1611;
}

.experts-subtitle {
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
  color: var(--color-secondary);
  margin: 0;
}

.experts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.expert-card {
  background: var(--color-white);
  border: 0.556px solid rgba(93, 36, 51, 0.1);
  border-radius: 16px;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1), 0px 1px 2px -1px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}

.expert-card:hover {
  transform: translateY(-4px);
  box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 2px 4px -2px rgba(0, 0, 0, 0.1);
}

/* ===== UTILITIES ===== */
.hidden {
  display: none !important;
}

.loading-icon {
  animation: spin 1s linear infinite;
}

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

  to {
    transform: rotate(360deg);
  }
}

.expert-image {
  width: 100%;
  height: 216px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

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

.expert-content {
  display: flex;
  flex-direction: column;
  padding: 24px;
  flex: 1;
  gap: 12px;
}

.expert-title {
  font-family: var(--font-family);
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  color: #2d1611;
  margin: 0;
}

.expert-description {
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: var(--color-secondary);
  margin: 0;
  flex: 1;
}

.expert-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  color: var(--color-primary);
  text-decoration: none;
  transition: gap 0.2s;
}

.expert-link:hover {
  gap: 12px;
}

.expert-link-icon {
  width: 16px;
  height: 16px;
}

.section-title {
  font-family: var(--font-family);
  font-size: 36px;
  font-weight: 700;
  line-height: 40px;
  text-align: center;
  margin: 0;
  color: #2d1611;
}

.section-subtitle {
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
  color: var(--color-secondary);
  margin: 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 28px;
}

.trust-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.trust-item span {
  font-family: var(--font-family);
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: var(--color-grey-shaded);
}

.trust-item:last-child span {
  font-weight: 600;
}


/* ===== HOW IT WORKS SECTION ===== */
.how-it-works {
  padding: 80px 0;
  background: var(--color-white);
}

.how-it-works-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
  text-align: center;
  color: #2d1611;
  margin: 0 0 64px 0;
}

.steps-container {
  position: relative;
}

.steps-line {
  position: absolute;
  top: 32px;
  left: 25%;
  width: 50%;
  height: 1px;
  background: rgba(93, 36, 51, 0.1);
  z-index: 0;
}

.steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.step {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  flex: 1;
  max-width: 374px;
}

.step-number {
  width: 64px;
  height: 64px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  box-shadow: 0px 10px 15px -3px rgba(93, 36, 51, 0.2), 0px 4px 6px -4px rgba(93, 36, 51, 0.2);
  flex-shrink: 0;
}

.step-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  color: #2d1611;
  margin: 0;
}

.step-description {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--color-secondary);
  margin: 0;
}

/* ===== PRICING SECTION ===== */
.pricing {
  padding: 96px 0;
  background: var(--color-white);
}

.pricing-header {
  text-align: center;
  margin-bottom: 64px;
}

.pricing-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: -1.2px;
  color: var(--color-black);
  margin: 0 0 16px 0;
}

.pricing-subtitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #4a5565;
  margin: 0 auto;
  max-width: 580px;
}

.pricing-cards {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: center;
}

.pricing-card {
  background: var(--color-white);
  border: 1.671px solid #f3f4f6;
  border-radius: 24px;
  padding: 32px;
  min-width: 385px;
  max-width: 385px;
  height: 532px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card-popular {
  border-color: #00c285;
  box-shadow: 0px 20px 25px -5px #0000001A;
  max-width: 400px;
  height: 550px;
  flex-shrink: 0;
}

.pricing-card-premium {
  border-color: #a855f7;
  box-shadow: 0px 20px 25px -5px #faf5ff, 0px 8px 10px -6px #faf5ff;
}

.pricing-card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #00c285;
  color: var(--color-white);
  font-size: 10px;
  font-weight: 700;
  line-height: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 24px;
  border-radius: 999px;
  white-space: nowrap;
}

.pricing-card-badge-premium {
  background: #a855f7;
}

.pricing-card-header {
  margin-bottom: 32px;
}

.pricing-card-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  color: var(--color-black);
  margin: 0 0 8px 0;
}

.pricing-card-description {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #6a7282;
  margin: 0;
}

.pricing-card-price {
  margin-bottom: 32px;
}

.pricing-price-main {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}

.pricing-price-amount {
  font-size: 48px;
  font-weight: 700;
  line-height: 48px;
  color: var(--color-black);
}

.pricing-price-period {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #99a1af;
  white-space: nowrap;
}

.pricing-price-fee {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  color: var(--color-black);
}

.pricing-price-note {
  font-size: 10px;
  font-weight: 400;
  line-height: 15px;
  color: #7C6A65;
  margin: 0;
}

.pricing-card-note {
  margin-bottom: 32px;
}

.pricing-card-note p {
  font-size: 10px;
  font-weight: 400;
  line-height: 15px;
  color: var(--color-secondary);
  margin: 0;
}

.pricing-card-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 48px;
  flex: 1;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-feature-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.pricing-feature-included .pricing-feature-icon {
  background: #dcfce7;
}

.pricing-feature-included .pricing-feature-icon::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 6px;
  border-left: 2px solid #16a34a;
  border-bottom: 2px solid #16a34a;
  transform: rotate(-45deg) translateY(-1px);
}

.pricing-feature-excluded .pricing-feature-icon {
  background: #fef2f2;
}

.pricing-feature-excluded .pricing-feature-icon::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 2px;
  background: #dc2626;
  transform: rotate(45deg);
}

.pricing-feature-excluded .pricing-feature-icon::before {
  content: '';
  position: absolute;
  width: 10px;
  height: 2px;
  background: #dc2626;
  transform: rotate(-45deg);
}

.pricing-feature-text {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: var(--color-secondary);
}

.pricing-feature-excluded .pricing-feature-text {
  color: var(--color-secondary);
}

.pricing-feature-text-highlight {
  color: #a855f7;
  font-weight: 700;
}

.pricing-card-button {
  width: 100%;
  padding: 16px 24px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.pricing-card-button-secondary {
  background: #F3EBE6;
  color: #2D1611;
}

.pricing-card-button-secondary:hover {
  background: #e2e8f0;
}

.pricing-card-button-primary {
  background: #155DFC;
  color: var(--color-white);
}

.pricing-card-button-primary:hover {
  background: #ff6b3d;
}

.pricing-card-button-premium {
  background: #a855f7;
  color: var(--color-white);
}

.pricing-card-button-premium:hover {
  background: #9333ea;
}

/* ===== BECOME AN EXPERT SECTION ===== */
.become-expert {
  padding: 80px 0 0;
  background: var(--color-white);
}

.become-expert-card {
  display: flex;
  background: var(--color-primary);
  border-radius: 24px;
  overflow: hidden;
  min-height: 484px;
}

.become-expert-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 64px;
  max-width: 609px;
}

.become-expert-badge {
  display: inline-block;
  width: fit-content;
}

.become-expert-badge span {
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #e8ded3;
}

.become-expert-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 48px;
  color: var(--color-white);
  margin: 0;
}

.become-expert-title-highlight {
  color: #e8ded3;
}

.become-expert-description {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.become-expert-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  height: 56px;
  background: var(--color-white);
  border: none;
  border-radius: 999px;
  color: var(--color-primary);
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-decoration: none;
  width: fit-content;
  transition: all 0.2s ease;
}

.become-expert-button:hover {
  background: #f5f5f5;
}

.become-expert-image {
  flex: 1;
  min-width: 50%;
  overflow: hidden;
}

.become-expert-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
  padding: 80px 0;
  background: var(--color-white);
}

.testimonials-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 64px;
}

.testimonials-badge {
  display: inline-block;
}

.testimonials-badge span {
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 1.2px;
  color: var(--color-primary);
  text-transform: uppercase;
}

.testimonials-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 40px;
  text-align: center;
  color: #2d1611;
  margin: 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.testimonial-card {
  background: var(--color-white);
  border: 0.556px solid rgba(93, 36, 51, 0.1);
  border-radius: 16px;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1), 0px 1px 2px -1px rgba(0, 0, 0, 0.1);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 229px;
}

.testimonial-rating {
  display: flex;
  gap: 4px;
  align-items: center;
}

.testimonial-rating img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.testimonial-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  color: #2d1611;
  margin: 0;
}

.testimonial-description {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--color-secondary);
  margin: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f3ebe6;
  flex-shrink: 0;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
}

.testimonial-author-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.testimonial-author-name {
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  color: #2d1611;
  margin: 0;
}

.testimonial-author-role {
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: var(--color-secondary);
}

.stat-card:first-child .stat-content {
  margin-top: 56px;
}

.stat-card-image img {
  width: 32px;
  height: 32px;
}

.stat-content h3 {
  font-size: 36px;
  font-weight: 700;
  line-height: 40px;
  color: var(--color-black);
  margin: 0 0 0 0;
}

.stat-card:first-child .stat-content h3 {
  color: var(--color-white);
}

.stat-content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #99a1af;
  margin: 0;
}

p.stat-card-des {
  margin-top: 24px;
}

.stat-card:first-child .stat-content p {
  color: #99a1af;
}

.stat-content .stat-description {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #d1d5dc;
  margin-top: 24px;
}

.stat-card:nth-child(4) {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stat-card:nth-child(4) .stat-rating {
  display: flex;
  gap: 4px;
}

.stat-card:nth-child(4) .stat-rating img {
  width: 16px;
  height: 16px;
}

.stat-card:nth-child(4) h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  margin: 0;
}

.stat-card:nth-child(4) p {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #6a7282;
}

.stat-card-verified {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stat-card-verified .stat-badge {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stat-card-verified .stat-badge-icon {
  width: 32px;
  height: 32px;
  background: #dbeafe;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-card-verified .stat-badge-icon img {
  width: 16px;
  height: 16px;
}

.stat-card-verified .stat-badge-text {
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  color: var(--color-black);
}

.stat-card-verified h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  margin: 0;
}

.stat-card-verified p {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #6a7282;
}

/* ===== CHECKOUT SECTION ===== */
.checkout-outer-container {
  background-color: #F8FAFC;
  padding: 60px 0;
}

.checkout-inner-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.checkout-inner-container h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: -0.5px;
  color: #0F172B;
  text-align: center;
  margin-bottom: 32px;
}

.checkout-container {
  background-color: #FFFFFF;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1), 0px 1px 2px -1px rgba(0, 0, 0, 0.1);
}

.checkout-form-loader {
  display: flex;
  justify-content: center;
  padding: 40px;
}

.checkout-form-loader svg {
  animation: spin 1s linear infinite;
  color: var(--color-primary);
}

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

.form-legal {
  text-align: center;
  font-size: 12px;
  color: #62748E;
  margin-top: 24px;
}

.form-legal span {
  cursor: pointer;
  text-decoration: underline;
}

.checkout-iframe {
  width: 100%;
  border: none;
}

/* Notify */
.notify {
  inset: 0px;
  position: fixed;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.15s ease-in-out;
  background-color: rgba(0, 0, 0, 0.1);
}

.notify .dialog-content {
  position: relative;
  background-color: #fff;
  border-radius: 0.5rem;
  width: 90%;
  max-width: 500px;
}

.notify .dialog-head {
  padding: 2rem 2.5rem;
  background-color: #fafafa;
  color: #131313;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

.dialog-head .online {
  display: flex;
}

.dialog-head .online .text {
  font-weight: normal;
  margin-bottom: 0.25rem;
  font-size: var(--font-size-subtitle);
  font-weight: var(--font-weight-semibold);
}

.dialog-head .online-info p {
  font-size: var(--font-size-body);
}

.notify .dialog-body {
  padding: 2rem 2.5rem;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}

.notify .recap-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.notify .recap-avatar {
  width: 7.5rem;
  height: 7.5rem;
  margin-bottom: 1.25rem;
}

.recap-rate {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.notify .recap-info h4 {
  font-size: var(--font-size-subtitle);
  margin-bottom: 0.75rem;
}

.notify .recap-info p {
  font-size: var(--font-size-body);
}

.notify .recap-rate {
  justify-content: center;
}

.notify .stars svg path {
  color: #131313;
}

.notify h2 {
  font-size: var(--font-size-subtitle);
  max-width: 30rem;
  width: 100%;
  text-align: center;
  margin: 3rem auto;
}

.notify .separator {
  height: 1px;
  background-color: var(--color-grey-shaded);
  width: 100%;
  margin-bottom: 3rem;
}

.notify .btn-primary {
  width: 100%;
  margin: 3rem 0;
}

.dialog-container {
  width: 100%;
  height: 100%;
  position: relative;
  background: white;
}

.btn-close-dialog {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.btn-close-dialog:hover {
  background-color: var(--color-grey-shaded);
}

.btn-close-dialog svg {
  width: 1.5rem;
  height: 1.5rem;
}

.dialog-body {
  width: 100%;
  height: 100%;
  overflow: auto;
}

.stars {
  display: flex;
  gap: 4px;
  list-style: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1440px) {}

@media (min-width: 1025px) and (max-width: 1200px) {
  .pricing-cards {
    gap: 16px;
  }

  .pricing-card {
    min-width: 360px;
    max-width: 360px;
    padding: 24px;
  }
}

@media (max-width: 1024px) {
  .container {
    max-width: 900px;
    padding: 0 var(--spacing-l);
  }

  .header {
    padding: 12px var(--spacing-m);
  }

  .nav {
    padding: 8px var(--spacing-m);
  }

  .nav-links {
    gap: var(--spacing-l);
  }

  .hero .container {
    flex-direction: column;
    justify-content: center;
    gap: 0;
  }

  .hero-content {
    max-width: 100%;
    padding-bottom: 16px;
  }

  .categories {
    grid-template-columns: repeat(3, 1fr);
  }

  .chat-preview, .hero-cta-buttons, .hero-stats {
    display: none;
  }

  .fake-chat-widget {
    display: block;
    max-width: 700px;
  }

  .hero-title {
    font-size: 32px;
    line-height: 32px;
  }

  .hero-subtitle {
    font-size: 14px;
    line-height: normal;
    letter-spacing: 0;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .experts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px; 
  }
  
  .how-it-works {
    padding: var(--spacing-xxl) 0;
  }

  .steps {
    gap: 32px;
  }

  .step {
    max-width: 280px;
  }

  .steps-line {
    display: none;
  }

  .steps {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    padding: 0
  }

  .step {
    width: 100%;
    max-width: 100%;
    flex-direction: column;
    gap: var(--spacing-m);
    padding-bottom: var(--spacing-xl);
  }

  .step-number {
    border: 3.51px solid #FFFFFF;
    box-shadow: 0px 20px 25px -5px #5D243333;
  }

  .pricing-cards {
    flex-direction: column;
    gap: 32px;
  }

  .become-expert {
    padding: 64px 0 0;
  }

  .become-expert-card {
    flex-direction: column-reverse;
    min-height: auto;
  }

  .become-expert-content {
    padding: 48px;
    max-width: 100%;
  }

  .become-expert-title {
    font-size: 36px;
    line-height: 40px;
  }

  .become-expert-image {
    min-width: 100%;
    min-height: auto;
    position: relative;
  }

  .become-expert-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(93, 36, 51, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  }

  .testimonials {
    padding: 64px 0;
  }

  .testimonials-header {
    margin-bottom: 48px;
  }

  .testimonials-title {
    font-size: 28px;
    line-height: 32px;
  }

  .testimonials-grid {
    gap: 24px;
  }

  .testimonial-card {
    height: auto;
    min-height: 316px;
  }

  .stat-card {
    min-height: auto;
    height: auto;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 100%;
    padding: 0 var(--spacing-m);
  }

  .footer {
    padding: 64px 0;
  }

  .footer-content {
    flex-direction: column;
    gap: 48px;
    padding-bottom: 64px;
  }

  .footer-right {
    max-width: 100%;
    padding-top: 0;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    padding: 24px 0 0;
  }

  .header {
    padding: 0;
  }

  .nav {
    padding: 0 var(--spacing-m);
    height: 56px;
  }

  .nav-container {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .logo {
    height: 28px;
  }

  .experts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .experts-header {
    margin-bottom: 32px;
  }

  .experts-title {
    font-size: 28px;
    line-height: 32px;
  }

  .hero {
    padding: 80px 0 40px;
  }

  .hero-title {
    font-size: 40px;
    line-height: 44px;
    letter-spacing: -1px;
  }

  .hero-categories {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .category-pill {
    padding: 10px 16px;
    gap: 12px;
    justify-content: center;
  }

  .category-pill img,
  .category-pill svg {
    width: 20px;
    height: 20px;
  }

  .category-pill span {
    font-size: 14px;
  }

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

  .hero-cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-large {
    width: 100%;
    justify-content: center;
  }

  .expert-card {
    width: 300px;
    margin: 0 auto;
  }

  .stats {
    padding: 32px 0;
  }

  .stat-value {
    font-size: 24px;
    line-height: 28px;
  }

  .stat-label {
    font-size: 12px;
    line-height: 16px;
  }

  .become-expert {
    padding: 48px 0 0;
  }

  .become-expert-content {
    padding: 32px 24px;
    gap: 20px;
  }

  .become-expert-title {
    font-size: 32px;
    line-height: 36px;
  }

  .become-expert-description {
    font-size: 14px;
    line-height: 22px;
  }

  .become-expert-button {
    width: 100%;
    font-size: 14px;
    height: 48px;
  }

  .become-expert-image {
    min-height: 250px;
  }

  .experts-header {
    margin-bottom: 24px;
  }

  .experts-title {
    font-size: 24px;
    line-height: 28px;
  }

  .expert-image {
    height: 180px;
  }

  .section-title {
    font-size: 32px;
  }

  .section-subtitle {
    font-size: 18px;
  }

  .expert-category {
    font-size: 20px;
  }

  .how-it-works {
    padding: 64px 0;
  }

  .how-it-works-title {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 48px;
  }

  .steps-line {
    display: none;
  }

  .steps {
    flex-direction: column;
    gap: 40px;
  }

  .step {
    max-width: 100%;
  }

  .step-number {
    width: 56px;
    height: 56px;
    font-size: 20px;
    line-height: 28px;
  }

  .step-title {
    font-size: 18px;
    line-height: 24px;
  }

  .step-description {
    font-size: 14px;
    line-height: 20px;
  }

  .pricing {
    padding: var(--spacing-xxl) 0;
  }

  .pricing-title {
    font-size: 32px;
    line-height: 36px;
  }

  .pricing-card {
    width: 100%;
    max-width: 395px;
  }

  .trust-item span {
    font-size: 16px;
  }

  .testimonials {
    padding: 48px 0;
  }

  .testimonials-header {
    margin-bottom: 32px;
  }

  .testimonials-title {
    font-size: 24px;
    line-height: 28px;
  }

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

  .testimonial-card {
    padding: 24px;
    min-height: auto;
  }

  .testimonial-title {
    font-size: 18px;
    line-height: 24px;
  }

  .testimonial-description {
    font-size: 14px;
    line-height: 20px;
  }

  .chat-modal-wrapper .chat-suggestions-online {
    display: flex;
    margin-top: 24px;
  }

  .chat-suggestions-online .expert-avatars img {
    width: 32px;
    height: 32px;
  }

  .chat-suggestions-online .online-indicator {
    width: 8px;
    height: 8px;
  }

  .experts-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    justify-content: center;
  }

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

  .fake-chat-widget {
    max-width: 100%;
  }

  .chat-widget {
    display: none;
  }

  .categories {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
  }

  .trial-badge {
    margin-left: 0;
    margin-right: auto;
  }

  .category-card {
    width: auto;
  }

  .features {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spacing-s);
  }

  /* Checkout responsive */
  .checkout-outer-container {
    padding: 40px 0;
  }

  .checkout-inner-container {
    padding: 0 16px;
  }

  .checkout-inner-container h2 {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 24px;
  }

  .checkout-container {
    padding: 24px;
    border-radius: 16px;
  }

  .checkout-form-loader {
    padding: 24px;
  }

  .notify {
    padding: 1rem;
    align-items: flex-start;
  }

  .notify .dialog-content {
    width: 100%;
  }

  .notify .dialog-head {
    padding: 1.5rem 1rem;
  }

  .notify .dialog-body {
    padding: 1.5rem 1rem;
  }

  .notify .recap-avatar {
    width: 5rem;
    height: 5rem;
  }

  .notify h2 {
    margin: 2rem auto;
  }

  .notify .separator {
    margin-bottom: 2rem;
  }

  .notify .btn-primary {
    margin: 2rem 0;
  }
}

@media (max-width: 480px) {
  .container {
    max-width: 1100px;
    padding: 0 var(--spacing-s);
  }

  .header {
    padding: 12px var(--spacing-xl);
  }

  .hero-cta {
    width: 100%;
    align-items: stretch;
  }

  .categories {
    grid-template-columns: repeat(1, 1fr);
  }

  .footer {
    padding: 48px 0;
  }

  .footer-content {
    gap: 32px;
    padding-bottom: 48px;
  }

  .footer-left {
    gap: 16px;
  }

  .footer-description {
    font-size: 12px;
    line-height: 16px;
  }

  .footer-right {
    gap: 12px;
  }

  .footer-disclaimer {
    font-size: 12px;
    line-height: 16px;
  }

  .footer-bottom {
    padding: 20px 0 0;
  }

  .footer-copyright {
    font-size: 11px;
    line-height: 14px;
  }
}