/* ============================================================
   VEXYRA GLOBAL STYLESHEET
   ------------------------------------------------------------
   Desktop / base styling.
   Responsive styles are handled separately in:
   /css/responsive.css
   ============================================================ */

/* ============================================================
   01. DESIGN TOKENS
   ============================================================ */

:root {
  /* --------------------------------------------------------
       Brand Colors
       -------------------------------------------------------- */

  --color-primary: #6c5ce7;
  --color-primary-dark: #5848d6;
  --color-primary-light: #8b7cff;

  --color-navy: #0b1020;
  --color-navy-light: #151b2e;

  /* --------------------------------------------------------
       Background Colors
       -------------------------------------------------------- */

  --color-background: #f7f8fc;
  --color-surface: #ffffff;
  --color-white: #ffffff;

  /* --------------------------------------------------------
       Text Colors
       -------------------------------------------------------- */

  --color-text: #111827;
  --color-text-secondary: #667085;
  --color-text-muted: #98a2b3;

  /* --------------------------------------------------------
       Border Colors
       -------------------------------------------------------- */

  --color-border: #e6e8ef;
  --color-border-light: #eef0f5;

  /* --------------------------------------------------------
       Status Colors
       -------------------------------------------------------- */

  --color-success: #20c997;
  --color-warning: #f59e0b;
  --color-danger: #ef4444;

  /* --------------------------------------------------------
       Typography
       -------------------------------------------------------- */

  --font-primary:
    Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* --------------------------------------------------------
       Layout
       -------------------------------------------------------- */

  --container-width: 1200px;

  --header-height: 76px;

  /* --------------------------------------------------------
       Border Radius
       -------------------------------------------------------- */

  --radius-small: 8px;
  --radius-medium: 14px;
  --radius-large: 20px;
  --radius-pill: 999px;

  /* --------------------------------------------------------
       Shadows
       -------------------------------------------------------- */

  --shadow-small: 0 2px 8px rgba(16, 24, 40, 0.04);

  --shadow-medium: 0 10px 30px rgba(16, 24, 40, 0.08);

  --shadow-large: 0 20px 60px rgba(16, 24, 40, 0.12);

  /* --------------------------------------------------------
       Transitions
       -------------------------------------------------------- */

  --transition-fast: 0.2s ease;

  --transition-normal: 0.3s ease;
}

/* ============================================================
   02. GLOBAL RESET
   ============================================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;

  padding: 0;

  background-color: var(--color-background);

  color: var(--color-text);

  font-family: var(--font-primary);

  font-size: 16px;

  line-height: 1.6;

  -webkit-font-smoothing: antialiased;

  animation: vexyraPageEnter 420ms ease both;
}

@keyframes vexyraPageEnter {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

button,
input,
textarea,
select {
  font-family: var(--font-primary);
}

button {
  cursor: pointer;
}

img {
  display: block;

  max-width: 100%;
}

a {
  color: inherit;

  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;

  line-height: 1.15;
}

p {
  margin: 0;
}

/* ============================================================
   03. GLOBAL CONTAINER
   ============================================================ */

.container {
  width: min(calc(100% - 48px), var(--container-width));

  margin: 0 auto;
}

/* ============================================================
   04. BUTTON SYSTEM
   ============================================================ */

.btn {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  min-height: 46px;

  padding: 0 22px;

  border: 1px solid transparent;

  border-radius: var(--radius-small);

  font-size: 14px;

  font-weight: 600;

  line-height: 1;

  white-space: nowrap;

  transition:
    background-color var(--transition-fast),
    border-color var(--transition-fast),
    color var(--transition-fast),
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background-color: var(--color-primary);

  color: var(--color-white);

  box-shadow: 0 4px 12px rgba(108, 92, 231, 0.2);
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);

  box-shadow: 0 7px 18px rgba(108, 92, 231, 0.28);
}

/* ============================================================
   05. HEADER
   ============================================================ */

.site-header {
  position: relative;

  z-index: 1000;

  width: 100%;

  height: var(--header-height);

  background-color: rgba(255, 255, 255, 0.95);

  border-bottom: 1px solid var(--color-border-light);

  backdrop-filter: blur(14px);
}

.header-container {
  display: flex;

  align-items: center;

  justify-content: space-between;

  width: min(calc(100% - 48px), 1280px);

  height: 100%;

  margin: 0 auto;
}

/* ============================================================
   06. BRAND
   ============================================================ */

.brand-logo {
  display: inline-flex;

  align-items: center;

  flex-shrink: 0;
}

.brand-name {
  color: var(--color-navy);

  font-size: 25px;

  font-weight: 800;

  letter-spacing: -0.8px;
}

.brand-name span {
  color: var(--color-primary);
}

/* ============================================================
   VEXYRA HEADER LOGO
   ============================================================ */

.brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  text-decoration: none;
  line-height: 0;
}

.brand-logo-image {
  display: block;
  width: 120px;
  height: auto;
  max-height: 42px;
  object-fit: contain;
}
/* ============================================================
   07. DESKTOP NAVIGATION
   ============================================================ */

.main-navigation {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: 60px;
}

/* ------------------------------------------------------------
   STANDARD NAV LINK
   ------------------------------------------------------------ */

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  color: var(--color-text-secondary);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  background: none;
  border: 0;
  cursor: pointer;

  transition:
    color 220ms ease,
    transform 220ms ease;
}

/* ------------------------------------------------------------
   STANDARD NAV HOVER
   ------------------------------------------------------------ */

.nav-link:hover {
  color: var(--color-text);
  transform: translateY(-1px);
}

/* ------------------------------------------------------------
   STANDARD NAV UNDERLINE
   ------------------------------------------------------------ */

.nav-link::after {
  position: absolute;
  left: 50%;
  bottom: -3px;
  width: 0;
  height: 2px;
  content: "";
  background: var(--color-primary);
  border-radius: 999px;
  opacity: 0;
  transform: translateX(-50%);

  transition:
    width 260ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 180ms ease;
}

/* ------------------------------------------------------------
   STANDARD NAV HOVER UNDERLINE
   ------------------------------------------------------------ */

.nav-link:hover::after {
  width: 22px;
  opacity: 1;
}

/* ============================================================
   EXPLORE DROPDOWN
   ============================================================ */

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

/* ------------------------------------------------------------
   EXPLORE TRIGGER
   ------------------------------------------------------------ */

.nav-dropdown-trigger {
  gap: 8px;
  padding-right: 20px;
}

/* ------------------------------------------------------------
   VISIBLE DROPDOWN ARROW
   ------------------------------------------------------------

   The arrow is created entirely with CSS.
   No HTML changes are required.
   ------------------------------------------------------------ */

.nav-dropdown-trigger::before {
  position: absolute;
  top: 50%;
  right: 1px;
  width: 7px;
  height: 7px;
  content: "";
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: translateY(-65%) rotate(45deg);
  transition:
    transform 200ms ease,
    color 200ms ease;
}

/* Keep the underline as the ::after element */
.nav-dropdown-trigger::after {
  left: calc(50% - 10px);
}

/* ------------------------------------------------------------
   ARROW HOVER
   ------------------------------------------------------------ */

.nav-dropdown:hover .nav-dropdown-trigger::before,
.nav-dropdown:focus-within .nav-dropdown-trigger::before {
  transform: translateY(-35%) rotate(225deg);
}

/* ------------------------------------------------------------
   ARROW ACTIVE
   ------------------------------------------------------------ */

.nav-dropdown-trigger.active::before {
  color: var(--color-primary);
}

/* ============================================================
   DROPDOWN MENU
   ============================================================ */

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 1000;

  width: 225px;
  padding: 8px;

  background: #ffffff;

  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;

  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.1),
    0 4px 12px rgba(0, 0, 0, 0.05);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transform: translateX(-50%) translateY(-8px);

  transition:
    opacity 180ms ease,
    visibility 180ms ease,
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* ------------------------------------------------------------
   DROPDOWN POINTER
   ------------------------------------------------------------ */

.nav-dropdown-menu::before {
  position: absolute;
  top: -6px;
  left: 50%;

  width: 11px;
  height: 11px;

  content: "";

  background: #ffffff;

  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-left: 1px solid rgba(0, 0, 0, 0.08);

  transform: translateX(-50%) rotate(45deg);
}

/* ------------------------------------------------------------
   SHOW DROPDOWN
   ------------------------------------------------------------ */

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;

  transform: translateX(-50%) translateY(0);
}

/* ============================================================
   DROPDOWN LINKS
   ============================================================ */

.nav-dropdown-menu .nav-dropdown-link {
  position: relative;

  display: flex;
  align-items: center;

  min-height: 42px;
  padding: 0 14px;

  color: var(--color-text-secondary);

  border-radius: 9px;

  font-size: 14px;
  font-weight: 500;
  text-decoration: none;

  transition:
    color 180ms ease,
    background 180ms ease,
    padding 180ms ease;
}

/* ------------------------------------------------------------
   REMOVE NAV UNDERLINE FROM DROPDOWN ITEMS
   ------------------------------------------------------------ */

.nav-dropdown-menu .nav-dropdown-link::before,
.nav-dropdown-menu .nav-dropdown-link::after {
  display: none;
}

/* ------------------------------------------------------------
   DROPDOWN LINK HOVER
   ------------------------------------------------------------ */

.nav-dropdown-menu .nav-dropdown-link:hover {
  color: var(--color-primary);
  background: rgba(108, 92, 231, 0.07);
  padding-left: 18px;
}

/* ============================================================
   HIDE DUPLICATE TOP-LEVEL DESKTOP LINKS
   ============================================================

   These remain in the HTML for compatibility but are hidden
   because they now live inside Explore.
   ============================================================ */

.main-navigation > a[href="/pages/services.html"],
.main-navigation > a[href="/pages/businesses.html"],
.main-navigation > a[href="/pages/professionals.html"] {
  display: none;
}

/* ============================================================
   ACTIVE PAGE
   ============================================================ */

.nav-link.active {
  color: var(--color-primary);
  font-weight: 600;

  text-shadow: 0 0 18px rgba(108, 92, 231, 0.18);
}

/* ------------------------------------------------------------
   ACTIVE UNDERLINE
   ------------------------------------------------------------ */

.nav-link.active::after {
  width: 22px;
  opacity: 1;
}

/* ------------------------------------------------------------
   ACTIVE + HOVER
   ------------------------------------------------------------ */

.nav-link.active:hover {
  color: var(--color-primary);
  transform: translateY(-1px);
}

.nav-link.active:hover::after {
  width: 34px;
  opacity: 1;
}

/* ============================================================
   EXPLORE ACTIVE STATE
   ============================================================ */

.nav-dropdown-trigger.active {
  color: var(--color-primary);
  font-weight: 600;

  text-shadow: 0 0 18px rgba(108, 92, 231, 0.18);
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */

.nav-link:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 5px;
  border-radius: 4px;
}

.nav-dropdown-link:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: -2px;
}

/* ============================================================
   08. HEADER ACTIONS
   ============================================================ */

.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}

/* ------------------------------------------------------------
   LOGIN
   ------------------------------------------------------------ */

.login-link {
  color: var(--color-text-secondary);

  font-size: 14px;
  font-weight: 600;

  text-decoration: none;

  transition:
    color 220ms ease,
    transform 220ms ease;
}

.login-link:hover {
  color: var(--color-text);
  transform: translateY(-1px);
}

/* ------------------------------------------------------------
   JOIN BUTTON
   ------------------------------------------------------------ */

.header-join-btn {
  min-height: 42px;
  padding: 0 18px;
}

/* ============================================================
   CONTACT / HEADER USER ACTIONS
   ============================================================

   Keep all dynamically inserted main.js account controls
   visible and properly aligned.
   ============================================================ */

.header-actions > * {
  flex-shrink: 0;
}

/* ============================================================
   09. MOBILE NAVIGATION
   ============================================================ */

.mobile-menu-toggle {
  display: none;
}

.mobile-navigation {
  display: none;
}

/* ============================================================
   MOBILE EXPLORE GROUP
   ============================================================ */

.mobile-nav-group {
  display: block;
}

/* ------------------------------------------------------------
   MOBILE PARENT
   ------------------------------------------------------------ */

.mobile-nav-parent {
  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 100%;

  box-sizing: border-box;
}

/* ------------------------------------------------------------
   MOBILE SUBMENU
   ------------------------------------------------------------ */

.mobile-nav-submenu {
  display: flex;
  flex-direction: column;

  margin-left: 18px;
  padding-left: 14px;

  border-left: 1px solid rgba(108, 92, 231, 0.16);
}

/* ------------------------------------------------------------
   MOBILE SUBMENU LINKS
   ------------------------------------------------------------ */

.mobile-nav-sublink {
  display: flex;
  align-items: center;

  min-height: 40px;

  padding: 0 12px;

  color: var(--color-text-secondary);

  font-size: 14px;
  font-weight: 500;

  text-decoration: none;

  border-radius: 8px;

  transition:
    color 180ms ease,
    background 180ms ease,
    padding 180ms ease;
}

.mobile-nav-sublink:hover {
  color: var(--color-primary);

  background: rgba(108, 92, 231, 0.07);

  padding-left: 16px;
}

/* ============================================================
   HIDE DUPLICATE MOBILE TOP-LEVEL LINKS
   ------------------------------------------------------------
   Services / Businesses / Professionals are now inside
   Explore.
   ============================================================ */

.mobile-navigation > a[href="/pages/services.html"],
.mobile-navigation > a[href="/pages/businesses.html"],
.mobile-navigation > a[href="/pages/professionals.html"] {
  display: none;
}

/* ============================================================
   MOBILE AUTH DIVIDER
   ============================================================ */

.mobile-nav-divider {
  margin: 12px 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 900px) {
  /* ----------------------------------------------------------
     DESKTOP NAVIGATION
     ---------------------------------------------------------- */

  .main-navigation {
    gap: 22px;
    margin-left: 35px;
  }
}

@media (max-width: 760px) {
  /* ----------------------------------------------------------
     DESKTOP NAVIGATION HIDDEN
     ---------------------------------------------------------- */

  .main-navigation {
    display: none;
  }

  /* ----------------------------------------------------------
     MOBILE BUTTON
     ---------------------------------------------------------- */

  .mobile-menu-toggle {
    display: flex;

    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 5px;

    width: 42px;
    height: 42px;

    margin-left: auto;

    padding: 0;

    background: transparent;

    border: 0;

    cursor: pointer;
  }

  .mobile-menu-toggle span {
    display: block;

    width: 21px;
    height: 2px;

    background: var(--color-text);

    border-radius: 999px;

    transition:
      transform 220ms ease,
      opacity 180ms ease;
  }

  /* ----------------------------------------------------------
     MOBILE NAVIGATION
     ---------------------------------------------------------- */

  .mobile-navigation {
    position: absolute;

    top: 100%;
    left: 0;
    right: 0;

    z-index: 999;

    display: flex;

    flex-direction: column;

    padding: 12px 20px 20px;

    background: #ffffff;

    border-top: 1px solid rgba(0, 0, 0, 0.06);

    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateY(-8px);

    transition:
      opacity 180ms ease,
      visibility 180ms ease,
      transform 220ms ease;
  }

  /* ----------------------------------------------------------
     MAIN.JS OPEN STATE
     ----------------------------------------------------------
     Supports the common states used by the existing
     VexYra mobile navigation.
     ---------------------------------------------------------- */

  .mobile-navigation.open,
  .mobile-navigation.active,
  .mobile-navigation.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: translateY(0);
  }

  /* ----------------------------------------------------------
     MOBILE NAV LINKS
     ---------------------------------------------------------- */

  .mobile-nav-link {
    display: flex;
    align-items: center;

    width: 100%;
    min-height: 46px;

    box-sizing: border-box;

    padding: 0 12px;

    color: var(--color-text-secondary);

    font-size: 15px;
    font-weight: 500;

    text-decoration: none;

    border-radius: 9px;

    transition:
      color 180ms ease,
      background 180ms ease,
      padding 180ms ease;
  }

  .mobile-nav-link:hover {
    color: var(--color-primary);

    background: rgba(108, 92, 231, 0.07);

    padding-left: 16px;
  }

  /* ----------------------------------------------------------
     MOBILE SUBMENU
     ---------------------------------------------------------- */

  .mobile-nav-submenu {
    margin-top: 2px;
    margin-bottom: 4px;
  }

  .mobile-nav-sublink {
    min-height: 42px;
  }
}

@media (max-width: 520px) {
  .mobile-navigation {
    padding-left: 14px;
    padding-right: 14px;
  }
}
/* ============================================================
   10. HERO
   ============================================================ */

.hero-section {
  position: relative;

  display: flex;

  align-items: center;

  min-height: 680px;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(108, 92, 231, 0.1),
      transparent 35%
    ),
    linear-gradient(180deg, #ffffff 0%, #f7f8fc 100%);
}

.hero-section::before {
  position: absolute;

  top: -180px;

  right: -140px;

  width: 520px;

  height: 520px;

  background: radial-gradient(
    circle,
    rgba(108, 92, 231, 0.08),
    transparent 70%
  );

  border-radius: 50%;

  pointer-events: none;
}

.hero-container {
  position: relative;

  z-index: 2;

  width: min(calc(100% - 48px), 1200px);

  margin: 0 auto;
}

.hero-content {
  max-width: 850px;

  margin: 0 auto;

  text-align: center;
  padding-top: 60px;
}

/* ============================================================
   11. HERO EYEBROW
   ============================================================ */

.hero-eyebrow {
  display: inline-flex;

  align-items: center;

  min-height: 30px;

  margin-bottom: 24px;

  padding: 0 13px;

  background-color: rgba(108, 92, 231, 0.08);

  border: 1px solid rgba(108, 92, 231, 0.12);

  border-radius: var(--radius-pill);

  color: var(--color-primary);

  font-size: 12px;

  font-weight: 700;

  letter-spacing: 0.5px;

  text-transform: uppercase;
}

/* ============================================================
   12. HERO HEADING
   ============================================================ */

.hero-content h1 {
  max-width: 900px;

  margin: 0 auto;

  color: var(--color-navy);

  font-size: clamp(54px, 6vw, 78px);

  font-weight: 800;

  letter-spacing: -3.5px;

  line-height: 1.02;
}

.hero-content h1 span {
  display: block;

  color: var(--color-primary);
}

/* ============================================================
   13. HERO DESCRIPTION
   ============================================================ */

.hero-description {
  max-width: 650px;

  margin: 28px auto 0;

  color: var(--color-text-secondary);

  font-size: 18px;

  line-height: 1.7;
}

/* ============================================================
   14. SEARCH BOX
   ------------------------------------------------------------
   Premium desktop/base homepage search styling.
   Responsive/mobile rules belong ONLY in responsive.css.
   ============================================================ */

.hero-search {
  display: flex;
  align-items: stretch;
  width: 100%;
  min-height: 78px;
  margin-top: 42px;
  padding: 7px;

  background: var(--color-white);

  border: 1px solid rgba(103, 87, 232, 0.14);
  border-radius: 20px;

  box-shadow:
    0 18px 45px rgba(30, 41, 59, 0.08),
    0 4px 14px rgba(30, 41, 59, 0.04);

  text-align: left;

  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

/* ------------------------------------------------------------
   SEARCH BOX HOVER
   ------------------------------------------------------------ */

.hero-search:hover {
  border-color: rgba(103, 87, 232, 0.24);

  box-shadow:
    0 22px 55px rgba(30, 41, 59, 0.1),
    0 6px 18px rgba(30, 41, 59, 0.05);
}

/* ------------------------------------------------------------
   SEARCH FIELD
   ------------------------------------------------------------ */

.search-field {
  display: flex;
  align-items: center;

  flex: 1 1 auto;
  min-width: 0;

  gap: 15px;

  padding: 0 22px;

  border-radius: 15px;

  transition: background-color 0.2s ease;
}

.search-field:focus-within {
  background-color: #fafaff;
}

/* ------------------------------------------------------------
   SEARCH ICON
   ------------------------------------------------------------ */

.search-icon {
  flex: 0 0 auto;

  width: 22px;
  height: 22px;

  color: #94a3b8;

  font-size: 22px;
  line-height: 1;

  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.search-field:focus-within .search-icon {
  color: #6757e8;

  transform: scale(1.08);
}

/* ------------------------------------------------------------
   SEARCH INPUT
   ------------------------------------------------------------ */

.search-field input {
  width: 100%;
  min-width: 0;
  height: 58px;

  padding: 0;

  background: transparent;

  border: none;
  outline: none;

  color: var(--color-text);

  font-family: inherit;
  font-size: 16px;
  font-weight: 500;

  letter-spacing: 0.01em;
}

.search-field input::placeholder {
  color: #94a3b8;
  opacity: 1;

  font-weight: 400;
}

.search-field input:focus::placeholder {
  color: #b0b8c8;
}

/* ------------------------------------------------------------
   LOCATION
   ------------------------------------------------------------ */

.search-location {
  display: flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 auto;

  min-width: 180px;
  height: 58px;

  margin: 2px 4px 2px 0;
  padding: 0 18px;

  gap: 9px;

  background: #f8f7ff;

  border: 1px solid rgba(103, 87, 232, 0.12);
  border-radius: 13px;

  color: #64748b;

  font-size: 15px;
  font-weight: 600;

  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.search-location:hover {
  background: #f3f1ff;

  border-color: rgba(103, 87, 232, 0.2);

  color: #5144c8;
}

/* ------------------------------------------------------------
   LOCATION ICON
   ------------------------------------------------------------ */

.search-location .location-icon,
.search-location svg {
  flex: 0 0 auto;

  color: #6757e8;
}

/* ------------------------------------------------------------
   LOCATION BUTTON
   ------------------------------------------------------------ */

.search-location button,
.search-location .location-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 42px;

  padding: 0 12px;

  gap: 8px;

  background: transparent;

  border: none;
  outline: none;

  color: inherit;

  font: inherit;

  cursor: pointer;
}

.search-location button:focus-visible,
.search-location .location-button:focus-visible {
  outline: 2px solid rgba(103, 87, 232, 0.35);
  outline-offset: 2px;
  border-radius: 8px;
}

/* ------------------------------------------------------------
   LOCATION TEXT
   ------------------------------------------------------------ */

#heroLocationText {
  display: inline-block;

  max-width: 120px;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ------------------------------------------------------------
   LOCATION DISABLED STATE
   ------------------------------------------------------------ */

.search-location button:disabled,
.search-location .location-button:disabled {
  opacity: 0.65;

  cursor: wait;
}

/* ------------------------------------------------------------
   SEARCH BUTTON
   ------------------------------------------------------------ */

.search-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 132px;

  min-width: 132px;
  height: 60px;

  margin: 1px;

  padding: 0 24px;

  background: linear-gradient(135deg, #6d5ce7 0%, #5b4be0 100%);

  border: none;
  border-radius: 15px;

  color: #ffffff;

  font-family: inherit;
  font-size: 16px;
  font-weight: 700;

  letter-spacing: -0.01em;

  box-shadow:
    0 8px 18px rgba(91, 75, 224, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);

  cursor: pointer;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

/* ------------------------------------------------------------
   SEARCH BUTTON HOVER
   ------------------------------------------------------------ */

.search-button:hover {
  filter: brightness(1.04);

  transform: translateY(-1px);

  box-shadow:
    0 12px 25px rgba(91, 75, 224, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* ------------------------------------------------------------
   SEARCH BUTTON ACTIVE
   ------------------------------------------------------------ */

.search-button:active {
  transform: translateY(1px);

  box-shadow:
    0 5px 12px rgba(91, 75, 224, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

/* ------------------------------------------------------------
   SEARCH BUTTON FOCUS
   ------------------------------------------------------------ */

.search-button:focus-visible {
  outline: 3px solid rgba(109, 92, 231, 0.22);
  outline-offset: 3px;
}

/* ------------------------------------------------------------
   SEARCH BUTTON ICON
   ------------------------------------------------------------ */

.search-button svg {
  flex: 0 0 auto;
}

/* ------------------------------------------------------------
   NATIVE SELECT RESET
   ------------------------------------------------------------
   Included here because the screenshot shows native select
   styling around the location area.
   ------------------------------------------------------------ */

.search-location select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  min-width: 0;

  padding: 0;

  background: transparent;

  border: none;
  outline: none;

  color: #64748b;

  font-family: inherit;
  font-size: 15px;
  font-weight: 600;

  cursor: pointer;
}

.search-location select:focus {
  outline: none;
}

/* ------------------------------------------------------------
   OPTIONAL SELECT ARROW
   ------------------------------------------------------------ */

.search-location select::-ms-expand {
  display: none;
}

/* ============================================================
   15. REQUIREMENT CTA
   ============================================================ */

.requirement-cta {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 8px;

  margin-top: 20px;

  color: var(--color-text-secondary);

  font-size: 13px;
}

.requirement-link {
  color: var(--color-primary);

  font-weight: 700;

  transition: color var(--transition-fast);
}

.requirement-link:hover {
  color: var(--color-primary-dark);
}

/* ============================================================
   16. TEMPORARY HOMEPAGE SECTION
   ============================================================ */

.homepage-placeholder {
  padding: 120px 0;

  background-color: var(--color-background);
}

.homepage-placeholder .container {
  text-align: center;
}

.section-label {
  display: inline-block;

  margin-bottom: 15px;

  color: var(--color-primary);

  font-size: 11px;

  font-weight: 800;

  letter-spacing: 1.5px;
}

.homepage-placeholder h2 {
  margin-bottom: 12px;

  color: var(--color-navy);

  font-size: 34px;
}

.homepage-placeholder p {
  color: var(--color-text-secondary);
}

/* ============================================================
   17. FOOTER
   ============================================================ */

.site-footer {
  background-color: var(--color-navy);

  color: rgba(255, 255, 255, 0.72);
}

.footer-container {
  display: grid;

  grid-template-columns:
    2fr
    1fr
    1fr
    1fr;

  gap: 60px;

  width: min(calc(100% - 48px), 1200px);

  margin: 0 auto;

  padding: 80px 0;
}

.footer-logo {
  display: inline-block;

  margin-bottom: 16px;

  color: var(--color-white);

  font-size: 25px;

  font-weight: 800;

  letter-spacing: -0.8px;
}

.footer-logo span {
  color: var(--color-primary-light);
}

.footer-description {
  margin-bottom: 10px;

  color: var(--color-white);

  font-size: 15px;

  font-weight: 600;
}

.footer-subtext {
  max-width: 340px;

  color: rgba(255, 255, 255, 0.52);

  font-size: 13px;

  line-height: 1.7;
}

.footer-column {
  display: flex;

  flex-direction: column;

  gap: 12px;
}

.footer-column h3 {
  margin-bottom: 8px;

  color: var(--color-white);

  font-size: 13px;

  font-weight: 700;
}

.footer-column a {
  width: fit-content;

  color: rgba(255, 255, 255, 0.55);

  font-size: 13px;

  transition: color var(--transition-fast);
}

.footer-column a:hover {
  color: var(--color-white);
}

/* ============================================================
   18. FOOTER BOTTOM
   ============================================================ */

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-container {
  display: flex;

  align-items: center;

  justify-content: space-between;

  width: min(calc(100% - 48px), 1200px);

  min-height: 70px;

  margin: 0 auto;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.42);

  font-size: 12px;
}

.footer-bottom-links {
  display: flex;

  align-items: center;

  gap: 20px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.42);

  font-size: 12px;

  transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: var(--color-white);
}

/* ============================================================
   19. PLATFORM PATHWAYS
   ------------------------------------------------------------
   Three primary ways users can interact with VexYra:
   Explore, Post a Requirement, and Offer Your Services.
   ============================================================ */

/* ============================================================
   19A. SECTION
   ============================================================ */

.platform-pathways {
  padding: 110px 0;

  background-color: var(--color-white);
}

/* ============================================================
   19B. SECTION HEADER
   ============================================================ */

.section-header {
  max-width: 700px;

  margin: 0 auto 55px;

  text-align: center;
}

.section-header .section-label {
  margin-bottom: 16px;
}

.section-header h2 {
  color: var(--color-navy);

  font-size: 42px;

  font-weight: 800;

  letter-spacing: -1.8px;

  line-height: 1.15;
}

.section-header h2 span {
  color: var(--color-primary);
}

.section-header p {
  max-width: 620px;

  margin: 18px auto 0;

  color: var(--color-text-secondary);

  font-size: 16px;

  line-height: 1.7;
}

/* ============================================================
   19C. PATHWAYS GRID
   ============================================================ */

.pathways-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 22px;
}

/* ============================================================
   19D. PATHWAY CARD
   ============================================================ */

.pathway-card {
  position: relative;

  display: flex;

  flex-direction: column;

  min-height: 310px;

  padding: 32px;

  background-color: var(--color-white);

  border: 1px solid var(--color-border);

  border-radius: var(--radius-large);

  box-shadow: var(--shadow-small);

  transition:
    transform var(--transition-normal),
    box-shadow var(--transition-normal),
    border-color var(--transition-normal);
}

.pathway-card:hover {
  transform: translateY(-5px);

  border-color: rgba(108, 92, 231, 0.25);

  box-shadow: var(--shadow-medium);
}

/* ============================================================
   19E. FEATURED CARD
   ------------------------------------------------------------
   The "Post a Requirement" card is the strategic action
   we want users to notice.
   ============================================================ */

.pathway-card-featured {
  background: linear-gradient(145deg, #f8f7ff 0%, #ffffff 100%);

  border-color: rgba(108, 92, 231, 0.22);
}

.pathway-card-featured::before {
  position: absolute;

  top: 0;

  right: 28px;

  left: 28px;

  height: 3px;

  background-color: var(--color-primary);

  border-radius: 0 0 var(--radius-pill) var(--radius-pill);

  content: "";
}

/* ============================================================
   19F. PATHWAY ICON
   ============================================================ */

.pathway-icon {
  display: flex;

  align-items: center;

  justify-content: center;

  width: 54px;

  height: 54px;

  margin-bottom: 25px;

  background-color: rgba(108, 92, 231, 0.09);

  border-radius: 15px;

  font-size: 23px;
}

/* ============================================================
   19G. PATHWAY CONTENT
   ============================================================ */

.pathway-content {
  display: flex;

  flex: 1;

  flex-direction: column;
}

.pathway-content h3 {
  margin-bottom: 12px;

  color: var(--color-navy);

  font-size: 21px;

  font-weight: 750;

  letter-spacing: -0.4px;
}

.pathway-content p {
  color: var(--color-text-secondary);

  font-size: 14px;

  line-height: 1.7;
}

/* ============================================================
   19H. PATHWAY LINK
   ============================================================ */

.pathway-link {
  display: inline-flex;

  align-items: center;

  width: fit-content;

  margin-top: auto;

  padding-top: 25px;

  color: var(--color-primary);

  font-size: 14px;

  font-weight: 700;

  transition:
    color var(--transition-fast),
    transform var(--transition-fast);
}

.pathway-link:hover {
  color: var(--color-primary-dark);

  transform: translateX(3px);
}

/* ============================================================
   20. POPULAR CATEGORIES
   ------------------------------------------------------------
   Category discovery section for businesses, services and
   professionals available through the VexYra platform.
   ============================================================ */

/* ============================================================
   20A. SECTION
   ============================================================ */

.popular-categories {
  padding: 110px 0;

  background-color: var(--color-background);
}

/* ============================================================
   20B. CATEGORY HEADER
   ============================================================ */

.categories-header {
  margin-bottom: 50px;
}

.categories-header h2 {
  font-size: 42px;
}

.categories-header h2 span {
  color: var(--color-primary);
}

/* ============================================================
   20C. CATEGORY GRID
   ============================================================ */

.categories-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 18px;
}

/* ============================================================
   20D. CATEGORY CARD
   ============================================================ */

.category-card {
  position: relative;

  display: flex;

  align-items: flex-start;

  min-height: 170px;

  padding: 26px;

  background-color: var(--color-white);

  border: 1px solid var(--color-border);

  border-radius: var(--radius-medium);

  box-shadow: var(--shadow-small);

  transition:
    transform var(--transition-normal),
    border-color var(--transition-normal),
    box-shadow var(--transition-normal);
}

.category-card:hover {
  transform: translateY(-4px);

  border-color: rgba(108, 92, 231, 0.25);

  box-shadow: var(--shadow-medium);
}

/* ============================================================
   20E. CATEGORY ICON
   ============================================================ */

.category-icon {
  display: flex;

  align-items: center;

  justify-content: center;

  flex-shrink: 0;

  width: 52px;

  height: 52px;

  margin-right: 18px;

  background-color: rgba(108, 92, 231, 0.08);

  border-radius: 14px;

  font-size: 22px;
}

/* ============================================================
   20F. CATEGORY CONTENT
   ============================================================ */

.category-content {
  padding-right: 25px;
}

.category-content h3 {
  margin-bottom: 7px;

  color: var(--color-navy);

  font-size: 17px;

  font-weight: 700;

  letter-spacing: -0.2px;
}

.category-content p {
  color: var(--color-text-secondary);

  font-size: 13px;

  line-height: 1.6;
}

/* ============================================================
   20G. CATEGORY ARROW
   ============================================================ */

.category-arrow {
  position: absolute;

  right: 22px;

  bottom: 22px;

  display: flex;

  align-items: center;

  justify-content: center;

  width: 28px;

  height: 28px;

  background-color: var(--color-background);

  border-radius: 50%;

  color: var(--color-primary);

  font-size: 14px;

  font-weight: 700;

  transition:
    background-color var(--transition-fast),
    color var(--transition-fast),
    transform var(--transition-fast);
}

.category-card:hover .category-arrow {
  background-color: var(--color-primary);

  color: var(--color-white);

  transform: translateX(2px);
}

/* ============================================================
   20H. VIEW ALL CATEGORIES
   ============================================================ */

.categories-footer {
  display: flex;

  justify-content: center;

  margin-top: 42px;
}

.view-all-link {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  color: var(--color-primary);

  font-size: 14px;

  font-weight: 700;

  transition:
    color var(--transition-fast),
    gap var(--transition-fast);
}

.view-all-link:hover {
  color: var(--color-primary-dark);

  gap: 11px;
}

/* ============================================================
   21. HOW VEXYRA WORKS
   ------------------------------------------------------------
   Explains the core VexYra journey from requirement
   to discovery to connection.
   ============================================================ */

/* ============================================================
   21A. SECTION
   ============================================================ */

.how-vexyra-works {
  padding: 110px 0;

  background-color: var(--color-white);
}

/* ============================================================
   21B. SECTION HEADER
   ============================================================ */

.works-header {
  margin-bottom: 70px;
}

.works-header h2 span {
  color: var(--color-primary);
}

/* ============================================================
   21C. PROCESS STEPS
   ============================================================ */

.works-steps {
  display: grid;

  grid-template-columns: 1fr auto 1fr auto 1fr;

  align-items: center;

  gap: 20px;
}

/* ============================================================
   21D. INDIVIDUAL STEP
   ============================================================ */

.work-step {
  position: relative;

  text-align: center;
}

.work-step-number {
  margin-bottom: 18px;

  color: var(--color-primary);

  font-size: 12px;

  font-weight: 800;

  letter-spacing: 1.5px;
}

.work-step-icon {
  display: flex;

  align-items: center;

  justify-content: center;

  width: 72px;

  height: 72px;

  margin: 0 auto 24px;

  background-color: rgba(108, 92, 231, 0.08);

  border: 1px solid rgba(108, 92, 231, 0.12);

  border-radius: 20px;

  font-size: 28px;

  box-shadow: var(--shadow-small);
}

.work-step-content h3 {
  margin-bottom: 10px;

  color: var(--color-navy);

  font-size: 18px;

  font-weight: 750;

  letter-spacing: -0.3px;
}

.work-step-content p {
  max-width: 270px;

  margin: 0 auto;

  color: var(--color-text-secondary);

  font-size: 14px;

  line-height: 1.7;
}

/* ============================================================
   21E. CONNECTOR
   ============================================================ */

.work-step-connector {
  display: flex;

  align-items: center;

  width: 70px;
}

.work-step-connector span {
  display: block;

  width: 100%;

  height: 1px;

  background-color: var(--color-border);
}

/* ============================================================
   21F. TWO-SIDED PLATFORM MESSAGE
   ============================================================ */

.works-platform-message {
  display: grid;

  grid-template-columns: 1fr auto 1fr;

  align-items: center;

  gap: 35px;

  max-width: 850px;

  margin: 75px auto 0;

  padding: 25px 30px;

  background-color: var(--color-background);

  border: 1px solid var(--color-border);

  border-radius: var(--radius-large);
}

.works-audience {
  display: flex;

  align-items: center;

  gap: 16px;
}

.works-audience-icon {
  display: flex;

  align-items: center;

  justify-content: center;

  flex-shrink: 0;

  width: 45px;

  height: 45px;

  background-color: var(--color-white);

  border-radius: 12px;

  font-size: 19px;

  box-shadow: var(--shadow-small);
}

.works-audience strong {
  display: block;

  margin-bottom: 4px;

  color: var(--color-navy);

  font-size: 14px;

  font-weight: 700;
}

.works-audience p {
  color: var(--color-text-secondary);

  font-size: 12px;

  line-height: 1.5;
}

.works-audience-divider {
  width: 1px;

  height: 45px;

  background-color: var(--color-border);
}

/* ============================================================
   22. POST A REQUIREMENT CTA
   ------------------------------------------------------------
   High-conversion section encouraging visitors to post
   requirements when they cannot immediately find what
   they are looking for.
   ============================================================ */

/* ============================================================
   22A. SECTION
   ============================================================ */

.requirement-cta {
  padding: 110px 0;

  background-color: var(--color-background);
}

/* ============================================================
   22B. CTA CARD
   ============================================================ */

.requirement-cta-card {
  display: grid;

  grid-template-columns: 1.1fr 0.9fr;

  align-items: center;

  gap: 70px;

  padding: 65px;

  background: linear-gradient(135deg, #171a3a 0%, #25285a 100%);

  border-radius: 28px;

  overflow: hidden;

  position: relative;

  box-shadow: var(--shadow-large);
}

/* ============================================================
   22C. DECORATIVE BACKGROUND
   ============================================================ */

.requirement-cta-card::before {
  position: absolute;

  top: -160px;

  right: -100px;

  width: 420px;

  height: 420px;

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 50%;

  content: "";
}

.requirement-cta-card::after {
  position: absolute;

  bottom: -220px;

  left: 35%;

  width: 450px;

  height: 450px;

  border: 1px solid rgba(255, 255, 255, 0.06);

  border-radius: 50%;

  content: "";
}

/* ============================================================
   22D. CTA CONTENT
   ============================================================ */

.requirement-cta-content {
  position: relative;

  z-index: 2;
}

.requirement-cta-content .section-label {
  color: rgba(255, 255, 255, 0.65);
}

.requirement-cta-content h2 {
  max-width: 560px;

  margin-top: 16px;

  color: var(--color-white);

  font-size: 44px;

  font-weight: 800;

  line-height: 1.12;

  letter-spacing: -1.8px;
}

.requirement-cta-content h2 span {
  color: #afa7ff;
}

.requirement-cta-content > p {
  max-width: 540px;

  margin-top: 20px;

  color: rgba(255, 255, 255, 0.72);

  font-size: 16px;

  line-height: 1.7;
}

/* ============================================================
   22E. CTA BUTTON
   ============================================================ */

.requirement-cta-button {
  margin-top: 30px;

  display: inline-flex;

  align-items: center;

  gap: 10px;
}

.requirement-cta-button span {
  font-size: 17px;

  transition: transform var(--transition-fast);
}

.requirement-cta-button:hover span {
  transform: translateX(3px);
}

/* ============================================================
   22F. BENEFITS
   ============================================================ */

.requirement-benefits {
  display: flex;

  flex-wrap: wrap;

  gap: 18px 24px;

  margin-top: 28px;
}

.requirement-benefit {
  display: inline-flex;

  align-items: center;

  gap: 7px;

  color: rgba(255, 255, 255, 0.65);

  font-size: 12px;
}

.requirement-benefit-icon {
  display: flex;

  align-items: center;

  justify-content: center;

  width: 18px;

  height: 18px;

  background-color: rgba(255, 255, 255, 0.12);

  border-radius: 50%;

  color: #c9c4ff;

  font-size: 10px;

  font-weight: 800;
}

/* ============================================================
   22G. VISUAL AREA
   ============================================================ */

.requirement-cta-visual {
  position: relative;

  z-index: 2;

  display: flex;

  justify-content: center;
}

/* ============================================================
   22H. REQUIREMENT PREVIEW
   ============================================================ */

.requirement-preview {
  width: 100%;

  max-width: 390px;

  background-color: var(--color-white);

  border: 1px solid rgba(255, 255, 255, 0.12);

  border-radius: 18px;

  overflow: hidden;

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);

  transform: rotate(1.5deg);

  transition: transform var(--transition-normal);
}

.requirement-preview:hover {
  transform: rotate(0deg) translateY(-4px);
}

/* ============================================================
   22I. PREVIEW HEADER
   ============================================================ */

.requirement-preview-header {
  display: flex;

  align-items: center;

  gap: 9px;

  padding: 16px 20px;

  border-bottom: 1px solid var(--color-border);

  color: var(--color-text-secondary);

  font-size: 11px;

  font-weight: 700;

  letter-spacing: 0.3px;
}

.requirement-preview-dot {
  width: 8px;

  height: 8px;

  background-color: #6c5ce7;

  border-radius: 50%;
}

/* ============================================================
   22J. PREVIEW BODY
   ============================================================ */

.requirement-preview-body {
  padding: 25px 22px;
}

.requirement-preview-label {
  color: var(--color-text-secondary);

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 1px;
}

.requirement-preview-body h3 {
  margin-top: 9px;

  color: var(--color-navy);

  font-size: 19px;

  line-height: 1.35;
}

.requirement-preview-body p {
  margin-top: 10px;

  color: var(--color-text-secondary);

  font-size: 12px;

  line-height: 1.6;
}

/* ============================================================
   22K. PREVIEW TAGS
   ============================================================ */

.requirement-preview-tags {
  display: flex;

  flex-wrap: wrap;

  gap: 7px;

  margin-top: 18px;
}

.requirement-preview-tags span {
  padding: 6px 9px;

  background-color: var(--color-background);

  border-radius: var(--radius-pill);

  color: var(--color-primary);

  font-size: 10px;

  font-weight: 700;
}

/* ============================================================
   22L. PREVIEW FOOTER
   ============================================================ */

.requirement-preview-footer {
  display: flex;

  align-items: center;

  justify-content: space-between;

  padding: 14px 20px;

  background-color: #fafafc;

  border-top: 1px solid var(--color-border);

  color: var(--color-text-secondary);

  font-size: 10px;
}

.requirement-preview-status {
  color: var(--color-primary);

  font-size: 13px;
}

/* ============================================================
   23. ROTATING REQUIREMENT PREVIEW
   ------------------------------------------------------------
   Controls the smooth transition when the example requirement
   changes.
   ============================================================ */

/* ============================================================
   23A. TRANSITION STATE
   ============================================================ */

.requirement-preview.is-changing .requirement-preview-body {
  opacity: 0;

  transform: translateY(8px);
}

.requirement-preview-body {
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

/* ============================================================
   23B. REQUIREMENT TAG TRANSITION
   ============================================================ */

.requirement-preview-tags {
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.requirement-preview.is-changing .requirement-preview-tags {
  opacity: 0;

  transform: translateY(5px);
}

/* ============================================================
   24. POST A REQUIREMENT PAGE
   ------------------------------------------------------------
   Main styling for the VexYra requirement submission page.

   This section contains:
   - Page introduction
   - Requirement form layout
   - Progress indicator
   - Form controls
   - Review summary
   - Information sidebar
   - Posting notes

   Responsive styling will be handled separately in
   responsive.css.
   ============================================================ */

/* ============================================================
   24A. PAGE SECTION
   ============================================================ */

.post-requirement-page {
  padding: 90px 0 110px;

  background-color: var(--color-background);

  min-height: calc(100vh - 80px);
}

/* ============================================================
   24B. PAGE INTRODUCTION
   ============================================================ */

.post-requirement-intro {
  max-width: 720px;

  margin: 0 auto 55px;

  text-align: center;
}

.post-requirement-intro .section-label {
  display: inline-block;

  margin-bottom: 16px;
}

.post-requirement-intro h1 {
  margin: 0;

  color: var(--color-navy);

  font-size: 48px;

  font-weight: 800;

  line-height: 1.1;

  letter-spacing: -2px;
}

.post-requirement-intro h1 span {
  color: var(--color-primary);
}

.post-requirement-intro p {
  max-width: 620px;

  margin: 20px auto 0;

  color: var(--color-text-secondary);

  font-size: 16px;

  line-height: 1.7;
}

/* ============================================================
   24C. MAIN PAGE LAYOUT
   ------------------------------------------------------------
   Form on the left.
   Information panel on the right.
   ============================================================ */

.requirement-form-layout {
  display: grid;

  grid-template-columns: minmax(0, 1fr) 320px;

  align-items: start;

  gap: 28px;

  max-width: 1100px;

  margin: 0 auto;
}

/* ============================================================
   24D. FORM CARD
   ============================================================ */

.requirement-form-card {
  padding: 38px;

  background-color: var(--color-white);

  border: 1px solid var(--color-border);

  border-radius: var(--radius-large);

  box-shadow: var(--shadow-small);
}

/* ============================================================
   24E. FORM PROGRESS
   ============================================================ */

.requirement-progress {
  display: flex;

  align-items: center;

  width: 100%;

  margin-bottom: 42px;
}

.requirement-progress-step {
  display: flex;

  align-items: center;

  gap: 9px;

  flex-shrink: 0;

  color: var(--color-text-secondary);

  font-size: 12px;

  font-weight: 600;
}

.requirement-progress-step span {
  display: flex;

  align-items: center;

  justify-content: center;

  width: 30px;

  height: 30px;

  background-color: var(--color-background);

  border: 1px solid var(--color-border);

  border-radius: 50%;

  color: var(--color-text-secondary);

  font-size: 11px;

  font-weight: 800;
}

.requirement-progress-step strong {
  font-weight: 700;
}

.requirement-progress-step.active {
  color: var(--color-primary);
}

.requirement-progress-step.active span {
  background-color: var(--color-primary);

  border-color: var(--color-primary);

  color: var(--color-white);
}

.requirement-progress-line {
  flex: 1;

  height: 1px;

  margin: 0 14px;

  background-color: var(--color-border);
}

/* ============================================================
   24F. FORM STEP
   ------------------------------------------------------------
   JavaScript will later control which step is visible.
   ============================================================ */

.requirement-form-step {
  display: none;
}

.requirement-form-step.active {
  display: block;
}

/* ============================================================
   24G. FORM STEP HEADING
   ============================================================ */

.form-step-heading {
  margin-bottom: 32px;
}

.form-step-heading h2 {
  margin: 0;

  color: var(--color-navy);

  font-size: 25px;

  font-weight: 750;

  letter-spacing: -0.6px;
}

.form-step-heading p {
  max-width: 650px;

  margin-top: 9px;

  color: var(--color-text-secondary);

  font-size: 14px;

  line-height: 1.6;
}

/* ============================================================
   24H. FORM GROUP
   ============================================================ */

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;

  margin-bottom: 8px;

  color: var(--color-navy);

  font-size: 13px;

  font-weight: 700;
}

.form-group small {
  display: block;

  margin-top: 7px;

  color: var(--color-text-secondary);

  font-size: 11px;
}

/* ============================================================
   24I. FORM INPUTS
   ============================================================ */

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;

  padding: 13px 15px;

  background-color: var(--color-white);

  border: 1px solid var(--color-border);

  border-radius: 10px;

  outline: none;

  color: var(--color-navy);

  font-family: inherit;

  font-size: 14px;

  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast),
    background-color var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #a4a6b4;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: #c9c7d9;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-primary);

  box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.1);
}

.form-group textarea {
  min-height: 145px;

  resize: vertical;

  line-height: 1.6;
}

/* ============================================================
   24J. FORM ROW
   ============================================================ */

.form-row {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 18px;
}

/* ============================================================
   24K. FORM ACTIONS
   ============================================================ */

.form-actions {
  display: flex;

  align-items: center;

  justify-content: flex-end;

  gap: 12px;

  margin-top: 35px;
}

.form-actions-between {
  justify-content: space-between;
}

.form-actions .btn {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 8px;

  min-height: 46px;
}

.form-actions .btn span {
  transition: transform var(--transition-fast);
}

.form-actions .btn:hover span {
  transform: translateX(3px);
}

/* ============================================================
   24L. REQUIREMENT REVIEW
   ============================================================ */

.requirement-review {
  overflow: hidden;

  border: 1px solid var(--color-border);

  border-radius: 12px;
}

.review-item {
  display: grid;

  grid-template-columns: 145px 1fr;

  gap: 20px;

  padding: 17px 18px;

  border-bottom: 1px solid var(--color-border);
}

.review-item:last-child {
  border-bottom: none;
}

.review-item span {
  color: var(--color-text-secondary);

  font-size: 12px;

  font-weight: 600;
}

.review-item strong {
  color: var(--color-navy);

  font-size: 13px;

  font-weight: 700;

  line-height: 1.5;

  word-break: break-word;
}

/* ============================================================
   24M. POSTING NOTE
   ============================================================ */

.requirement-posting-note {
  display: flex;

  align-items: flex-start;

  gap: 12px;

  margin-top: 22px;

  padding: 16px 18px;

  background-color: rgba(108, 92, 231, 0.06);

  border: 1px solid rgba(108, 92, 231, 0.12);

  border-radius: 11px;
}

.requirement-posting-note > span {
  flex-shrink: 0;

  font-size: 17px;
}

.requirement-posting-note p {
  color: var(--color-text-secondary);

  font-size: 12px;

  line-height: 1.6;
}

/* ============================================================
   24N. INFORMATION SIDEBAR
   ============================================================ */

.requirement-info-card {
  position: sticky;

  top: 100px;

  padding: 27px;

  background-color: var(--color-white);

  border: 1px solid var(--color-border);

  border-radius: var(--radius-large);

  box-shadow: var(--shadow-small);
}

/* ============================================================
   24O. INFO HEADER
   ============================================================ */

.requirement-info-header {
  display: flex;

  align-items: center;

  gap: 13px;

  padding-bottom: 22px;

  border-bottom: 1px solid var(--color-border);
}

.requirement-info-icon {
  display: flex;

  align-items: center;

  justify-content: center;

  width: 42px;

  height: 42px;

  background-color: rgba(108, 92, 231, 0.09);

  border-radius: 12px;

  font-size: 18px;
}

.requirement-info-header h3 {
  color: var(--color-navy);

  font-size: 16px;

  font-weight: 750;
}

/* ============================================================
   24P. INFO STEPS
   ============================================================ */

.requirement-info-steps {
  padding: 22px 0;
}

.requirement-info-step {
  display: flex;

  align-items: flex-start;

  gap: 13px;

  margin-bottom: 20px;
}

.requirement-info-step:last-child {
  margin-bottom: 0;
}

.requirement-info-step > span {
  display: flex;

  align-items: center;

  justify-content: center;

  flex-shrink: 0;

  width: 28px;

  height: 28px;

  background-color: var(--color-background);

  border-radius: 8px;

  color: var(--color-primary);

  font-size: 10px;

  font-weight: 800;
}

.requirement-info-step p {
  padding-top: 4px;

  color: var(--color-text-secondary);

  font-size: 12px;

  line-height: 1.5;
}

/* ============================================================
   24Q. INFO PRIVACY NOTE
   ============================================================ */

.requirement-info-note {
  display: flex;

  align-items: flex-start;

  gap: 10px;

  padding-top: 19px;

  border-top: 1px solid var(--color-border);
}

.requirement-info-note > span {
  font-size: 14px;
}

.requirement-info-note p {
  color: var(--color-text-secondary);

  font-size: 11px;

  line-height: 1.5;
}

/* ============================================================
   24R. FORM VALIDATION STATES
   ------------------------------------------------------------
   These states will be useful when JavaScript validation
   is added later.
   ============================================================ */

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: #d9534f;
}

.form-group.has-error input:focus,
.form-group.has-error select:focus,
.form-group.has-error textarea:focus {
  box-shadow: 0 0 0 3px rgba(217, 83, 79, 0.1);
}

.form-error-message {
  display: block;

  margin-top: 7px;

  color: #d9534f;

  font-size: 11px;
}

/* ============================================================
   24S. SUCCESS STATE
   ------------------------------------------------------------
   Reserved for the future successful submission screen.
   ============================================================ */

.requirement-success {
  display: none;

  max-width: 600px;

  margin: 0 auto;

  padding: 55px 35px;

  background-color: var(--color-white);

  border: 1px solid var(--color-border);

  border-radius: var(--radius-large);

  text-align: center;

  box-shadow: var(--shadow-small);
}

.requirement-success.active {
  display: block;
}

.requirement-success-icon {
  display: flex;

  align-items: center;

  justify-content: center;

  width: 65px;

  height: 65px;

  margin: 0 auto 20px;

  background-color: rgba(108, 92, 231, 0.09);

  border-radius: 50%;

  color: var(--color-primary);

  font-size: 25px;
}

.requirement-success h2 {
  color: var(--color-navy);

  font-size: 27px;

  font-weight: 800;
}

.requirement-success p {
  max-width: 470px;

  margin: 12px auto 0;

  color: var(--color-text-secondary);

  font-size: 14px;

  line-height: 1.7;
}

/* ============================================================
   25. AUTHENTICATION / LOGIN PAGE
   ------------------------------------------------------------
   Main desktop styling for the VexYra login page.

   Includes:
   - Login page layout
   - Login card
   - Form styling
   - Forgot password
   - Remember me
   - Social login
   - Signup link
   - Right-side VexYra showcase

   Mobile and tablet adjustments will be handled separately
   in responsive.css.
   ============================================================ */

/* ============================================================
   25A. AUTH PAGE
   ============================================================ */

.auth-page {
  min-height: calc(100vh - 80px);

  padding: 80px 0 100px;

  background-color: var(--color-background);
}

/* ============================================================
   25B. AUTH LAYOUT
   ------------------------------------------------------------
   Login form on the left.
   VexYra brand/value proposition on the right.
   ============================================================ */

.auth-layout {
  display: grid;

  grid-template-columns:
    minmax(0, 470px)
    minmax(0, 1fr);

  align-items: stretch;

  gap: 35px;

  max-width: 1050px;

  margin: 0 auto;
}

/* ============================================================
   25C. LOGIN CARD
   ============================================================ */

.auth-card {
  padding: 42px;

  background-color: var(--color-white);

  border: 1px solid var(--color-border);

  border-radius: 24px;

  box-shadow: var(--shadow-small);
}

/* ============================================================
   25D. AUTH HEADER
   ============================================================ */

.auth-header {
  margin-bottom: 32px;
}

.auth-header .section-label {
  display: inline-block;

  margin-bottom: 14px;
}

.auth-header h1 {
  margin: 0;

  color: var(--color-navy);

  font-size: 36px;

  font-weight: 800;

  line-height: 1.15;

  letter-spacing: -1.2px;
}

.auth-header h1 span {
  color: var(--color-primary);
}

.auth-header p {
  max-width: 380px;

  margin-top: 12px;

  color: var(--color-text-secondary);

  font-size: 14px;

  line-height: 1.65;
}

/* ============================================================
   25E. AUTH FORM
   ============================================================ */

.auth-form {
  width: 100%;
}

/* ============================================================
   25F. FORM LABEL ROW
   ------------------------------------------------------------
   Used for Password + Forgot password.
   ============================================================ */

.form-label-row {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 15px;
}

.form-label-row label {
  margin-bottom: 8px;
}

/* ============================================================
   25G. FORGOT PASSWORD LINK
   ============================================================ */

.auth-forgot-link {
  margin-bottom: 8px;

  color: var(--color-primary);

  font-size: 11px;

  font-weight: 700;

  text-decoration: none;

  transition: color var(--transition-fast);
}

.auth-forgot-link:hover {
  color: var(--color-navy);
}

/* ============================================================
   25H. AUTH OPTIONS
   ============================================================ */

.auth-options {
  display: flex;

  align-items: center;

  justify-content: space-between;

  margin-top: -5px;

  margin-bottom: 24px;
}

.checkbox-label {
  display: inline-flex;

  align-items: center;

  gap: 9px;

  cursor: pointer;

  color: var(--color-text-secondary);

  font-size: 12px;
}

.checkbox-label input {
  width: 15px;

  height: 15px;

  margin: 0;

  accent-color: var(--color-primary);

  cursor: pointer;
}

/* ============================================================
   25I. LOGIN BUTTON
   ============================================================ */

.auth-submit-btn {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 9px;

  width: 100%;

  min-height: 48px;
}

.auth-submit-btn span {
  transition: transform var(--transition-fast);
}

.auth-submit-btn:hover span {
  transform: translateX(4px);
}

/* ============================================================
   25J. AUTH DIVIDER
   ============================================================ */

.auth-divider {
  display: flex;

  align-items: center;

  gap: 14px;

  margin: 28px 0;

  color: #a5a6b2;

  font-size: 10px;

  font-weight: 700;
}

.auth-divider::before,
.auth-divider::after {
  flex: 1;

  height: 1px;

  background-color: var(--color-border);

  content: "";
}

/* ============================================================
   25K. SOCIAL LOGIN
   ============================================================ */

.social-login {
  width: 100%;
}

.social-login-btn {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 11px;

  width: 100%;

  min-height: 46px;

  padding: 11px 16px;

  background-color: var(--color-white);

  border: 1px solid var(--color-border);

  border-radius: 10px;

  color: var(--color-navy);

  font-family: inherit;

  font-size: 13px;

  font-weight: 650;

  cursor: pointer;

  transition:
    border-color var(--transition-fast),
    background-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.social-login-btn:hover {
  background-color: #fafafc;

  border-color: #c9c7d9;

  box-shadow: 0 4px 14px rgba(20, 20, 45, 0.05);
}

.social-login-icon {
  display: flex;

  align-items: center;

  justify-content: center;

  width: 20px;

  height: 20px;

  color: var(--color-primary);

  font-size: 15px;

  font-weight: 800;
}

/* ============================================================
   25L. SIGNUP LINK
   ============================================================ */

.auth-signup {
  display: flex;

  align-items: center;

  justify-content: center;

  flex-wrap: wrap;

  gap: 5px;

  margin-top: 28px;

  padding-top: 24px;

  border-top: 1px solid var(--color-border);

  color: var(--color-text-secondary);

  font-size: 12px;

  line-height: 1.5;
}

.auth-signup a {
  color: var(--color-primary);

  font-weight: 750;

  text-decoration: none;

  transition: color var(--transition-fast);
}

.auth-signup a:hover {
  color: var(--color-navy);
}

/* ============================================================
   25M. AUTH SHOWCASE
   ------------------------------------------------------------
   Right-side dark brand panel.
   ============================================================ */

.auth-showcase {
  position: relative;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

  min-height: 570px;

  padding: 48px;

  overflow: hidden;

  background: linear-gradient(135deg, #171a3a 0%, #25285a 100%);

  border-radius: 24px;

  box-shadow: var(--shadow-large);
}

/* ============================================================
   25N. SHOWCASE DECORATIVE CIRCLES
   ============================================================ */

.auth-showcase::before {
  position: absolute;

  top: -170px;

  right: -130px;

  width: 430px;

  height: 430px;

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 50%;

  content: "";
}

.auth-showcase::after {
  position: absolute;

  bottom: -220px;

  left: -100px;

  width: 450px;

  height: 450px;

  border: 1px solid rgba(255, 255, 255, 0.06);

  border-radius: 50%;

  content: "";
}

/* ============================================================
   25O. SHOWCASE CONTENT
   ============================================================ */

.auth-showcase-content {
  position: relative;

  z-index: 2;
}

.auth-showcase-label {
  display: inline-block;

  color: rgba(255, 255, 255, 0.55);

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 1.5px;
}

.auth-showcase-content h2 {
  max-width: 500px;

  margin-top: 20px;

  color: var(--color-white);

  font-size: 39px;

  font-weight: 800;

  line-height: 1.13;

  letter-spacing: -1.4px;
}

.auth-showcase-content h2 span {
  display: block;

  margin-top: 4px;

  color: #afa7ff;
}

.auth-showcase-content > p {
  max-width: 500px;

  margin-top: 20px;

  color: rgba(255, 255, 255, 0.68);

  font-size: 14px;

  line-height: 1.75;
}

/* ============================================================
   25P. SHOWCASE FEATURES
   ============================================================ */

.auth-showcase-features {
  position: relative;

  z-index: 2;

  display: flex;

  flex-direction: column;

  gap: 22px;

  margin-top: 45px;
}

.auth-showcase-feature {
  display: flex;

  align-items: flex-start;

  gap: 14px;
}

.auth-feature-icon {
  display: flex;

  align-items: center;

  justify-content: center;

  flex-shrink: 0;

  width: 30px;

  height: 30px;

  background-color: rgba(255, 255, 255, 0.1);

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 9px;

  color: #c9c4ff;

  font-size: 11px;

  font-weight: 800;
}

.auth-showcase-feature strong {
  display: block;

  color: var(--color-white);

  font-size: 13px;

  font-weight: 700;
}

.auth-showcase-feature p {
  max-width: 410px;

  margin-top: 5px;

  color: rgba(255, 255, 255, 0.53);

  font-size: 11px;

  line-height: 1.55;
}

/* ============================================================
   25Q. SHOWCASE BRAND MESSAGE
   ============================================================ */

.auth-showcase-message {
  position: relative;

  z-index: 2;

  margin-top: 45px;

  padding-top: 22px;

  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-showcase-message span {
  color: rgba(255, 255, 255, 0.9);

  font-size: 12px;

  font-weight: 800;

  letter-spacing: 0.5px;
}

.auth-showcase-message p {
  margin-top: 5px;

  color: rgba(255, 255, 255, 0.45);

  font-size: 11px;
}

/* ============================================================
   25R. AUTH FOCUS / ACCESSIBILITY
   ============================================================ */

.social-login-btn:focus-visible,
.auth-forgot-link:focus-visible,
.auth-signup a:focus-visible,
.checkbox-label input:focus-visible {
  outline: 2px solid var(--color-primary);

  outline-offset: 3px;
}

/* ============================================================
   26. SIGNUP PAGE
   ------------------------------------------------------------
   Signup-specific styling for the VexYra account creation page.

   DESIGN GOAL:
   - Premium startup/platform appearance
   - Clear account-type selection
   - Strong visual hierarchy
   - Consistent with the VexYra login page
   - Desktop-first styling

   RESPONSIVE BEHAVIOUR:
   Mobile and tablet adjustments will be handled separately
   inside responsive.css.
   ============================================================ */

/* ============================================================
   26A. SIGNUP PAGE SPACING
   ============================================================ */

.signup-page {
  padding-top: 70px;
  padding-bottom: 100px;
}

/* ============================================================
   26B. SIGNUP LAYOUT
   ------------------------------------------------------------
   Keeps the registration form and VexYra showcase side by side.
   ============================================================ */

.signup-layout {
  grid-template-columns:
    minmax(0, 540px)
    minmax(0, 1fr);

  max-width: 1120px;

  gap: 42px;
}

/* ============================================================
   26C. SIGNUP CARD
   ------------------------------------------------------------
   Slightly more spacious than the login card because signup
   contains additional fields and account-type selection.
   ============================================================ */

.signup-card {
  padding: 42px;
}

/* ============================================================
   26D. AUTH HEADER
   ------------------------------------------------------------
   Shared heading treatment for authentication pages.
   ============================================================ */

.auth-header {
  margin-bottom: 32px;
}

.auth-header .section-label {
  margin-bottom: 13px;
}

.auth-header h1 {
  margin: 0;

  color: var(--color-navy);

  font-size: 38px;

  font-weight: 800;

  line-height: 1.12;

  letter-spacing: -1.5px;
}

.auth-header h1 span {
  color: var(--color-primary);
}

.auth-header p {
  max-width: 470px;

  margin-top: 13px;

  color: var(--color-text-secondary);

  font-size: 14px;

  line-height: 1.7;
}

/* ============================================================
   26E. AUTH FORM
   ============================================================ */

.auth-form {
  width: 100%;
}

/* ============================================================
   26F. FORM GROUP
   ============================================================ */

.auth-form .form-group {
  margin-bottom: 20px;
}

.auth-form .form-group > label {
  display: block;

  margin-bottom: 8px;

  color: var(--color-navy);

  font-size: 13px;

  font-weight: 700;
}

/* ============================================================
   26G. FORM FIELD DESCRIPTION
   ------------------------------------------------------------
   Small explanatory text underneath certain labels.
   ============================================================ */

.form-field-description {
  margin-top: -2px;

  margin-bottom: 14px;

  color: var(--color-text-muted);

  font-size: 12px;

  line-height: 1.5;
}

/* ============================================================
   26H. OPTIONAL LABEL
   ============================================================ */

.optional-label {
  margin-left: 5px;

  color: var(--color-text-muted);

  font-size: 11px;

  font-weight: 500;
}

/* ============================================================
   26I. TEXT INPUTS
   ------------------------------------------------------------
   Shared styling for signup form controls.
   ============================================================ */

.signup-card input[type="text"],
.signup-card input[type="email"],
.signup-card input[type="tel"],
.signup-card input[type="password"],
.signup-card select,
.signup-card textarea {
  width: 100%;

  min-height: 50px;

  padding: 0 15px;

  background-color: var(--color-white);

  border: 1px solid var(--color-border);

  border-radius: 10px;

  outline: none;

  color: var(--color-text);

  font-family: inherit;

  font-size: 14px;

  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast),
    background-color var(--transition-fast);
}

/* ============================================================
   26J. INPUT PLACEHOLDER
   ============================================================ */

.signup-card input::placeholder,
.signup-card textarea::placeholder {
  color: var(--color-text-muted);
}

/* ============================================================
   26K. INPUT FOCUS
   ------------------------------------------------------------
   Gives users a clear indication of the active field.
   ============================================================ */

.signup-card input:focus,
.signup-card select:focus,
.signup-card textarea:focus {
  background-color: var(--color-white);

  border-color: var(--color-primary);

  box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.09);
}

/* ============================================================
   26L. PASSWORD ROW
   ------------------------------------------------------------
   Password and confirmation appear side by side on desktop.
   ============================================================ */

.signup-card .form-row {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 14px;
}

/* ============================================================
   26M. ACCOUNT TYPE SECTION
   ------------------------------------------------------------
   This is one of the most important parts of signup.

   Users choose whether they are:

   1. Looking for something
   2. Providing services
   3. Representing a business
   ============================================================ */

.signup-account-type {
  margin-bottom: 26px !important;
}

/* ============================================================
   26N. ACCOUNT TYPE OPTIONS
   ============================================================ */

.account-type-options {
  display: grid;

  gap: 10px;
}

/* ============================================================
   26O. ACCOUNT TYPE OPTION
   ------------------------------------------------------------
   The label itself becomes the clickable card.
   ============================================================ */

.account-type-option {
  position: relative;

  display: block;

  margin: 0 !important;

  cursor: pointer;
}

/* ============================================================
   26P. HIDE RADIO BUTTON
   ------------------------------------------------------------
   The actual radio remains accessible while the visual card
   represents its state.
   ============================================================ */

.account-type-option input[type="radio"] {
  position: absolute;

  width: 1px;

  height: 1px;

  opacity: 0;

  pointer-events: none;
}

/* ============================================================
   26Q. ACCOUNT TYPE CONTENT
   ============================================================ */

.account-type-content {
  display: flex;

  align-items: center;

  gap: 14px;

  min-height: 72px;

  padding: 13px 15px;

  background-color: var(--color-white);

  border: 1px solid var(--color-border);

  border-radius: 12px;

  transition:
    border-color var(--transition-fast),
    background-color var(--transition-fast),
    box-shadow var(--transition-fast),
    transform var(--transition-fast);
}

/* ============================================================
   26R. ACCOUNT TYPE HOVER
   ============================================================ */

.account-type-option:hover .account-type-content {
  border-color: rgba(108, 92, 231, 0.28);

  box-shadow: var(--shadow-small);

  transform: translateY(-1px);
}

/* ============================================================
   26S. ACCOUNT TYPE SELECTED STATE
   ------------------------------------------------------------
   CSS :has() allows the card to respond when the hidden radio
   button is selected.

   Modern browsers support this.
   ============================================================ */

.account-type-option:has(input[type="radio"]:checked) .account-type-content {
  background-color: rgba(108, 92, 231, 0.045);

  border-color: var(--color-primary);

  box-shadow: 0 0 0 2px rgba(108, 92, 231, 0.08);
}

/* ============================================================
   26T. ACCOUNT TYPE ICON
   ============================================================ */

.account-type-icon {
  display: flex;

  align-items: center;

  justify-content: center;

  flex-shrink: 0;

  width: 42px;

  height: 42px;

  background-color: rgba(108, 92, 231, 0.08);

  border-radius: 11px;

  color: var(--color-primary);

  font-size: 17px;

  font-weight: 800;
}

/* ============================================================
   26U. SELECTED ACCOUNT TYPE ICON
   ============================================================ */

.account-type-option:has(input[type="radio"]:checked) .account-type-icon {
  background-color: var(--color-primary);

  color: var(--color-white);
}

/* ============================================================
   26V. ACCOUNT TYPE TEXT
   ============================================================ */

.account-type-text {
  display: flex;

  flex-direction: column;

  gap: 4px;

  min-width: 0;
}

.account-type-text strong {
  color: var(--color-navy);

  font-size: 13px;

  font-weight: 700;
}

.account-type-text small {
  color: var(--color-text-secondary);

  font-size: 11px;

  line-height: 1.45;
}

/* ============================================================
   26W. TERMS SECTION
   ============================================================ */

.signup-terms {
  margin-top: 5px;

  margin-bottom: 22px;
}

/* ============================================================
   26X. CHECKBOX LABEL
   ============================================================ */

.checkbox-label {
  display: flex;

  align-items: flex-start;

  gap: 9px;

  color: var(--color-text-secondary);

  font-size: 11px;

  line-height: 1.6;

  cursor: pointer;
}

/* ============================================================
   26Y. CHECKBOX
   ============================================================ */

.checkbox-label input[type="checkbox"] {
  flex-shrink: 0;

  width: 15px;

  height: 15px;

  margin-top: 2px;

  accent-color: var(--color-primary);

  cursor: pointer;
}

/* ============================================================
   26Z. TERMS LINKS
   ============================================================ */

.terms-link {
  color: var(--color-primary);

  font-weight: 700;

  transition: color var(--transition-fast);
}

.terms-link:hover {
  color: var(--color-primary-dark);
}

/* ============================================================
   27. SIGNUP SUBMIT BUTTON
   ============================================================ */

.signup-submit-btn {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 9px;

  width: 100%;

  min-height: 52px;

  margin-top: 4px;

  font-size: 14px;

  font-weight: 700;
}

/* ============================================================
   27A. SIGNUP BUTTON ARROW
   ============================================================ */

.signup-submit-btn span {
  font-size: 17px;

  transition: transform var(--transition-fast);
}

.signup-submit-btn:hover span {
  transform: translateX(3px);
}

/* ============================================================
   27B. AUTH DIVIDER
   ============================================================ */

.auth-divider {
  display: flex;

  align-items: center;

  gap: 15px;

  margin: 25px 0;
}

.auth-divider::before,
.auth-divider::after {
  flex: 1;

  height: 1px;

  background-color: var(--color-border);

  content: "";
}

.auth-divider span {
  color: var(--color-text-muted);

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 1px;
}

/* ============================================================
   27C. SOCIAL LOGIN
   ============================================================ */

.social-login {
  width: 100%;
}

/* ============================================================
   27D. GOOGLE BUTTON
   ============================================================ */

.social-login-btn {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 10px;

  width: 100%;

  min-height: 50px;

  padding: 0 16px;

  background-color: var(--color-white);

  border: 1px solid var(--color-border);

  border-radius: 10px;

  color: var(--color-text);

  font-family: inherit;

  font-size: 13px;

  font-weight: 600;

  cursor: pointer;

  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast),
    transform var(--transition-fast);
}

.social-login-btn:hover {
  border-color: rgba(108, 92, 231, 0.25);

  box-shadow: var(--shadow-small);

  transform: translateY(-1px);
}

/* ============================================================
   27E. GOOGLE ICON
   ============================================================ */

.social-login-icon {
  display: flex;

  align-items: center;

  justify-content: center;

  width: 24px;

  height: 24px;

  color: #4285f4;

  font-size: 15px;

  font-weight: 800;
}

/* ============================================================
   27F. AUTH LOGIN LINK
   ============================================================ */

.auth-signup {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 5px;

  margin-top: 24px;

  color: var(--color-text-secondary);

  font-size: 12px;
}

.auth-signup a {
  color: var(--color-primary);

  font-weight: 700;

  transition: color var(--transition-fast);
}

.auth-signup a:hover {
  color: var(--color-primary-dark);
}

/* ============================================================
   28. SIGNUP SHOWCASE
   ------------------------------------------------------------
   Right-side platform/value proposition panel.
   ============================================================ */

.signup-showcase {
  position: relative;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

  min-height: 720px;

  padding: 55px 48px;

  background:
    radial-gradient(
      circle at 85% 15%,
      rgba(175, 167, 255, 0.16),
      transparent 32%
    ),
    linear-gradient(145deg, #171a3a 0%, #25285a 100%);

  border-radius: 26px;

  overflow: hidden;

  box-shadow: var(--shadow-large);
}

/* ============================================================
   28A. SHOWCASE DECORATIVE CIRCLE
   ============================================================ */

.signup-showcase::before {
  position: absolute;

  top: -150px;

  right: -120px;

  width: 390px;

  height: 390px;

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 50%;

  content: "";
}

/* ============================================================
   28B. SECOND DECORATIVE CIRCLE
   ============================================================ */

.signup-showcase::after {
  position: absolute;

  right: -80px;

  bottom: -180px;

  width: 400px;

  height: 400px;

  border: 1px solid rgba(255, 255, 255, 0.055);

  border-radius: 50%;

  content: "";
}

/* ============================================================
   28C. SHOWCASE CONTENT
   ============================================================ */

.auth-showcase-content {
  position: relative;

  z-index: 2;
}

.auth-showcase-label {
  display: inline-block;

  color: rgba(255, 255, 255, 0.58);

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 1.5px;
}

.auth-showcase-content h2 {
  max-width: 430px;

  margin-top: 18px;

  color: var(--color-white);

  font-size: 42px;

  font-weight: 800;

  line-height: 1.12;

  letter-spacing: -1.8px;
}

.auth-showcase-content h2 span {
  display: block;

  color: #afa7ff;
}

.auth-showcase-content > p {
  max-width: 430px;

  margin-top: 20px;

  color: rgba(255, 255, 255, 0.68);

  font-size: 14px;

  line-height: 1.8;
}

/* ============================================================
   28D. SHOWCASE FEATURES
   ============================================================ */

.auth-showcase-features {
  position: relative;

  z-index: 2;

  display: flex;

  flex-direction: column;

  gap: 0;

  margin-top: 50px;
}

/* ============================================================
   28E. SHOWCASE FEATURE
   ============================================================ */

.auth-showcase-feature {
  display: flex;

  align-items: flex-start;

  gap: 17px;

  padding: 20px 0;

  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.auth-showcase-feature:first-child {
  padding-top: 0;
}

.auth-showcase-feature:last-child {
  border-bottom: none;
}

/* ============================================================
   28F. SHOWCASE FEATURE NUMBER
   ============================================================ */

.auth-feature-icon {
  display: flex;

  align-items: center;

  justify-content: center;

  flex-shrink: 0;

  width: 38px;

  height: 38px;

  background-color: rgba(255, 255, 255, 0.07);

  border: 1px solid rgba(255, 255, 255, 0.09);

  border-radius: 10px;

  color: #afa7ff;

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 0.5px;
}

/* ============================================================
   28G. SHOWCASE FEATURE TITLE
   ============================================================ */

.auth-showcase-feature strong {
  display: block;

  margin-bottom: 5px;

  color: var(--color-white);

  font-size: 13px;

  font-weight: 700;
}

/* ============================================================
   28H. SHOWCASE FEATURE DESCRIPTION
   ============================================================ */

.auth-showcase-feature p {
  max-width: 330px;

  color: rgba(255, 255, 255, 0.57);

  font-size: 12px;

  line-height: 1.6;
}

/* ============================================================
   28I. SHOWCASE MESSAGE
   ============================================================ */

.auth-showcase-message {
  position: relative;

  z-index: 2;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;

  margin-top: 45px;

  padding-top: 22px;

  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.auth-showcase-message span {
  color: var(--color-white);

  font-size: 16px;

  font-weight: 800;

  letter-spacing: -0.4px;
}

.auth-showcase-message p {
  color: rgba(255, 255, 255, 0.42);

  font-size: 11px;

  font-weight: 600;
}

/* ============================================================
   29. SIGNUP ACCESSIBILITY
   ------------------------------------------------------------
   Keyboard users should receive a visible focus indication
   when selecting an account type.
   ============================================================ */

.account-type-option input[type="radio"]:focus-visible + .account-type-content {
  outline: 2px solid var(--color-primary);

  outline-offset: 3px;
}

/* ============================================================
   30. REDUCED MOTION
   ------------------------------------------------------------
   Respects users who have requested reduced motion.
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  .account-type-content,
  .social-login-btn,
  .signup-submit-btn span {
    transition: none;
  }
}

/* ============================================================
   VEXYRA EXPLORE
   ============================================================ */

.explore-page {
  padding: 72px 0 96px;
}

.explore-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ============================================================
   EXPLORE HERO
   ============================================================ */

.explore-hero {
  max-width: 760px;
  margin-bottom: 48px;
}

.explore-hero h1 {
  margin: 10px 0 16px;
}

.explore-hero p {
  margin: 0;
  max-width: 650px;
}

/* ============================================================
   EXPLORE SEARCH
   ============================================================ */

.explore-search-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 18px;
  margin-bottom: 64px;
}

.explore-search-box,
.explore-filter-box {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.explore-search-label,
.explore-filter-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.explore-search-input,
.explore-filter-select {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  background: #ffffff;
  font: inherit;
  outline: none;
  box-sizing: border-box;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.explore-search-input:focus,
.explore-filter-select:focus {
  border-color: currentColor;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06);
}

/* ============================================================
   RESULTS HEADER
   ============================================================ */

.explore-results-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.explore-results-header h2 {
  margin: 8px 0 0;
}

.explore-result-count {
  font-size: 0.9rem;
  opacity: 0.65;
  white-space: nowrap;
}

/* ============================================================
   RESULTS GRID
   ============================================================ */

.explore-results-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

/* ============================================================
   LISTING CARD
   ============================================================ */

.explore-listing-card {
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  background: #ffffff;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.explore-listing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
}

/* ============================================================
   LISTING IMAGE
   ============================================================ */

.explore-listing-image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 190px;
  overflow: hidden;
  background: #f5f5f5;
}

.explore-listing-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.explore-listing-placeholder {
  font-size: 2rem;
  opacity: 0.35;
}

/* ============================================================
   LISTING CONTENT
   ============================================================ */

.explore-listing-content {
  padding: 22px;
}

.explore-listing-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.explore-listing-type,
.explore-listing-verified {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
}

.explore-listing-type {
  background: rgba(0, 0, 0, 0.06);
}

.explore-listing-verified {
  background: rgba(0, 0, 0, 0.04);
}

.explore-listing-content h3 {
  margin: 0 0 6px;
  font-size: 1.2rem;
}

.explore-listing-category {
  margin: 0 0 12px;
  font-size: 0.9rem;
  opacity: 0.65;
}

.explore-listing-description {
  margin: 0 0 16px;
  line-height: 1.6;
  font-size: 0.92rem;
}

.explore-listing-location {
  margin: 0 0 12px;
  font-size: 0.86rem;
  opacity: 0.7;
}

.explore-listing-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 700;
}

/* ============================================================
   VEXYRA EXPLORE
   LOADING / EMPTY / ERROR STATES
   ============================================================ */

/* ============================================================
   NATIVE HIDDEN ATTRIBUTE FIX
   ------------------------------------------------------------
   This ensures elements using the HTML [hidden] attribute
   remain completely hidden even if another CSS rule sets
   display: flex, block, grid, etc.
   ============================================================ */

[hidden] {
  display: none !important;
}

/* ============================================================
   LOADING
   ============================================================ */

.explore-loading {
  min-height: 220px;

  display: flex;
  flex-direction: column;

  align-items: center;
  justify-content: center;

  gap: 14px;

  text-align: center;
}

.explore-loading p {
  margin: 0;

  opacity: 0.65;
}

/* ============================================================
   LOADING SPINNER
   ============================================================ */

.explore-loading-spinner {
  width: 28px;
  height: 28px;

  border: 3px solid rgba(0, 0, 0, 0.12);
  border-top-color: currentColor;

  border-radius: 50%;

  animation: exploreSpinner 0.8s linear infinite;
}

@keyframes exploreSpinner {
  to {
    transform: rotate(360deg);
  }
}

/* ============================================================
   EMPTY / ERROR STATE
   ============================================================ */

.explore-empty {
  min-height: 260px;

  display: flex;
  flex-direction: column;

  align-items: center;
  justify-content: center;

  text-align: center;

  padding: 40px 20px;
}

.explore-empty-icon {
  margin-bottom: 14px;

  font-size: 2rem;

  opacity: 0.4;
}

.explore-empty h3 {
  margin: 0 0 8px;
}

.explore-empty p {
  margin: 0;

  opacity: 0.65;
}

/* ============================================================
   VEXYRA LISTING PROFILE
   PREMIUM DESKTOP / BASE STYLES
   ============================================================ */

.listing-page {
  min-height: 70vh;
  padding: 70px 0 100px;
}

.listing-container {
  max-width: 1180px;
}

/* ============================================================
   LISTING PROFILE
   ============================================================ */

.listing-profile {
  position: relative;

  display: grid;
  grid-template-columns:
    minmax(320px, 0.9fr)
    minmax(420px, 1.1fr);

  gap: 60px;

  align-items: stretch;

  padding: 28px;

  overflow: hidden;

  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 28px;

  background: rgba(255, 255, 255, 0.96);

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

/* ============================================================
   TOP ACCENT
   ============================================================ */

.listing-profile::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;
  right: 0;

  height: 4px;

  background: currentColor;

  opacity: 0.9;
}

/* ============================================================
   LISTING IMAGE
   ============================================================ */

.listing-profile-image {
  position: relative;

  min-height: 520px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  border-radius: 22px;

  background:
    radial-gradient(circle at 30% 20%, rgba(0, 0, 0, 0.08), transparent 40%),
    linear-gradient(135deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.08));
}

/* ============================================================
   IMAGE
   ============================================================ */

.listing-profile-image img {
  display: block;

  width: 100%;
  height: 100%;

  min-height: 520px;

  object-fit: cover;

  transition: transform 0.5s ease;
}

.listing-profile:hover .listing-profile-image img {
  transform: scale(1.025);
}

/* ============================================================
   IMAGE PLACEHOLDER
   ============================================================ */

.listing-profile-image .explore-listing-placeholder {
  font-size: 5rem;

  opacity: 0.18;

  user-select: none;
}

/* ============================================================
   CONTENT
   ============================================================ */

.listing-profile-content {
  display: flex;

  flex-direction: column;

  justify-content: center;

  padding: 30px 20px 30px 0;
}

/* ============================================================
   META
   ============================================================ */

.listing-profile-content .explore-listing-meta {
  display: flex;

  align-items: center;

  gap: 10px;

  margin-bottom: 20px;
}

/* ============================================================
   TYPE BADGE
   ============================================================ */

.listing-profile-content .explore-listing-type {
  display: inline-flex;

  align-items: center;

  padding: 7px 12px;

  border-radius: 999px;

  background: rgba(0, 0, 0, 0.06);

  font-size: 0.78rem;

  font-weight: 700;

  letter-spacing: 0.04em;

  text-transform: uppercase;
}

/* ============================================================
   VERIFIED BADGE
   ============================================================ */

.listing-profile-content .explore-listing-verified {
  display: inline-flex;

  align-items: center;

  gap: 5px;

  padding: 7px 12px;

  border-radius: 999px;

  background: rgba(0, 0, 0, 0.06);

  font-size: 0.78rem;

  font-weight: 700;
}

.listing-profile-content .explore-listing-verified::before {
  content: "✓";

  font-weight: 800;
}

/* ============================================================
   LISTING NAME
   ============================================================ */

.listing-profile-content h1 {
  max-width: 700px;

  margin: 0;

  font-size: clamp(2.4rem, 5vw, 4.6rem);

  line-height: 0.98;

  letter-spacing: -0.055em;
}

/* ============================================================
   CATEGORY
   ============================================================ */

.listing-profile-content .explore-listing-category {
  margin: 18px 0 0;

  font-size: 1.05rem;

  font-weight: 700;

  opacity: 0.62;
}

/* ============================================================
   DESCRIPTION
   ============================================================ */

.listing-profile-content .explore-listing-description {
  max-width: 650px;

  margin: 26px 0 0;

  font-size: 1.08rem;

  line-height: 1.75;

  opacity: 0.78;
}

/* ============================================================
   LOCATION
   ============================================================ */

.listing-profile-content .explore-listing-location {
  margin: 26px 0 0;

  font-size: 0.98rem;

  font-weight: 600;

  opacity: 0.72;
}

/* ============================================================
   ADDRESS
   ============================================================ */

.listing-profile-address {
  margin: 8px 0 0;

  font-size: 0.95rem;

  line-height: 1.6;

  opacity: 0.62;
}

/* ============================================================
   RATING
   ============================================================ */

.listing-profile-content .explore-listing-rating {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  width: fit-content;

  margin-top: 24px;

  padding: 10px 14px;

  border-radius: 12px;

  background: rgba(0, 0, 0, 0.05);

  font-weight: 800;
}

.listing-profile-content .explore-listing-rating span:first-child {
  font-size: 1.05rem;
}

/* ============================================================
   CONTACT AREA
   ============================================================ */

.listing-profile-contact {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 14px;

  margin-top: 34px;

  padding-top: 28px;

  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* ============================================================
   CONTACT BOX
   ============================================================ */

.listing-profile-contact > div {
  display: flex;

  flex-direction: column;

  gap: 7px;

  min-width: 0;

  padding: 17px;

  border: 1px solid rgba(0, 0, 0, 0.07);

  border-radius: 16px;

  background: rgba(0, 0, 0, 0.025);

  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.listing-profile-contact > div:hover {
  transform: translateY(-2px);

  background: rgba(0, 0, 0, 0.045);

  border-color: rgba(0, 0, 0, 0.12);
}

/* ============================================================
   CONTACT LABEL
   ============================================================ */

.listing-profile-contact strong {
  font-size: 0.72rem;

  letter-spacing: 0.08em;

  text-transform: uppercase;

  opacity: 0.5;
}

/* ============================================================
   CONTACT LINKS
   ============================================================ */

.listing-profile-contact a {
  color: inherit;

  text-decoration: none;

  font-size: 0.92rem;

  font-weight: 700;

  overflow-wrap: anywhere;

  transition: opacity 0.2s ease;
}

.listing-profile-contact a:hover {
  opacity: 0.6;
}

/* ============================================================
   LISTING LOADING
   ============================================================ */

#listingLoading {
  min-height: 500px;
}

/* ============================================================
   LISTING ACTION BUTTONS
   ============================================================ */

.listing-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  width: 100%;
}

.listing-action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;

  border: 1px solid var(--border-color, #e5e7eb);
  border-radius: 10px;

  background: #ffffff;
  color: var(--text-color, #111827);

  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;

  white-space: nowrap;

  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.listing-action-button:hover {
  transform: translateY(-2px);

  border-color: #d1d5db;

  background: #f9fafb;

  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.listing-action-button:active {
  transform: translateY(0);
  box-shadow: none;
}

.listing-action-button:focus-visible {
  outline: 3px solid rgba(0, 0, 0, 0.12);
  outline-offset: 2px;
}

/* ============================================================
   CALL BUTTON
   ============================================================ */

#listingCallButton {
  background: #111827;
  border-color: #111827;
  color: #ffffff;
}

#listingCallButton:hover {
  background: #1f2937;
  border-color: #1f2937;
  color: #ffffff;
}

/* ============================================================
   EMAIL BUTTON
   ============================================================ */

#listingEmailButton {
  background: #ffffff;
  border-color: #d1d5db;
  color: #111827;
}

#listingEmailButton:hover {
  background: #f3f4f6;
  border-color: #9ca3af;
  color: #111827;
}

/* ============================================================
   DIRECTIONS BUTTON
   ============================================================ */

#listingDirectionsButton {
  background: #ffffff;
  border-color: #d1d5db;
  color: #111827;
}

#listingDirectionsButton:hover {
  background: #f3f4f6;
  border-color: #9ca3af;
}

/* ============================================================
   WEBSITE BUTTON
   ============================================================ */

#listingWebsiteButton {
  background: #ffffff;
  border-color: #d1d5db;
  color: #111827;
}

#listingWebsiteButton:hover {
  background: #f3f4f6;
  border-color: #9ca3af;
}

/* ============================================================
   VEXYRA DASHBOARD
   BUSINESS MEDIA — LOGO & BUSINESS PHOTOS
   ============================================================ */

/* ------------------------------------------------------------
   BUSINESS MEDIA CARD
   ------------------------------------------------------------ */

.dashboard-business-media-card {
  width: 100%;
  box-sizing: border-box;
  margin-top: 28px;
  padding: 28px;
  overflow: hidden;
}

.dashboard-business-media-card > .dashboard-section-header {
  margin-bottom: 28px;
}

.dashboard-business-media-card > .dashboard-section-header .section-label {
  display: block;
  margin-bottom: 8px;
}

.dashboard-business-media-card > .dashboard-section-header h3 {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 700;
}

.dashboard-business-media-card > .dashboard-section-header p {
  margin: 0;
  max-width: 720px;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.6;
}

/* ------------------------------------------------------------
   MEDIA BLOCK
   ------------------------------------------------------------ */

.dashboard-media-block {
  width: 100%;
  box-sizing: border-box;
  padding: 24px 0;
  border-top: 1px solid #e5e7eb;
}

.dashboard-media-block:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.dashboard-media-block:last-of-type {
  padding-bottom: 8px;
}

/* ------------------------------------------------------------
   MEDIA HEADING
   ------------------------------------------------------------ */

.dashboard-media-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.dashboard-media-heading strong {
  display: block;
  margin-bottom: 5px;
  color: #111827;
  font-size: 16px;
  font-weight: 700;
}

.dashboard-media-heading p {
  margin: 0;
  color: #6b7280;
  font-size: 13px;
  line-height: 1.5;
}

/* ============================================================
   BUSINESS LOGO
   ============================================================ */

.dashboard-logo-upload-area {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
  min-height: 170px;
  padding: 20px;
  box-sizing: border-box;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #fafafa;
}

/* ------------------------------------------------------------
   LOGO PREVIEW
   ------------------------------------------------------------ */

.dashboard-logo-preview {
  position: relative;
  width: 150px;
  height: 150px;
  min-width: 150px;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;

  box-sizing: border-box;

  border: 1px solid #dfe3e8;
  border-radius: 14px;

  background: #ffffff;

  box-shadow:
    0 2px 6px rgba(0, 0, 0, 0.04),
    0 8px 20px rgba(0, 0, 0, 0.04);
}

/* ------------------------------------------------------------
   LOGO IMAGE
   ------------------------------------------------------------ */

.dashboard-logo-preview img,
#businessLogoImage {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  box-sizing: border-box;
}

/* ------------------------------------------------------------
   LOGO PLACEHOLDER
   ------------------------------------------------------------ */

.dashboard-media-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  height: 100%;

  color: #9ca3af;
  font-size: 42px;
  font-weight: 300;

  background: #f9fafb;
}

/* ------------------------------------------------------------
   LOGO UPLOAD CONTENT
   ------------------------------------------------------------ */

.dashboard-media-upload-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;

  min-width: 0;
}

.dashboard-media-upload-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 42px;
  padding: 0 18px;

  border-radius: 8px;

  font-size: 14px;
  font-weight: 600;

  cursor: pointer;
}

.dashboard-media-remove-button {
  margin-top: 10px;

  min-height: 38px;
  padding: 0 14px;

  border: 1px solid #fecaca;
  border-radius: 8px;

  background: #ffffff;
  color: #dc2626;

  font-size: 13px;
  font-weight: 600;

  cursor: pointer;

  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

.dashboard-media-remove-button:hover {
  background: #fef2f2;
  border-color: #fca5a5;
}

/* ------------------------------------------------------------
   MEDIA HELP TEXT
   ------------------------------------------------------------ */

.dashboard-media-help {
  margin: 10px 0 0;

  color: #9ca3af;

  font-size: 12px;
  line-height: 1.5;
}

.dashboard-media-file-name {
  margin: 8px 0 0;

  color: #374151;

  font-size: 13px;
  font-weight: 500;
}

/* ============================================================
   BUSINESS PHOTOS
   ============================================================ */

.dashboard-business-photo-upload {
  width: 100%;
  margin-bottom: 18px;
}

/* ------------------------------------------------------------
   PHOTO UPLOAD BOX
   ------------------------------------------------------------ */

.dashboard-photo-upload-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;

  width: 100%;
  min-height: 180px;

  padding: 30px 20px;

  box-sizing: border-box;

  border: 2px dashed #d1d5db;
  border-radius: 14px;

  background: #fafafa;

  color: #374151;

  text-align: center;

  cursor: pointer;

  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.dashboard-photo-upload-box:hover {
  border-color: #9ca3af;
  background: #f9fafb;
}

.dashboard-photo-upload-box:active {
  transform: translateY(1px);
}

/* ------------------------------------------------------------
   PHOTO UPLOAD ICON
   ------------------------------------------------------------ */

.dashboard-photo-upload-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 48px;
  height: 48px;

  margin-bottom: 12px;

  border: 1px solid #d1d5db;
  border-radius: 50%;

  background: #ffffff;

  color: #6b7280;

  font-size: 28px;
  font-weight: 300;

  line-height: 1;
}

/* ------------------------------------------------------------
   PHOTO UPLOAD TEXT
   ------------------------------------------------------------ */

.dashboard-photo-upload-box strong {
  display: block;

  margin-bottom: 6px;

  color: #111827;

  font-size: 15px;
  font-weight: 700;
}

.dashboard-photo-upload-box > span:last-child {
  max-width: 420px;

  color: #9ca3af;

  font-size: 12px;
  line-height: 1.5;
}

/* ============================================================
   BUSINESS PHOTO GRID
   ============================================================ */

.dashboard-business-photo-grid {
  display: grid;

  grid-template-columns: repeat(4, minmax(0, 1fr));

  gap: 16px;

  width: 100%;

  margin-top: 18px;
}

/* ------------------------------------------------------------
   PHOTO ITEM
   ------------------------------------------------------------ */

.dashboard-business-photo-grid > * {
  position: relative;

  width: 100%;
  aspect-ratio: 1 / 1;

  overflow: hidden;

  box-sizing: border-box;

  border: 1px solid #e5e7eb;
  border-radius: 12px;

  background: #f9fafb;
}

/* ------------------------------------------------------------
   PHOTO IMAGE
   ------------------------------------------------------------ */

.dashboard-business-photo-grid img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
}

/* ------------------------------------------------------------
   PHOTO REMOVE BUTTON
   ------------------------------------------------------------ */

.dashboard-business-photo-grid button {
  position: absolute;

  right: 8px;
  bottom: 8px;

  z-index: 5;

  min-height: 32px;

  padding: 0 10px;

  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 7px;

  background: rgba(255, 255, 255, 0.95);

  color: #dc2626;

  font-size: 12px;
  font-weight: 600;

  cursor: pointer;

  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);

  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.dashboard-business-photo-grid button:hover {
  background: #ffffff;
  transform: translateY(-1px);
}

/* ============================================================
   MEDIA ACTIONS
   ============================================================ */

.dashboard-business-media-card .dashboard-profile-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;

  margin-top: 24px;
  padding-top: 22px;

  border-top: 1px solid #e5e7eb;
}

/* ============================================================
   MEDIA SAVE MESSAGE
   ============================================================ */

#businessMediaSaveMessage {
  margin-top: 14px;
}

#businessMediaSaveMessage[data-type="success"] {
  color: #047857;
}

#businessMediaSaveMessage[data-type="error"] {
  color: #b91c1c;
}

/* ============================================================
   HIDDEN MEDIA ELEMENTS
   ============================================================ */

#businessLogoInput,
#businessPhotosInput {
  display: block;
}

/* ============================================================
   MEDIA CARD — SMALL POLISH
   ============================================================ */

.dashboard-business-media-card .dashboard-save-message {
  line-height: 1.5;
}

.dashboard-business-media-card button {
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

/* =========================================================
   VEXYRA DASHBOARD
   PROFESSIONAL HIGHLIGHTS
   BASE / DESKTOP STYLES
   ========================================================= */

.dashboard-professional-highlights {
  margin-top: 32px;
  padding: 32px;
  border: 1px solid var(--border-color, #e5e7eb);
  border-radius: 18px;
  background: var(--card-background, #ffffff);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

/* ---------------------------------------------------------
   PROFESSIONAL HIGHLIGHTS HEADER
   --------------------------------------------------------- */

.dashboard-professional-highlights .dashboard-section-header {
  margin-bottom: 26px;
}

.dashboard-professional-highlights .section-label {
  display: inline-block;
  margin-bottom: 8px;
}

.dashboard-professional-highlights .dashboard-section-header h3 {
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 700;
  color: var(--heading-color, #111827);
}

.dashboard-professional-highlights .dashboard-section-header p {
  max-width: 720px;
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted-text, #6b7280);
}

/* ---------------------------------------------------------
   PROFESSIONAL SUMMARY GRID
   --------------------------------------------------------- */

.dashboard-professional-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 0;
}

/* ---------------------------------------------------------
   SUMMARY CARDS
   --------------------------------------------------------- */

.dashboard-professional-summary-grid .dashboard-card {
  position: relative;
  min-height: 150px;
  padding: 24px;
  overflow: hidden;

  border: 1px solid var(--border-color, #e5e7eb);
  border-radius: 14px;

  background: var(--card-background, #ffffff);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.dashboard-professional-summary-grid .dashboard-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 3px;

  background: currentColor;
  opacity: 0.12;
}

.dashboard-professional-summary-grid .dashboard-card:hover {
  transform: translateY(-2px);

  border-color: var(--primary-color, #111827);

  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

/* ---------------------------------------------------------
   CARD LABEL
   --------------------------------------------------------- */

.dashboard-professional-summary-grid .dashboard-card-label {
  display: block;
  margin-bottom: 12px;

  font-size: 11px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;

  color: var(--muted-text, #6b7280);
}

/* ---------------------------------------------------------
   CARD VALUE
   --------------------------------------------------------- */

.dashboard-professional-summary-grid .dashboard-card h2 {
  margin: 0 0 10px;

  font-size: 26px;
  line-height: 1.25;
  font-weight: 700;

  color: var(--heading-color, #111827);

  word-break: break-word;
}

.dashboard-professional-summary-grid .dashboard-card h2:empty::after {
  content: "—";
}

/* ---------------------------------------------------------
   CARD DESCRIPTION
   --------------------------------------------------------- */

.dashboard-professional-summary-grid .dashboard-card p {
  margin: 0;

  font-size: 13px;
  line-height: 1.6;

  color: var(--muted-text, #6b7280);
}

/* ---------------------------------------------------------
   PROFESSIONAL INFORMATION CARD
   Consistent spacing for the section above Highlights
   --------------------------------------------------------- */

.dashboard-professional-highlights + .dashboard-profile-card {
  margin-top: 24px;
}

/* ---------------------------------------------------------
   PROFESSIONAL SECTION SPACING
   --------------------------------------------------------- */

#dashboardProfessional .dashboard-profile-card {
  margin-bottom: 24px;
}

#dashboardProfessional .dashboard-profile-card:last-child {
  margin-bottom: 0;
}

/* ---------------------------------------------------------
   PROFESSIONAL PROFILE ROWS
   --------------------------------------------------------- */

#dashboardProfessional .dashboard-profile-row {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  margin-left: 30px;
  padding: 18px 0;

  border-bottom: 1px solid var(--border-color, #e5e7eb);
}

#dashboardProfessional .dashboard-profile-row:last-of-type {
  border-bottom: 0;
}

#dashboardProfessional .dashboard-profile-row > span {
  font-size: 13px;
  line-height: 1.5;
  font-weight: 600;
  color: var(--muted-text, #6b7280);
}

#dashboardProfessional .dashboard-profile-row > strong {
  display: block;

  font-size: 15px;
  line-height: 1.6;
  font-weight: 600;

  color: var(--heading-color, #111827);

  word-break: break-word;
}

/* ---------------------------------------------------------
   PROFESSIONAL EDIT INPUTS
   --------------------------------------------------------- */

#dashboardProfessional .dashboard-profile-input {
  width: 100%;
  min-height: 46px;

  padding: 11px 14px;

  border: 1px solid var(--border-color, #d1d5db);
  border-radius: 10px;

  background: var(--card-background, #ffffff);

  font: inherit;
  font-size: 14px;
  line-height: 1.5;

  color: var(--heading-color, #111827);

  outline: none;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

#dashboardProfessional textarea.dashboard-profile-input {
  min-height: 110px;
  resize: vertical;
}

#dashboardProfessional select.dashboard-profile-input {
  cursor: pointer;
}

#dashboardProfessional .dashboard-profile-input:focus {
  border-color: var(--primary-color, #111827);

  box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.08);
}

#dashboardProfessional .dashboard-profile-input::placeholder {
  color: #9ca3af;
}

/* ---------------------------------------------------------
   PROFESSIONAL ACTION BUTTONS
   --------------------------------------------------------- */

#dashboardProfessional .dashboard-profile-actions {
  display: flex;
  align-items: center;
  gap: 12px;

  margin-top: 24px;
  padding-top: 24px;

  border-top: 1px solid var(--border-color, #e5e7eb);
}

#dashboardProfessional .dashboard-profile-actions .btn {
  min-height: 44px;
  padding: 10px 18px;

  border-radius: 9px;

  font-size: 13px;
  font-weight: 600;
}

/* ---------------------------------------------------------
   SAVE MESSAGE
   --------------------------------------------------------- */

#dashboardProfessional .dashboard-save-message {
  margin-top: 16px;
  padding: 12px 14px;

  border-radius: 9px;

  font-size: 13px;
  line-height: 1.5;
}

/* ---------------------------------------------------------
   PROFESSIONAL SECTION MAIN HEADING
   --------------------------------------------------------- */

#dashboardProfessional > .dashboard-section-header {
  margin-bottom: 28px;
}

#dashboardProfessional > .dashboard-section-header h2 {
  margin: 0 0 8px;

  font-size: 30px;
  line-height: 1.25;
  font-weight: 700;

  color: var(--heading-color, #111827);
}

#dashboardProfessional > .dashboard-section-header p {
  max-width: 760px;
  margin: 0;

  font-size: 14px;
  line-height: 1.7;

  color: var(--muted-text, #6b7280);
}

/* ---------------------------------------------------------
   PROFESSIONAL SUMMARY VALUE STATES
   --------------------------------------------------------- */

#professionalSummaryExperience,
#professionalSummarySpecialization,
#professionalSummaryAvailability {
  min-height: 33px;
}

/* Long specialization / availability text should remain clean */
#professionalSummarySpecialization,
#professionalSummaryAvailability {
  font-size: 21px;
  line-height: 1.35;
}

/* ---------------------------------------------------------
   PROFESSIONAL HIGHLIGHTS CARD BORDER ACCENT
   --------------------------------------------------------- */

.dashboard-professional-highlights {
  border-top: 3px solid var(--primary-color, #111827);
}

/* ---------------------------------------------------------
   GENERAL DASHBOARD CARD CONSISTENCY
   --------------------------------------------------------- */

#dashboardProfessional .dashboard-card {
  box-sizing: border-box;
}

#dashboardProfessional .dashboard-card h2 {
  overflow-wrap: anywhere;
}

.header-logout-button {
  appearance: none;
  border: 1px solid #d9dee7;
  background: #ffffff;
  color: #1f2937;
  padding: 10px 16px;
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.header-logout-button:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  color: #111827;
}

.header-logout-button:active {
  transform: translateY(1px);
}

.header-logout-button:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.2);
  outline-offset: 2px;
}

.header-logout-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ============================================================
   VEXYRA SERVICES PAGE
   PREMIUM SERVICES DIRECTORY
   ============================================================ */

/* ------------------------------------------------------------
   SERVICES PAGE
   ------------------------------------------------------------ */

.services-page {
  min-height: 100vh;
  overflow: hidden;
}

/* ------------------------------------------------------------
   SERVICES HERO
   ------------------------------------------------------------ */

.services-hero {
  position: relative;
  padding: 110px 0 90px;
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(124, 58, 237, 0.09),
      transparent 32%
    ),
    radial-gradient(
      circle at 85% 15%,
      rgba(99, 102, 241, 0.07),
      transparent 30%
    ),
    var(--background-color, #ffffff);
}

.services-hero::before {
  content: "";
  position: absolute;
  top: -160px;
  right: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(124, 58, 237, 0.08);
  pointer-events: none;
}

.services-hero::after {
  content: "";
  position: absolute;
  bottom: -180px;
  left: -150px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(124, 58, 237, 0.06);
  pointer-events: none;
}

.services-hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.services-hero .section-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.services-hero h1 {
  max-width: 850px;
  margin: 0 auto 22px;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
  font-weight: 700;
  color: var(--text-primary, #111827);
}

.services-hero p {
  max-width: 680px;
  margin: 0 auto;
  color: var(--text-secondary, #6b7280);
  font-size: 1.08rem;
  line-height: 1.8;
}

/* ------------------------------------------------------------
   SERVICES SEARCH
   ------------------------------------------------------------ */

.services-search {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 760px;
  margin: 42px auto 0;
  padding: 7px;
  background: #ffffff;
  border: 1px solid rgba(17, 24, 39, 0.09);
  border-radius: 18px;
  box-shadow:
    0 20px 60px rgba(17, 24, 39, 0.08),
    0 4px 15px rgba(17, 24, 39, 0.04);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.services-search:focus-within {
  border-color: rgba(124, 58, 237, 0.35);
  box-shadow:
    0 24px 70px rgba(124, 58, 237, 0.12),
    0 4px 18px rgba(17, 24, 39, 0.05);
  transform: translateY(-2px);
}

.services-search input {
  flex: 1;
  min-width: 0;
  height: 54px;
  padding: 0 18px;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--text-primary, #111827);
  font-family: inherit;
  font-size: 1rem;
}

.services-search input::placeholder {
  color: #9ca3af;
}

.services-search input::-webkit-search-cancel-button {
  cursor: pointer;
}

.services-search .btn {
  min-height: 54px;
  padding: 0 28px;
  border-radius: 13px;
  flex-shrink: 0;
}

/* ------------------------------------------------------------
   SERVICES CATEGORIES
   ------------------------------------------------------------ */

.services-categories {
  position: relative;
  padding: 95px 0 100px;
  background: var(--background-secondary, #f8f8fb);
}

.services-categories .container {
  position: relative;
  z-index: 1;
}

/* ------------------------------------------------------------
   SECTION HEADER
   ------------------------------------------------------------ */

.services-page .section-header {
  margin-bottom: 36px;
}

.services-page .section-header .section-label {
  display: inline-block;
  margin-bottom: 12px;
}

.services-page .section-header h2 {
  margin: 0 0 10px;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.035em;
  color: var(--text-primary, #111827);
}

.services-page .section-header p {
  margin: 0;
  color: var(--text-secondary, #6b7280);
  font-size: 1rem;
  line-height: 1.7;
}

/* ------------------------------------------------------------
   CATEGORY GRID
   ------------------------------------------------------------ */

.services-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

/* ------------------------------------------------------------
   CATEGORY CARD
   ------------------------------------------------------------ */

.service-category-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 190px;
  padding: 28px;
  overflow: hidden;
  text-align: left;
  border: 1px solid rgba(17, 24, 39, 0.07);
  border-radius: 20px;
  background: #ffffff;
  color: var(--text-primary, #111827);
  cursor: pointer;
  font-family: inherit;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease;
}

.service-category-card::before {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  right: -65px;
  top: -65px;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.07);
  transition:
    transform 0.35s ease,
    background 0.35s ease;
}

.service-category-card::after {
  content: "";
  position: absolute;
  left: 28px;
  bottom: 0;
  width: 0;
  height: 3px;
  border-radius: 5px 5px 0 0;
  background: var(--primary-color, #7c3aed);
  transition: width 0.3s ease;
}

.service-category-card:hover {
  transform: translateY(-6px);
  border-color: rgba(124, 58, 237, 0.18);
  box-shadow:
    0 20px 45px rgba(17, 24, 39, 0.09),
    0 4px 12px rgba(17, 24, 39, 0.04);
}

.service-category-card:hover::before {
  transform: scale(1.45);
  background: rgba(124, 58, 237, 0.1);
}

.service-category-card:hover::after {
  width: 55px;
}

/* ------------------------------------------------------------
   CATEGORY ICON
   ------------------------------------------------------------ */

.service-category-card > span {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 15px;
  background: rgba(124, 58, 237, 0.09);
  color: var(--primary-color, #7c3aed);
  font-size: 1.35rem;
  font-weight: 600;
  transition:
    transform 0.28s ease,
    background 0.28s ease;
}

.service-category-card:hover > span {
  transform: scale(1.08) rotate(-3deg);
  background: rgba(124, 58, 237, 0.14);
}

/* ------------------------------------------------------------
   CATEGORY TEXT
   ------------------------------------------------------------ */

.service-category-card strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 7px;
  font-size: 1.08rem;
  line-height: 1.3;
}

.service-category-card small {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--text-secondary, #6b7280);
  font-size: 0.88rem;
  line-height: 1.55;
}

/* ------------------------------------------------------------
   ACTIVE CATEGORY
   ------------------------------------------------------------ */

.service-category-card.active {
  border-color: var(--primary-color, #7c3aed);
  background: var(--primary-color, #7c3aed);
  color: #ffffff;
  box-shadow: 0 18px 45px rgba(124, 58, 237, 0.2);
}

.service-category-card.active > span {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.service-category-card.active small {
  color: rgba(255, 255, 255, 0.76);
}

.service-category-card.active::before {
  background: rgba(255, 255, 255, 0.08);
}

.service-category-card.active::after {
  background: #ffffff;
  width: 55px;
}

/* ------------------------------------------------------------
   SERVICES DIRECTORY
   ------------------------------------------------------------ */

.services-directory {
  padding: 100px 0 110px;
  background: var(--background-color, #ffffff);
}

.services-directory .section-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* ------------------------------------------------------------
   SERVICES GRID
   ------------------------------------------------------------ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

/* ------------------------------------------------------------
   INDIVIDUAL SERVICE CARD
   ------------------------------------------------------------ */

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 250px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 20px;
  background: #ffffff;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 8px 25px rgba(17, 24, 39, 0.035);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  top: -85px;
  right: -75px;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.055);
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(124, 58, 237, 0.2);
  box-shadow:
    0 22px 50px rgba(17, 24, 39, 0.09),
    0 5px 16px rgba(17, 24, 39, 0.04);
}

/* ------------------------------------------------------------
   SERVICE CARD ICON
   ------------------------------------------------------------ */

.service-card-icon {
  position: relative;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 14px;
  background: rgba(124, 58, 237, 0.09);
  color: var(--primary-color, #7c3aed);
}

/* ------------------------------------------------------------
   SERVICE CARD CONTENT
   ------------------------------------------------------------ */

.service-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  line-height: 1.3;
  letter-spacing: -0.015em;
}

.service-card p {
  margin: 0;
  color: var(--text-secondary, #6b7280);
  font-size: 0.92rem;
  line-height: 1.7;
}

.service-card-link {
  margin-top: auto;
  padding-top: 22px;
  color: var(--primary-color, #7c3aed);
  font-size: 0.88rem;
  font-weight: 600;
}

/* ------------------------------------------------------------
   SERVICES EMPTY STATE
   ------------------------------------------------------------ */

.services-empty {
  padding: 70px 30px;
  text-align: center;
  border: 1px dashed #d1d5db;
  border-radius: 20px;
  background: #fafafa;
}

.services-empty h3 {
  margin: 0 0 10px;
  font-size: 1.3rem;
  color: var(--text-primary, #111827);
}

.services-empty p {
  margin: 0;
  color: var(--text-secondary, #6b7280);
}

/* ------------------------------------------------------------
   SERVICES CTA
   ------------------------------------------------------------ */

.services-cta {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 10% 50%,
      rgba(124, 58, 237, 0.08),
      transparent 30%
    ),
    radial-gradient(
      circle at 90% 50%,
      rgba(99, 102, 241, 0.07),
      transparent 30%
    ),
    var(--background-secondary, #f8f8fb);
  text-align: center;
}

.services-cta::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  border: 1px solid rgba(124, 58, 237, 0.08);
}

.services-cta .container {
  position: relative;
  z-index: 1;
}

.services-cta .section-label {
  display: inline-block;
  margin-bottom: 16px;
}

.services-cta h2 {
  max-width: 700px;
  margin: 0 auto 16px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--text-primary, #111827);
}

.services-cta p {
  max-width: 620px;
  margin: 0 auto 30px;
  color: var(--text-secondary, #6b7280);
  line-height: 1.75;
}

.services-cta .btn {
  min-height: 50px;
  padding: 0 30px;
  border-radius: 12px;
}

/* ------------------------------------------------------------
   SERVICES HOVER ACCESSIBILITY
   ------------------------------------------------------------ */

.service-category-card:focus-visible,
.services-search input:focus-visible,
.services-search .btn:focus-visible,
.services-cta .btn:focus-visible {
  outline: 3px solid rgba(124, 58, 237, 0.25);
  outline-offset: 3px;
}

/* ------------------------------------------------------------
   REDUCED MOTION
   ------------------------------------------------------------ */

@media (prefers-reduced-motion: reduce) {
  .services-search,
  .service-category-card,
  .service-category-card > span,
  .service-card {
    transition: none;
  }
}

/* ============================================================
   VEXYRA SERVICE DETAILS PAGE
   ============================================================ */

.service-details-page {
  min-height: 100vh;
  background: var(--color-background, #f7f8fa);
}

/* ============================================================
   HERO
   ============================================================ */

.service-details-hero {
  position: relative;
  padding: 110px 0 90px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(99, 102, 241, 0.12),
      transparent 35%
    ),
    radial-gradient(
      circle at 15% 80%,
      rgba(14, 165, 233, 0.08),
      transparent 30%
    ),
    var(--color-background, #f7f8fa);
}

.service-details-hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -180px;
  top: -180px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.06);
  pointer-events: none;
}

.service-details-hero .container {
  position: relative;
  z-index: 1;
}

.service-details-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 42px;
  color: var(--color-text-muted, #6b7280);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.service-details-back-link:hover {
  color: var(--color-primary, #111827);
  transform: translateX(-3px);
}

.service-details-category {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
}

.service-details-category span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 13px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--color-primary, #111827);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.service-details-hero h1 {
  max-width: 900px;
  margin: 0 0 20px;
  color: var(--color-heading, #111827);
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.service-details-hero > .container > p {
  max-width: 760px;
  margin: 0;
  color: var(--color-text-muted, #667085);
  font-size: 19px;
  line-height: 1.7;
}

/* ============================================================
   CONTENT
   ============================================================ */

.service-details-content {
  padding: 90px 0;
  background: #ffffff;
}

.service-details-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 32px;
  align-items: start;
}

.service-details-main {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-details-sidebar {
  position: sticky;
  top: 110px;
}

/* ============================================================
   CARDS
   ============================================================ */

.service-details-card {
  padding: 34px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 24px;
  background: #ffffff;
  box-shadow:
    0 10px 30px rgba(17, 24, 39, 0.04),
    0 2px 8px rgba(17, 24, 39, 0.03);
}

.service-details-card .section-label {
  display: block;
  margin-bottom: 14px;
}

.service-details-card h2 {
  margin: 0 0 18px;
  color: var(--color-heading, #111827);
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.service-details-card > p {
  margin: 0;
  color: var(--color-text-muted, #667085);
  font-size: 16px;
  line-height: 1.8;
}

/* ============================================================
   PROVIDER PROFILE
   ============================================================ */

.service-provider-profile {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 8px;
}

.service-provider-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 62px;
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: #111827;
  color: #ffffff;
  font-size: 23px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.14);
}

.service-provider-info {
  min-width: 0;
}

.service-provider-info h3 {
  margin: 0 0 5px;
  color: var(--color-heading, #111827);
  font-size: 18px;
  font-weight: 700;
}

.service-provider-info p {
  margin: 0;
  color: var(--color-text-muted, #667085);
  font-size: 14px;
  line-height: 1.5;
}

/* ============================================================
   DETAIL INFORMATION
   ============================================================ */

.service-detail-info-list {
  display: flex;
  flex-direction: column;
  margin-top: 8px;
}

.service-detail-info-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

.service-detail-info-row:first-child {
  padding-top: 5px;
}

.service-detail-info-row:last-child {
  border-bottom: 0;
  padding-bottom: 5px;
}

.service-detail-info-row span {
  color: var(--color-text-muted, #667085);
  font-size: 14px;
}

.service-detail-info-row strong {
  max-width: 190px;
  color: var(--color-heading, #111827);
  font-size: 14px;
  font-weight: 700;
  text-align: right;
  line-height: 1.5;
}

/* ============================================================
   ACTIONS
   ============================================================ */

.service-details-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

.service-details-actions .btn {
  width: 100%;
  min-height: 50px;
  justify-content: center;
}

.service-contact-button {
  border-radius: 12px;
}

.service-save-button {
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 12px;
  background: #ffffff;
  color: var(--color-heading, #111827);
  font-weight: 700;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.service-save-button:hover {
  border-color: rgba(17, 24, 39, 0.2);
  background: #f8fafc;
  transform: translateY(-1px);
}

.service-save-button.saved {
  border-color: rgba(16, 185, 129, 0.25);
  background: rgba(16, 185, 129, 0.08);
  color: #047857;
}

/* ============================================================
   EMPTY STATE
   ============================================================ */

.service-details-empty {
  padding: 100px 0;
  background: #ffffff;
}

.service-details-empty-card {
  max-width: 650px;
  margin: 0 auto;
  padding: 60px 40px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 28px;
  background: #ffffff;
  text-align: center;
  box-shadow: 0 15px 40px rgba(17, 24, 39, 0.05);
}

.service-details-empty-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  border-radius: 20px;
  background: #f3f4f6;
  color: #111827;
  font-size: 26px;
}

.service-details-empty-card h2 {
  margin: 0 0 14px;
  color: var(--color-heading, #111827);
  font-size: 32px;
  letter-spacing: -0.025em;
}

.service-details-empty-card p {
  max-width: 500px;
  margin: 0 auto 28px;
  color: var(--color-text-muted, #667085);
  font-size: 16px;
  line-height: 1.7;
}

/* ============================================================
   CTA
   ============================================================ */

.service-details-cta {
  padding: 110px 0;
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(99, 102, 241, 0.12),
      transparent 30%
    ),
    #111827;
  color: #ffffff;
  text-align: center;
}

.service-details-cta .container {
  max-width: 850px;
}

.service-details-cta .section-label {
  color: rgba(255, 255, 255, 0.55);
}

.service-details-cta h2 {
  margin: 12px 0 16px;
  color: #ffffff;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.service-details-cta p {
  max-width: 600px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
  line-height: 1.7;
}

.service-details-cta .btn {
  min-width: 170px;
}

/* ============================================================
   BUTTON DISABLED STATE
   ============================================================ */

.service-details-actions .btn:disabled {
  cursor: not-allowed;
  opacity: 0.5;
  transform: none;
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */

.service-details-page button:focus-visible,
.service-details-page a:focus-visible {
  outline: 3px solid rgba(99, 102, 241, 0.35);
  outline-offset: 3px;
}

/* ============================================================
   VEXYRA CONTACT PROVIDER DIALOG
   ============================================================ */

.vexyra-contact-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 24px;

  background: rgba(7, 12, 24, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  animation: vexyraContactOverlayIn 0.2s ease-out;
}

.vexyra-contact-dialog {
  position: relative;

  width: min(100%, 560px);
  max-height: calc(100vh - 48px);

  overflow-y: auto;

  padding: 38px;

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;

  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.98),
    rgba(247, 249, 252, 0.98)
  );

  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.28),
    0 8px 30px rgba(0, 0, 0, 0.12);

  animation: vexyraContactDialogIn 0.25s ease-out;
}

/* ------------------------------------------------------------
   CLOSE BUTTON
   ------------------------------------------------------------ */

.vexyra-contact-close {
  position: absolute;
  top: 18px;
  right: 18px;

  width: 40px;
  height: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;

  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 50%;

  background: rgba(0, 0, 0, 0.04);

  color: #1b2230;

  font-size: 25px;
  line-height: 1;

  cursor: pointer;

  transition:
    background 0.2s ease,
    transform 0.2s ease,
    border-color 0.2s ease;
}

.vexyra-contact-close:hover {
  background: rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.14);

  transform: rotate(90deg);
}

.vexyra-contact-close:focus-visible {
  outline: 3px solid rgba(0, 0, 0, 0.16);
  outline-offset: 3px;
}

/* ------------------------------------------------------------
   TITLE
   ------------------------------------------------------------ */

.vexyra-contact-dialog .section-label {
  display: inline-block;

  margin-bottom: 12px;

  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.vexyra-contact-dialog h2 {
  margin: 0 45px 10px 0;

  color: #101522;

  font-size: clamp(1.55rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
}

.vexyra-contact-service {
  margin: 0 0 28px;

  color: #667085;

  font-size: 0.98rem;
  line-height: 1.6;
}

.vexyra-contact-service strong {
  color: #151a26;
  font-weight: 700;
}

/* ------------------------------------------------------------
   PROVIDER INFORMATION
   ------------------------------------------------------------ */

.vexyra-contact-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  padding: 15px 0;

  border-bottom: 1px solid rgba(16, 24, 40, 0.08);
}

.vexyra-contact-meta:first-of-type {
  border-top: 1px solid rgba(16, 24, 40, 0.08);
}

.vexyra-contact-meta span {
  color: #7a8494;

  font-size: 0.88rem;
  font-weight: 600;
}

.vexyra-contact-meta strong {
  color: #202633;

  font-size: 0.92rem;
  font-weight: 700;

  text-align: right;
}

/* ------------------------------------------------------------
   MESSAGE LABEL
   ------------------------------------------------------------ */

.vexyra-contact-label {
  display: block;

  margin: 28px 0 9px;

  color: #1b2230;

  font-size: 0.9rem;
  font-weight: 750;
}

/* ------------------------------------------------------------
   MESSAGE INPUT
   ------------------------------------------------------------ */

.vexyra-contact-message {
  display: block;

  width: 100%;
  min-height: 135px;

  padding: 15px 16px;

  resize: vertical;

  border: 1px solid #d8dde6;
  border-radius: 14px;

  background: #ffffff;

  color: #151a26;

  font-family: inherit;
  font-size: 0.95rem;
  line-height: 1.55;

  box-sizing: border-box;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.vexyra-contact-message::placeholder {
  color: #98a2b3;
}

.vexyra-contact-message:hover {
  border-color: #b9c1ce;
}

.vexyra-contact-message:focus {
  outline: none;

  border-color: #7b8494;

  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.06);

  background: #ffffff;
}

/* ------------------------------------------------------------
   ACTIONS
   ------------------------------------------------------------ */

.vexyra-contact-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;

  margin-top: 22px;
}

.vexyra-contact-actions .btn {
  min-height: 46px;
  padding: 0 20px;

  border-radius: 12px;

  font-weight: 700;
}

/* ------------------------------------------------------------
   STATUS MESSAGE
   ------------------------------------------------------------ */

.vexyra-contact-status {
  margin: 15px 0 0;

  padding: 12px 14px;

  border-radius: 10px;

  background: rgba(16, 24, 40, 0.05);

  color: #475467;

  font-size: 0.88rem;
  line-height: 1.5;
}

/* ------------------------------------------------------------
   ANIMATIONS
   ------------------------------------------------------------ */

@keyframes vexyraContactOverlayIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes vexyraContactDialogIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ============================================================
   VEXYRA PROFESSIONALS PAGE
   ------------------------------------------------------------
   Premium desktop / base styling
   Responsive overrides belong in responsive.css
   ============================================================ */

/* ============================================================
   01. PROFESSIONALS HERO
   ============================================================ */

.professionals-hero {
  position: relative;
  overflow: hidden;
  padding: 105px 0 95px;
  background:
    radial-gradient(
      circle at 82% 25%,
      rgba(108, 92, 231, 0.14),
      transparent 32%
    ),
    radial-gradient(
      circle at 15% 75%,
      rgba(108, 92, 231, 0.07),
      transparent 30%
    ),
    var(--color-background);
}

.professionals-hero::before {
  position: absolute;
  top: -180px;
  right: -150px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(108, 92, 231, 0.1);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.professionals-hero::after {
  position: absolute;
  right: 40px;
  bottom: -230px;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(108, 92, 231, 0.07);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.professionals-hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.professionals-hero-content .section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.professionals-hero-content .section-label::before {
  width: 28px;
  height: 1px;
  background: var(--color-primary);
  content: "";
}

.professionals-hero-content h1 {
  max-width: 820px;
  margin: 20px 0 0;
  color: var(--color-text);
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.professionals-hero-content h1 span {
  display: block;
  color: var(--color-primary);
}

.professionals-hero-content p {
  max-width: 650px;
  margin: 25px 0 0;
  color: var(--color-text-secondary);
  font-size: 17px;
  line-height: 1.75;
}

/* ============================================================
   02. PROFESSIONAL SEARCH
   ============================================================ */

.professionals-search-section {
  position: relative;
  z-index: 5;
  margin-top: -38px;
  padding-bottom: 85px;
}

.professionals-search-card {
  display: grid;
  grid-template-columns:
    minmax(280px, 1.8fr) minmax(190px, 1fr) minmax(170px, 0.9fr)
    auto;
  align-items: center;
  gap: 12px;
  padding: 13px;

  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(20, 20, 30, 0.08);
  border-radius: 22px;
  box-shadow:
    0 24px 70px rgba(20, 20, 40, 0.1),
    0 5px 18px rgba(20, 20, 40, 0.05);
  backdrop-filter: blur(18px);
}

.professionals-search-field {
  display: flex;
  align-items: center;
  min-width: 0;
  min-height: 56px;
  padding: 0 17px;
  background: #fafafd;
  border: 1px solid rgba(20, 20, 30, 0.07);
  border-radius: 15px;
  transition:
    border-color var(--transition-fast),
    background var(--transition-fast),
    box-shadow var(--transition-fast);
}

.professionals-search-field:focus-within {
  background: #ffffff;
  border-color: rgba(108, 92, 231, 0.45);
  box-shadow: 0 0 0 4px rgba(108, 92, 231, 0.08);
}

.professionals-search-icon {
  flex: 0 0 auto;
  margin-right: 11px;
  color: var(--color-primary);
  font-size: 23px;
  line-height: 1;
}

.professionals-search-field input {
  width: 100%;
  min-width: 0;
  padding: 0;
  background: transparent;
  border: 0;
  outline: 0;
  color: var(--color-text);
  font-family: inherit;
  font-size: 14px;
}

.professionals-search-field input::placeholder {
  color: #9b9aa8;
}

.professionals-filter-field {
  position: relative;
  min-width: 0;
}

.professionals-filter-field::after {
  position: absolute;
  top: 50%;
  right: 17px;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid var(--color-text-secondary);
  border-bottom: 1.5px solid var(--color-text-secondary);
  transform: translateY(-65%) rotate(45deg);
  content: "";
  pointer-events: none;
}

.professionals-filter-field select {
  width: 100%;
  min-height: 56px;
  padding: 0 42px 0 16px;
  appearance: none;
  background: #fafafd;
  border: 1px solid rgba(20, 20, 30, 0.07);
  border-radius: 15px;
  outline: 0;
  color: var(--color-text);
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  transition:
    border-color var(--transition-fast),
    background var(--transition-fast),
    box-shadow var(--transition-fast);
}

.professionals-filter-field select:hover {
  background: #ffffff;
  border-color: rgba(108, 92, 231, 0.25);
}

.professionals-filter-field select:focus {
  background: #ffffff;
  border-color: rgba(108, 92, 231, 0.45);
  box-shadow: 0 0 0 4px rgba(108, 92, 231, 0.08);
}

.professionals-search-button {
  min-height: 56px;
  padding: 0 25px;
  border-radius: 15px;
  white-space: nowrap;
}

/* ============================================================
   03. PROFESSIONAL LISTING SECTION
   ============================================================ */

.professionals-listing-section {
  padding: 95px 0;
  background: linear-gradient(
    180deg,
    var(--color-background) 0%,
    rgba(108, 92, 231, 0.025) 100%
  );
}

.professionals-listing-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 45px;
}

.professionals-listing-header h2 {
  margin: 13px 0 0;
  color: var(--color-text);
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.professionals-listing-header p {
  max-width: 600px;
  margin: 12px 0 0;
  color: var(--color-text-secondary);
  font-size: 15px;
  line-height: 1.7;
}

.professional-result-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 17px;
  background: rgba(108, 92, 231, 0.07);
  border: 1px solid rgba(108, 92, 231, 0.12);
  border-radius: 999px;
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* ============================================================
   04. PROFESSIONAL GRID
   ============================================================ */

.professional-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

/* ============================================================
   05. PROFESSIONAL CARD
   ============================================================ */

.professional-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  min-height: 315px;
  padding: 25px;
  overflow: hidden;

  background: #ffffff;
  border: 1px solid rgba(20, 20, 30, 0.075);
  border-radius: 22px;

  box-shadow: 0 8px 28px rgba(20, 20, 40, 0.045);

  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.professional-card::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 115px;
  height: 115px;
  background: radial-gradient(circle, rgba(108, 92, 231, 0.1), transparent 70%);
  content: "";
  pointer-events: none;
}

.professional-card:hover {
  transform: translateY(-6px);
  border-color: rgba(108, 92, 231, 0.18);
  box-shadow:
    0 20px 45px rgba(20, 20, 40, 0.09),
    0 4px 15px rgba(108, 92, 231, 0.06);
}

/* ============================================================
   06. PROFESSIONAL CARD TOP
   ============================================================ */

.professional-card-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 15px;
}

.professional-card-avatar {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  overflow: hidden;
  background: linear-gradient(
    145deg,
    rgba(108, 92, 231, 0.16),
    rgba(108, 92, 231, 0.06)
  );
  border: 1px solid rgba(108, 92, 231, 0.13);
  border-radius: 18px;
  color: var(--color-primary);
  font-size: 21px;
  font-weight: 700;
}

.professional-card-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.professional-card-heading {
  min-width: 0;
}

.professional-card-category {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  color: var(--color-primary);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.4;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.professional-card-heading h3 {
  margin: 5px 0 0;
  overflow: hidden;
  color: var(--color-text);
  font-size: 19px;
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ============================================================
   07. PROFESSIONAL CARD BODY
   ============================================================ */

.professional-card-body {
  position: relative;
  z-index: 1;
  flex: 1;
  margin-top: 22px;
}

.professional-card-title {
  color: var(--color-text);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}

.professional-card-description {
  margin: 9px 0 0;
  color: var(--color-text-secondary);
  font-size: 13px;
  line-height: 1.7;
}

.professional-card-location {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 17px;
  color: var(--color-text-secondary);
  font-size: 12px;
}

.professional-card-location span:first-child {
  color: var(--color-primary);
}

/* ============================================================
   08. PROFESSIONAL CARD SKILLS
   ============================================================ */

.professional-card-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 17px;
}

.professional-card-skill {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 0 10px;
  background: #f7f6fb;
  border: 1px solid rgba(20, 20, 30, 0.055);
  border-radius: 999px;
  color: var(--color-text-secondary);
  font-size: 10px;
  font-weight: 600;
}

/* ============================================================
   09. VERIFIED BADGE
   ============================================================ */

.professional-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-left: 7px;
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 700;
  vertical-align: middle;
}

.professional-verified-badge::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgba(108, 92, 231, 0.12);
  content: "✓";
  font-size: 9px;
}

/* ============================================================
   10. PROFESSIONAL CARD FOOTER
   ============================================================ */

.professional-card-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 22px;
  padding-top: 17px;
  border-top: 1px solid rgba(20, 20, 30, 0.065);
}

.professional-view-button {
  min-height: 43px;
  padding: 0 17px;
  border-radius: 12px;
  font-size: 12px;
}

.professional-view-button span {
  margin-left: 6px;
  transition: transform 180ms ease;
}

.professional-view-button:hover span {
  transform: translateX(3px);
}

/* ============================================================
   11. PROFESSIONAL STATE CARDS
   ============================================================ */

.professional-state-card {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  min-height: 270px;
  padding: 45px 30px;
  text-align: center;

  background: rgba(255, 255, 255, 0.75);
  border: 1px dashed rgba(108, 92, 231, 0.2);
  border-radius: 22px;
}

.professional-state-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  background: rgba(108, 92, 231, 0.08);
  border-radius: 50%;
  color: var(--color-primary);
  font-size: 25px;
}

.professional-state-card h3 {
  margin: 0;
  color: var(--color-text);
  font-size: 21px;
  font-weight: 650;
}

.professional-state-card p {
  max-width: 440px;
  margin: 9px auto 0;
  color: var(--color-text-secondary);
  font-size: 13px;
  line-height: 1.65;
}

/* ============================================================
   12. PROFESSIONAL CTA
   ============================================================ */

.professionals-owner-cta {
  position: relative;
  overflow: hidden;
  padding: 95px 0;
  background:
    radial-gradient(
      circle at 80% 50%,
      rgba(108, 92, 231, 0.13),
      transparent 32%
    ),
    var(--color-background);
}

.professionals-owner-cta-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 52px 58px;
  overflow: hidden;

  background: linear-gradient(
    135deg,
    rgba(108, 92, 231, 0.09),
    rgba(108, 92, 231, 0.025)
  );

  border: 1px solid rgba(108, 92, 231, 0.15);
  border-radius: 28px;
}

.professionals-owner-cta-card::after {
  position: absolute;
  right: -80px;
  bottom: -180px;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(108, 92, 231, 0.1);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.professionals-owner-cta-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.professionals-owner-cta-content h2 {
  margin: 14px 0 0;
  color: var(--color-text);
  font-size: clamp(30px, 4vw, 45px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.professionals-owner-cta-content h2 span {
  color: var(--color-primary);
}

.professionals-owner-cta-content p {
  max-width: 620px;
  margin: 15px 0 0;
  color: var(--color-text-secondary);
  font-size: 14px;
  line-height: 1.75;
}

.professionals-owner-cta-card .btn {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  min-height: 52px;
  padding: 0 23px;
  border-radius: 14px;
  white-space: nowrap;
}

.professionals-owner-cta-card .btn span {
  margin-left: 7px;
}

/* ============================================================
   13. HOVER POLISH
   ============================================================ */

.professional-card,
.professionals-search-field,
.professionals-filter-field select,
.professionals-search-button,
.professional-view-button,
.professionals-owner-cta-card .btn {
  -webkit-tap-highlight-color: transparent;
}

.professional-card:focus-within {
  border-color: rgba(108, 92, 231, 0.22);
}

/* ============================================================
   14. REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  .professional-card,
  .professionals-search-field,
  .professionals-filter-field select,
  .professional-view-button span {
    transition: none !important;
  }
}

/* ============================================================
   VEXYRA — ABOUT PAGE
   Premium / Editorial / Modern
   ============================================================ */

/* ============================================================
   ABOUT HERO
   ============================================================ */

.about-hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 110px;
  background:
    radial-gradient(
      circle at 78% 20%,
      rgba(108, 92, 231, 0.22),
      transparent 28%
    ),
    radial-gradient(
      circle at 15% 70%,
      rgba(0, 184, 148, 0.12),
      transparent 30%
    ),
    linear-gradient(135deg, #f8f9ff 0%, #ffffff 48%, #f5f3ff 100%);
}

.about-hero::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  right: -180px;
  top: -180px;
  border: 1px solid rgba(108, 92, 231, 0.14);
  border-radius: 50%;
}

.about-hero::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  left: -180px;
  bottom: -180px;
  border: 1px solid rgba(108, 92, 231, 0.1);
  border-radius: 50%;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 950px;
}

.about-hero-content .section-label {
  display: inline-flex;
  margin-bottom: 26px;
  padding: 9px 15px;
  border: 1px solid rgba(108, 92, 231, 0.18);
  border-radius: 999px;
  background: rgba(108, 92, 231, 0.06);
  color: #6c5ce7;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.about-hero h1 {
  max-width: 900px;
  margin: 0;
  color: #17152a;
  font-size: clamp(3.5rem, 7vw, 7.2rem);
  line-height: 0.96;
  letter-spacing: -0.065em;
  font-weight: 800;
}

.about-hero h1 span {
  display: block;
  color: #6c5ce7;
}

.about-hero-description {
  max-width: 720px;
  margin: 38px 0 0;
  color: #38364a;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.7;
}

.about-hero-supporting {
  max-width: 680px;
  margin: 20px 0 0;
  color: #777487;
  font-size: 1rem;
  line-height: 1.8;
}

.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.about-hero-actions .btn {
  min-height: 52px;
  padding: 0 24px;
}

/* ============================================================
   ABOUT INTRO
   ============================================================ */

.about-intro {
  padding: 125px 0;
  background: #ffffff;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1.15fr);
  gap: 100px;
  align-items: start;
}

.about-intro-heading {
  position: sticky;
  top: 120px;
}

.about-intro-heading h2 {
  max-width: 540px;
  margin: 22px 0 0;
  color: #17152a;
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.about-intro-heading h2 span {
  display: block;
  color: #6c5ce7;
}

.about-intro-content {
  padding-top: 10px;
}

.about-intro-content p {
  max-width: 700px;
  margin: 0 0 25px;
  color: #686577;
  font-size: 1.08rem;
  line-height: 1.9;
}

.about-intro-content .about-large-text {
  margin-bottom: 28px;
  color: #201e31;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.35;
}

.about-intro-content .about-highlight {
  margin-top: 42px;
  padding-left: 24px;
  border-left: 4px solid #6c5ce7;
  color: #6c5ce7;
  font-size: 1.35rem;
  font-weight: 700;
}

/* ============================================================
   COMMON SECTION HEADING
   ============================================================ */

.about-section-heading {
  max-width: 820px;
  margin: 0 auto 65px;
  text-align: center;
}

.about-section-heading .section-label,
.about-platform-heading .section-label {
  display: inline-block;
  margin-bottom: 18px;
}

.about-section-heading h2,
.about-platform-heading h2 {
  margin: 0;
  color: #17152a;
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.about-section-heading h2 span,
.about-platform-heading h2 span {
  color: #6c5ce7;
}

.about-section-heading p,
.about-platform-heading > p {
  max-width: 700px;
  margin: 25px auto 0;
  color: #777487;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ============================================================
   PROBLEM
   ============================================================ */

.about-problem {
  position: relative;
  padding: 125px 0;
  background: #f7f7fb;
  overflow: hidden;
}

.about-problem::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  top: -200px;
  right: -150px;
  border-radius: 50%;
  background: rgba(108, 92, 231, 0.08);
  filter: blur(10px);
}

.about-problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.about-problem-card {
  position: relative;
  min-height: 330px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid rgba(30, 28, 45, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 55px rgba(33, 29, 66, 0.06);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.about-problem-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(33, 29, 66, 0.11);
}

.about-problem-number {
  position: absolute;
  top: 25px;
  right: 28px;
  color: rgba(108, 92, 231, 0.14);
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.about-problem-icon {
  display: flex;
  width: 62px;
  height: 62px;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  border-radius: 18px;
  background: rgba(108, 92, 231, 0.09);
  font-size: 1.7rem;
}

.about-problem-card h3 {
  margin: 0 0 15px;
  color: #201e31;
  font-size: 1.3rem;
}

.about-problem-card p {
  margin: 0;
  color: #777487;
  line-height: 1.75;
}

/* ============================================================
   PLATFORM
   ============================================================ */

.about-platform {
  padding: 130px 0;
  background: #ffffff;
}

.about-platform-heading {
  max-width: 850px;
  margin: 0 auto 65px;
  text-align: center;
}

.about-platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.about-platform-card {
  position: relative;
  display: flex;
  min-height: 390px;
  flex-direction: column;
  padding: 34px;
  overflow: hidden;
  border: 1px solid rgba(108, 92, 231, 0.12);
  border-radius: 26px;
  background: linear-gradient(145deg, #ffffff 0%, #f9f8ff 100%);
  box-shadow: 0 20px 60px rgba(40, 35, 80, 0.06);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.about-platform-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -80px;
  top: -80px;
  border-radius: 50%;
  background: rgba(108, 92, 231, 0.08);
}

.about-platform-card:hover {
  transform: translateY(-9px);
  border-color: rgba(108, 92, 231, 0.25);
  box-shadow: 0 30px 75px rgba(40, 35, 80, 0.11);
}

.about-platform-card-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.about-platform-icon {
  display: flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  border-radius: 19px;
  background: rgba(108, 92, 231, 0.09);
  font-size: 1.7rem;
}

.about-platform-index {
  color: #c4c1d2;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.about-platform-card h3 {
  position: relative;
  margin: 35px 0 14px;
  color: #201e31;
  font-size: 1.55rem;
}

.about-platform-card p {
  position: relative;
  margin: 0;
  color: #777487;
  line-height: 1.75;
}

.about-platform-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-top: auto;
  padding-top: 30px;
  color: #6c5ce7;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.about-platform-link span {
  transition: transform 0.25s ease;
}

.about-platform-link:hover span {
  transform: translateX(5px);
}

/* ============================================================
   FLOW
   ============================================================ */

.about-flow {
  padding: 125px 0;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(108, 92, 231, 0.08),
      transparent 30%
    ),
    #f8f8fc;
}

.about-flow-steps {
  display: grid;
  grid-template-columns: 1fr 100px 1fr 100px 1fr;
  align-items: center;
  gap: 15px;
}

.about-flow-step {
  position: relative;
  min-height: 290px;
  padding: 35px;
  text-align: center;
  border: 1px solid rgba(30, 28, 45, 0.08);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 15px 45px rgba(35, 30, 70, 0.05);
}

.about-flow-number {
  position: absolute;
  top: 20px;
  left: 25px;
  color: #d0ccdf;
  font-size: 0.8rem;
  font-weight: 800;
}

.about-flow-icon {
  display: flex;
  width: 65px;
  height: 65px;
  align-items: center;
  justify-content: center;
  margin: 20px auto 24px;
  border-radius: 20px;
  background: rgba(108, 92, 231, 0.09);
  font-size: 1.65rem;
}

.about-flow-step h3 {
  margin: 0 0 13px;
  color: #201e31;
  font-size: 1.2rem;
}

.about-flow-step p {
  margin: 0;
  color: #777487;
  line-height: 1.7;
}

.about-flow-connector {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-flow-connector span {
  position: relative;
  width: 75px;
  height: 2px;
  background: rgba(108, 92, 231, 0.2);
}

.about-flow-connector span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -5px;
  transform: translateY(-52%);
  color: #6c5ce7;
  font-size: 1.1rem;
}

/* ============================================================
   TWO SIDES
   ============================================================ */

.about-two-sides {
  padding: 125px 0;
  background: #ffffff;
}

.about-two-sides-card {
  display: grid;
  grid-template-columns: 1fr 90px 1fr;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(30, 28, 45, 0.08);
  border-radius: 32px;
  background: #f8f8fc;
  box-shadow: 0 25px 80px rgba(35, 30, 70, 0.08);
}

.about-side {
  padding: 65px;
}

.about-side-needs {
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(108, 92, 231, 0.13),
      transparent 35%
    ),
    #ffffff;
}

.about-side-offer {
  background:
    radial-gradient(
      circle at 0% 100%,
      rgba(0, 184, 148, 0.09),
      transparent 35%
    ),
    #fafafd;
}

.about-side-icon {
  display: flex;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  border-radius: 18px;
  background: rgba(108, 92, 231, 0.09);
  font-size: 1.6rem;
}

.about-side h2 {
  max-width: 440px;
  margin: 20px 0;
  color: #201e31;
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.about-side h2 span {
  display: block;
  color: #6c5ce7;
}

.about-side p {
  max-width: 490px;
  margin: 0 0 30px;
  color: #777487;
  line-height: 1.8;
}

.about-side-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4f3f9;
}

.about-side-divider span {
  display: flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(108, 92, 231, 0.14);
  border-radius: 50%;
  background: #ffffff;
  color: #6c5ce7;
  font-size: 0.72rem;
  font-weight: 800;
}

/* ============================================================
   INDIA
   ============================================================ */

.about-india {
  position: relative;
  padding: 145px 0;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 80% 30%,
      rgba(108, 92, 231, 0.25),
      transparent 30%
    ),
    radial-gradient(
      circle at 20% 80%,
      rgba(0, 184, 148, 0.14),
      transparent 25%
    ),
    #17152a;
}

.about-india::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  top: -320px;
  right: -180px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.about-india-content {
  position: relative;
  z-index: 1;
  max-width: 850px;
}

.about-india-content .section-label {
  color: #b8afff;
}

.about-india-content h2 {
  margin: 20px 0 30px;
  color: #ffffff;
  font-size: clamp(2.8rem, 6vw, 5.7rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.about-india-content h2 span {
  display: block;
  color: #9588ff;
}

.about-india-content p {
  max-width: 720px;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 1.05rem;
  line-height: 1.85;
}

.about-india-statement {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: baseline;
  margin-top: 45px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 1.2rem;
}

.about-india-statement strong {
  color: #ffffff;
  font-size: 2rem;
}

/* ============================================================
   PRINCIPLES
   ============================================================ */

.about-principles {
  padding: 125px 0;
  background: #ffffff;
}

.about-principles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.about-principle {
  padding: 34px 28px;
  border: 1px solid rgba(30, 28, 45, 0.08);
  border-radius: 22px;
  background: #ffffff;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.about-principle:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 55px rgba(35, 30, 70, 0.08);
}

.about-principle-icon {
  display: flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  border-radius: 16px;
  background: rgba(108, 92, 231, 0.08);
  font-size: 1.4rem;
}

.about-principle h3 {
  margin: 0 0 12px;
  color: #201e31;
  font-size: 1.2rem;
}

.about-principle p {
  margin: 0;
  color: #777487;
  line-height: 1.7;
}

/* ============================================================
   VISION
   ============================================================ */

.about-vision {
  padding: 125px 0;
  background: #f7f7fb;
}

.about-vision-card {
  position: relative;
  max-width: 1050px;
  margin: auto;
  padding: 85px 90px;
  overflow: hidden;
  border: 1px solid rgba(108, 92, 231, 0.18);
  border-radius: 36px;
  background: linear-gradient(135deg, #211d3c 0%, #302760 55%, #1d1934 100%);
  box-shadow: 0 35px 100px rgba(35, 27, 80, 0.18);
}

.about-vision-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  right: -170px;
  top: -220px;
  border-radius: 50%;
  background: rgba(108, 92, 231, 0.3);
  filter: blur(70px);
}

.about-vision-card > *:not(.about-vision-glow) {
  position: relative;
  z-index: 1;
}

.about-vision-card .section-label {
  color: #bdb5ff;
}

.about-vision-card h2 {
  max-width: 850px;
  margin: 22px 0 30px;
  color: #ffffff;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.about-vision-card h2 span {
  color: #a69bff;
}

.about-vision-card p {
  max-width: 780px;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 1.04rem;
  line-height: 1.85;
}

.about-vision-card .about-vision-highlight {
  margin-top: 35px;
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 700;
}

/* ============================================================
   FINAL CTA
   ============================================================ */

.about-final-cta {
  position: relative;
  padding: 145px 0;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 20% 30%,
      rgba(108, 92, 231, 0.14),
      transparent 30%
    ),
    radial-gradient(circle at 80% 70%, rgba(0, 184, 148, 0.1), transparent 28%),
    #ffffff;
}

.about-final-cta-content {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.about-final-cta-content h2 {
  margin: 20px 0 25px;
  color: #17152a;
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.about-final-cta-content h2 span {
  color: #6c5ce7;
}

.about-final-cta-content > p {
  max-width: 700px;
  margin: 0 auto;
  color: #777487;
  font-size: 1.08rem;
  line-height: 1.8;
}

.about-final-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 38px;
}

.about-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 10px;
  color: #6c5ce7;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

.about-text-link span {
  transition: transform 0.25s ease;
}

.about-text-link:hover span {
  transform: translateX(5px);
}

/* ============================================================
   GLOBAL POLISH FOR ABOUT PAGE
   ============================================================ */

.about-hero .btn,
.about-two-sides .btn,
.about-final-actions .btn {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.about-hero .btn:hover,
.about-two-sides .btn:hover,
.about-final-actions .btn:hover {
  transform: translateY(-2px);
}

.about-platform-card,
.about-problem-card,
.about-principle,
.about-flow-step,
.about-two-sides-card,
.about-vision-card {
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */

.about-hero a:focus-visible,
.about-platform-link:focus-visible,
.about-text-link:focus-visible {
  outline: 3px solid rgba(108, 92, 231, 0.35);
  outline-offset: 4px;
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  .about-problem-card,
  .about-platform-card,
  .about-principle,
  .about-hero .btn,
  .about-two-sides .btn,
  .about-final-actions .btn,
  .about-platform-link span,
  .about-text-link span {
    transition: none;
  }

  .about-problem-card:hover,
  .about-platform-card:hover,
  .about-principle:hover,
  .about-hero .btn:hover,
  .about-two-sides .btn:hover,
  .about-final-actions .btn:hover {
    transform: none;
  }
}

/* ============================================================
   VEXYRA CONTACT PAGE
   WOW / PREMIUM UI
   ------------------------------------------------------------
   Designed for:
   - contact.html
   - Existing VexYra global styles
   - responsive.css loaded after this file
   ============================================================ */

/* ============================================================
   CONTACT HERO
   ============================================================ */

.contact-hero {
  position: relative;
  overflow: hidden;
  padding: 150px 0 115px;
  background:
    radial-gradient(
      circle at 15% 25%,
      rgba(108, 92, 231, 0.16),
      transparent 32%
    ),
    radial-gradient(
      circle at 85% 15%,
      rgba(139, 92, 246, 0.12),
      transparent 28%
    ),
    linear-gradient(180deg, #f8f7ff 0%, #ffffff 100%);
}

.contact-hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  top: -260px;
  right: -150px;
  border: 1px solid rgba(108, 92, 231, 0.12);
  border-radius: 50%;
}

.contact-hero::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  bottom: -230px;
  left: -120px;
  border: 1px solid rgba(108, 92, 231, 0.1);
  border-radius: 50%;
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.contact-hero-content h1 {
  margin: 22px 0 28px;
  max-width: 850px;
  font-size: clamp(3.5rem, 7vw, 6.8rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
  font-weight: 800;
  color: #151329;
}

.contact-hero-content h1 span {
  display: block;
  color: #6c5ce7;
}

.contact-hero-content > p {
  max-width: 700px;
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.8;
  color: #68657a;
}

.contact-hero-line {
  display: flex;
  align-items: center;
  gap: 16px;
  width: min(420px, 100%);
  margin-top: 42px;
}

.contact-hero-line span {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, rgba(108, 92, 231, 0.35));
}

.contact-hero-line span:last-child {
  background: linear-gradient(90deg, rgba(108, 92, 231, 0.35), transparent);
}

.contact-hero-line strong {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #6c5ce7;
}

/* ============================================================
   SECTION HEADING
   ============================================================ */

.contact-section-heading {
  max-width: 780px;
  margin-bottom: 58px;
}

.contact-section-heading h2 {
  margin: 16px 0 20px;
  font-size: clamp(2.4rem, 4.5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
  color: #151329;
}

.contact-section-heading h2 span {
  display: block;
  color: #6c5ce7;
}

.contact-section-heading p {
  max-width: 700px;
  margin: 0;
  color: #777389;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ============================================================
   CONTACT OPTIONS
   ============================================================ */

.contact-options {
  position: relative;
  padding: 115px 0;
  background: #ffffff;
}

.contact-options-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.contact-option-card {
  position: relative;
  min-height: 360px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid #ebe9f4;
  border-radius: 26px;
  background: linear-gradient(145deg, #ffffff, #faf9ff);
  box-shadow: 0 16px 45px rgba(34, 28, 74, 0.06);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.contact-option-card::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  top: -80px;
  right: -70px;
  border-radius: 50%;
  background: rgba(108, 92, 231, 0.08);
  transition: transform 0.35s ease;
}

.contact-option-card:hover {
  transform: translateY(-8px);
  border-color: rgba(108, 92, 231, 0.25);
  box-shadow: 0 28px 65px rgba(67, 53, 145, 0.13);
}

.contact-option-card:hover::before {
  transform: scale(1.4);
}

.contact-option-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 28px;
  border: 1px solid rgba(108, 92, 231, 0.14);
  border-radius: 17px;
  background: #f3f1ff;
  font-size: 1.45rem;
}

.contact-option-number {
  display: block;
  margin-bottom: 12px;
  color: #aaa6bc;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.contact-option-card h3 {
  margin: 0 0 14px;
  color: #1b1930;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.contact-option-card p {
  margin: 0;
  color: #777389;
  line-height: 1.7;
  font-size: 0.94rem;
}

.contact-option-link {
  position: absolute;
  left: 30px;
  bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #6c5ce7;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
}

.contact-option-link span {
  transition: transform 0.2s ease;
}

.contact-option-link:hover span {
  transform: translateX(5px);
}

/* ============================================================
   CONTACT FORM SECTION
   ============================================================ */

.contact-form-section {
  position: relative;
  padding: 130px 0;
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(108, 92, 231, 0.12),
      transparent 28%
    ),
    #f8f7fc;
}

.contact-form-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(420px, 1.2fr);
  gap: 80px;
  align-items: start;
}

.contact-form-intro {
  position: sticky;
  top: 110px;
}

.contact-form-intro h2 {
  margin: 17px 0 22px;
  font-size: clamp(2.5rem, 4vw, 4.4rem);
  line-height: 1.03;
  letter-spacing: -0.055em;
  color: #17152c;
}

.contact-form-intro h2 span {
  display: block;
  color: #6c5ce7;
}

.contact-form-intro > p {
  max-width: 520px;
  margin: 0;
  color: #777389;
  line-height: 1.85;
}

.contact-form-note {
  display: flex;
  gap: 16px;
  margin-top: 38px;
  padding: 22px;
  border: 1px solid rgba(108, 92, 231, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
}

.contact-form-note-icon {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  background: #6c5ce7;
  color: #ffffff;
}

.contact-form-note strong {
  display: block;
  margin-bottom: 5px;
  color: #25223b;
}

.contact-form-note p {
  margin: 0;
  color: #858195;
  font-size: 0.88rem;
  line-height: 1.55;
}

/* ============================================================
   FORM CARD
   ============================================================ */

.contact-form-card {
  padding: 42px;
  border: 1px solid rgba(108, 92, 231, 0.12);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 30px 80px rgba(40, 34, 83, 0.1),
    0 4px 15px rgba(40, 34, 83, 0.04);
}

.contact-form-group {
  margin-bottom: 23px;
}

.contact-form-group label {
  display: block;
  margin-bottom: 9px;
  color: #29263d;
  font-size: 0.84rem;
  font-weight: 700;
}

.contact-form-group input,
.contact-form-group select,
.contact-form-group textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #e4e1ee;
  border-radius: 15px;
  outline: none;
  background: #fbfaff;
  color: #242137;
  font: inherit;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.contact-form-group input,
.contact-form-group select {
  height: 55px;
  padding: 0 16px;
}

.contact-form-group textarea {
  min-height: 170px;
  padding: 15px 16px;
  resize: vertical;
  line-height: 1.6;
}

.contact-form-group input::placeholder,
.contact-form-group textarea::placeholder {
  color: #aaa6b8;
}

.contact-form-group input:focus,
.contact-form-group select:focus,
.contact-form-group textarea:focus {
  border-color: #6c5ce7;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(108, 92, 231, 0.09);
}

.contact-submit-button {
  width: 100%;
  min-height: 58px;
  justify-content: center;
  margin-top: 5px;
  border: 0;
  cursor: pointer;
}

.contact-submit-button span {
  transition: transform 0.2s ease;
}

.contact-submit-button:hover span {
  transform: translateX(5px);
}

.contact-form-status {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 13px;
  background: #f2efff;
  color: #5b4bc4;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ============================================================
   DIRECT CONTACT
   ============================================================ */

.contact-direct {
  padding: 110px 0;
  background: #ffffff;
}

.contact-direct-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
  padding: 65px;
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(108, 92, 231, 0.2),
      transparent 32%
    ),
    linear-gradient(135deg, #17152e, #252041);
  box-shadow: 0 30px 80px rgba(27, 23, 62, 0.2);
}

.contact-direct-card::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -180px;
  bottom: -250px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.contact-direct-content {
  position: relative;
  z-index: 2;
}

.contact-direct-content .section-label {
  color: #aaa2ff;
}

.contact-direct-content h2 {
  margin: 18px 0;
  color: #ffffff;
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.contact-direct-content h2 span {
  display: block;
  color: #9b8cff;
}

.contact-direct-content p {
  max-width: 570px;
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
}

.contact-direct-details {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 16px;
}

.contact-direct-item {
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(12px);
}

.contact-direct-icon {
  display: grid;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  background: rgba(108, 92, 231, 0.25);
  color: #c5beff;
  font-size: 1.1rem;
}

.contact-direct-label {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-direct-item a,
.contact-direct-item strong {
  color: #ffffff;
  font-size: 0.95rem;
  text-decoration: none;
}

.contact-direct-item a:hover {
  color: #aaa2ff;
}

/* ============================================================
   FAQ
   ============================================================ */

.contact-faq {
  padding: 120px 0;
  background: #f8f7fc;
}

.contact-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.contact-faq-item {
  border: 1px solid #e7e4ef;
  border-radius: 18px;
  background: #ffffff;
  overflow: hidden;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-faq-item:hover {
  border-color: rgba(108, 92, 231, 0.25);
}

.contact-faq-item[open] {
  box-shadow: 0 15px 40px rgba(48, 41, 93, 0.07);
}

.contact-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 23px 25px;
  cursor: pointer;
  list-style: none;
  color: #25223a;
  font-size: 0.96rem;
  font-weight: 700;
}

.contact-faq-item summary::-webkit-details-marker {
  display: none;
}

.contact-faq-item summary span {
  display: grid;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 9px;
  background: #f1efff;
  color: #6c5ce7;
  font-size: 1.1rem;
  transition: transform 0.25s ease;
}

.contact-faq-item[open] summary span {
  transform: rotate(45deg);
}

.contact-faq-item p {
  margin: 0;
  padding: 0 25px 25px;
  color: #777389;
  line-height: 1.75;
  font-size: 0.92rem;
}

/* ============================================================
   FINAL CTA
   ============================================================ */

.contact-final-cta {
  padding: 120px 0 140px;
  background: #ffffff;
}

.contact-final-card {
  position: relative;
  overflow: hidden;
  padding: 90px 70px;
  border-radius: 38px;
  text-align: center;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(108, 92, 231, 0.32),
      transparent 38%
    ),
    linear-gradient(135deg, #16142c, #282347);
  box-shadow: 0 35px 90px rgba(35, 29, 77, 0.18);
}

.contact-final-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  left: 50%;
  top: -200px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(108, 92, 231, 0.25);
  filter: blur(40px);
}

.contact-final-card > *:not(.contact-final-glow) {
  position: relative;
  z-index: 2;
}

.contact-final-card .section-label {
  color: #aaa2ff;
}

.contact-final-card h2 {
  max-width: 900px;
  margin: 20px auto;
  color: #ffffff;
  font-size: clamp(2.8rem, 5vw, 5.4rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.contact-final-card h2 span {
  display: block;
  color: #9e91ff;
}

.contact-final-card > p {
  max-width: 650px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  font-size: 1rem;
}

.contact-final-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 35px;
}

.contact-text-link,
.contact-final-actions .about-text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-left: 8px;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.contact-final-actions .about-text-link span {
  transition: transform 0.2s ease;
}

.contact-final-actions .about-text-link:hover span {
  transform: translateX(5px);
}

/* ============================================================
   SMALL VISUAL POLISH
   ============================================================ */

.contact-options,
.contact-form-section,
.contact-direct,
.contact-faq,
.contact-final-cta {
  isolation: isolate;
}

.contact-option-card,
.contact-form-card,
.contact-direct-card,
.contact-faq-item,
.contact-final-card {
  will-change: transform;
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */

.contact-option-link:focus-visible,
.contact-direct-item a:focus-visible,
.contact-faq-item summary:focus-visible,
.contact-final-actions a:focus-visible {
  outline: 3px solid rgba(108, 92, 231, 0.35);
  outline-offset: 4px;
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  .contact-option-card,
  .contact-option-card::before,
  .contact-option-link span,
  .contact-submit-button span,
  .contact-faq-item,
  .contact-faq-item summary span {
    transition: none;
  }
}

/* =========================================================
   VEXYRA HELP CENTER
   Premium / Modern / High-Impact Styling
   ========================================================= */

/* =========================================================
   HELP HERO
   ========================================================= */

.help-hero {
  position: relative;
  overflow: hidden;
  padding: 120px 0 90px;
  background:
    radial-gradient(
      circle at 12% 20%,
      rgba(108, 92, 231, 0.18),
      transparent 32%
    ),
    radial-gradient(
      circle at 88% 10%,
      rgba(159, 122, 234, 0.14),
      transparent 30%
    ),
    linear-gradient(135deg, #faf9ff 0%, #f4f1ff 48%, #ffffff 100%);
  border-bottom: 1px solid rgba(108, 92, 231, 0.08);
}

.help-hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  top: -260px;
  right: -180px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(108, 92, 231, 0.12),
    transparent 68%
  );
  pointer-events: none;
}

.help-hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  bottom: -260px;
  left: -180px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(108, 92, 231, 0.08),
    transparent 68%
  );
  pointer-events: none;
}

.help-hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.help-hero-content .section-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  padding: 8px 16px;
  border: 1px solid rgba(108, 92, 231, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: #6c5ce7;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  box-shadow: 0 8px 30px rgba(108, 92, 231, 0.08);
}

.help-hero h1 {
  margin: 0;
  font-size: clamp(48px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 800;
  color: #151329;
}

.help-hero h1 span {
  display: inline-block;
  color: #6c5ce7;
}

.help-hero-content > p {
  max-width: 700px;
  margin: 28px auto 0;
  color: #69677a;
  font-size: 18px;
  line-height: 1.75;
}

/* =========================================================
   HELP SEARCH
   ========================================================= */

.help-search-wrapper {
  position: relative;
  z-index: 5;
  max-width: 850px;
  margin: 48px auto 0;
}

.help-search-box {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(108, 92, 231, 0.16);
  border-radius: 22px;
  box-shadow:
    0 25px 70px rgba(44, 35, 100, 0.12),
    0 5px 20px rgba(44, 35, 100, 0.06);
  backdrop-filter: blur(18px);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.help-search-box:focus-within {
  border-color: rgba(108, 92, 231, 0.45);
  box-shadow:
    0 30px 80px rgba(108, 92, 231, 0.16),
    0 0 0 5px rgba(108, 92, 231, 0.07);
  transform: translateY(-2px);
}

.help-search-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 15px;
  background: #f1efff;
  color: #6c5ce7;
  font-size: 28px;
}

.help-search-box input {
  flex: 1;
  min-width: 0;
  height: 54px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #17152a;
  font-size: 16px;
}

.help-search-box input::placeholder {
  color: #9b99a8;
}

.help-search-button {
  min-width: 120px;
  height: 54px;
  padding: 0 22px;
  border: 0;
  border-radius: 15px;
  background: #6c5ce7;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(108, 92, 231, 0.25);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.help-search-button:hover {
  transform: translateY(-2px);
  background: #5c4bd6;
  box-shadow: 0 15px 30px rgba(108, 92, 231, 0.32);
}

.help-search-hint {
  margin: 16px 0 0;
  text-align: center;
  color: #888596;
  font-size: 13px;
}

.help-search-hint span {
  color: #6c5ce7;
  font-weight: 700;
}

/* =========================================================
   COMMON HELP HEADINGS
   ========================================================= */

.help-section-heading {
  max-width: 760px;
  margin-bottom: 54px;
}

.help-section-heading h2,
.help-detail-header h2,
.help-topic-intro h2,
.help-safety-intro h2 {
  margin: 14px 0 18px;
  color: #17152a;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.help-section-heading h2 span,
.help-detail-header h2 span,
.help-topic-intro h2 span,
.help-safety-intro h2 span {
  color: #6c5ce7;
}

.help-section-heading p,
.help-detail-header p,
.help-topic-intro p,
.help-safety-intro p {
  color: #747184;
  font-size: 16px;
  line-height: 1.75;
}

/* =========================================================
   QUICK ACCESS
   ========================================================= */

.help-quick-access {
  padding: 110px 0;
  background: #ffffff;
}

.help-category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.help-category-card {
  position: relative;
  min-height: 285px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid #eceaf5;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 35px rgba(27, 22, 63, 0.045);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.help-category-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -80px;
  top: -80px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(108, 92, 231, 0.13),
    transparent 70%
  );
  transition: transform 0.4s ease;
}

.help-category-card:hover {
  transform: translateY(-8px);
  border-color: rgba(108, 92, 231, 0.22);
  box-shadow:
    0 25px 55px rgba(34, 28, 79, 0.1),
    0 0 0 1px rgba(108, 92, 231, 0.04);
}

.help-category-card:hover::before {
  transform: scale(1.5);
}

.help-category-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.help-category-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: #f3f1ff;
  font-size: 25px;
}

.help-category-number {
  color: #b1aec0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.help-category-card h3 {
  position: relative;
  z-index: 1;
  margin: 32px 0 10px;
  color: #1b1930;
  font-size: 22px;
  letter-spacing: -0.02em;
}

.help-category-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #777487;
  font-size: 14px;
  line-height: 1.7;
}

.help-category-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 24px;
  color: #6c5ce7;
  font-size: 14px;
  font-weight: 800;
}

.help-category-link span {
  transition: transform 0.2s ease;
}

.help-category-card:hover .help-category-link span {
  transform: translateX(5px);
}

/* =========================================================
   POPULAR QUESTIONS
   ========================================================= */

.help-popular {
  padding: 110px 0;
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(108, 92, 231, 0.07),
      transparent 35%
    ),
    #f8f7fc;
}

.help-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.help-faq-item {
  border: 1px solid #e8e5f0;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  overflow: hidden;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.help-faq-item:hover {
  border-color: rgba(108, 92, 231, 0.22);
}

.help-faq-item[open] {
  border-color: rgba(108, 92, 231, 0.3);
  box-shadow: 0 15px 35px rgba(42, 35, 88, 0.07);
}

.help-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  color: #27243a;
  font-size: 15px;
  font-weight: 750;
  cursor: pointer;
  list-style: none;
}

.help-faq-item summary::-webkit-details-marker {
  display: none;
}

.help-faq-item summary span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 50%;
  background: #f1efff;
  color: #6c5ce7;
  font-size: 18px;
  transition: transform 0.25s ease;
}

.help-faq-item[open] summary span {
  transform: rotate(45deg);
}

.help-faq-item p {
  margin: 0;
  padding: 0 24px 24px;
  color: #777386;
  font-size: 14px;
  line-height: 1.75;
}

/* =========================================================
   SEARCH RESULTS
   ========================================================= */

.help-search-results {
  margin-bottom: 30px;
  padding: 24px;
  border: 1px solid rgba(108, 92, 231, 0.15);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 15px 40px rgba(35, 28, 75, 0.06);
}

.help-search-results:empty {
  display: none;
}

/* =========================================================
   GETTING STARTED
   ========================================================= */

.help-topic-section {
  padding: 120px 0;
  background: #fff;
}

.help-topic-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
  align-items: start;
}

.help-topic-intro {
  position: sticky;
  top: 100px;
}

.help-topic-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.help-topic-item {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 20px;
  padding: 26px;
  border: 1px solid #eceaf2;
  border-radius: 20px;
  background: #fff;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.help-topic-item:hover {
  transform: translateX(6px);
  border-color: rgba(108, 92, 231, 0.22);
  box-shadow: 0 15px 35px rgba(37, 30, 79, 0.06);
}

.help-topic-item > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: #f1efff;
  color: #6c5ce7;
  font-size: 12px;
  font-weight: 800;
}

.help-topic-item h3 {
  margin: 2px 0 7px;
  color: #222035;
  font-size: 18px;
}

.help-topic-item p {
  margin: 0;
  color: #7d798b;
  font-size: 14px;
  line-height: 1.7;
}

/* =========================================================
   DETAIL SECTIONS
   ========================================================= */

.help-detail-section {
  padding: 110px 0;
  background: #f8f7fc;
}

.help-detail-alt {
  background: #fff;
}

.help-detail-header {
  max-width: 750px;
  margin-bottom: 48px;
}

.help-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.help-detail-card {
  padding: 32px;
  border: 1px solid #e8e6ef;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(35, 29, 73, 0.04);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.help-detail-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(35, 29, 73, 0.08);
}

.help-detail-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 16px;
  background: #f0eeff;
  font-size: 23px;
}

.help-detail-card h3 {
  margin: 0 0 10px;
  color: #242137;
  font-size: 19px;
}

.help-detail-card p {
  margin: 0;
  color: #7a7687;
  font-size: 14px;
  line-height: 1.7;
}

/* =========================================================
   STEP CARDS
   ========================================================= */

.help-step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.help-step-card {
  position: relative;
  padding: 34px;
  border: 1px solid #e9e6f1;
  border-radius: 24px;
  background: #fff;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.help-step-card::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  right: -65px;
  bottom: -65px;
  border-radius: 50%;
  background: rgba(108, 92, 231, 0.08);
}

.help-step-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 45px rgba(35, 29, 73, 0.08);
}

.help-step-card > span {
  display: inline-flex;
  margin-bottom: 30px;
  color: #6c5ce7;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.help-step-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  color: #252238;
  font-size: 19px;
}

.help-step-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #7a7687;
  font-size: 14px;
  line-height: 1.7;
}

/* =========================================================
   REQUIREMENTS
   ========================================================= */

.help-requirements {
  padding: 110px 0;
  background: #fff;
}

.help-requirements-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 60px;
  min-height: 420px;
  padding: 70px;
  overflow: hidden;
  border-radius: 32px;
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(255, 255, 255, 0.16),
      transparent 25%
    ),
    linear-gradient(135deg, #201b46 0%, #33286b 55%, #6c5ce7 100%);
  box-shadow: 0 30px 80px rgba(48, 39, 111, 0.22);
}

.help-requirements-card::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  right: -200px;
  top: -280px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 0 0 70px rgba(255, 255, 255, 0.025),
    0 0 0 140px rgba(255, 255, 255, 0.018);
}

.help-requirements-content {
  position: relative;
  z-index: 2;
}

.help-requirements-content .section-label {
  color: rgba(255, 255, 255, 0.7);
}

.help-requirements-content h2 {
  max-width: 600px;
  margin: 16px 0 20px;
  color: #fff;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.help-requirements-content h2 span {
  color: #b9b0ff;
}

.help-requirements-content p {
  max-width: 560px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.75;
}

.help-requirements-content .btn-primary {
  background: #fff;
  color: #5140c9;
}

.help-requirements-content .btn-primary:hover {
  background: #f2efff;
}

.help-requirements-visual {
  position: relative;
  min-height: 300px;
}

.help-floating-card {
  position: absolute;
  top: 30px;
  right: 20px;
  width: 260px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(15px);
  color: #fff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  transform: rotate(4deg);
}

.help-floating-card-offset {
  top: 155px;
  right: 100px;
  transform: rotate(-5deg);
  background: rgba(255, 255, 255, 0.16);
}

.help-floating-card span {
  display: block;
  margin-bottom: 15px;
  font-size: 30px;
}

.help-floating-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
}

.help-floating-card small {
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
}

/* =========================================================
   SAFETY
   ========================================================= */

.help-safety {
  padding: 120px 0;
  background:
    radial-gradient(
      circle at 10% 80%,
      rgba(108, 92, 231, 0.07),
      transparent 35%
    ),
    #f8f7fc;
}

.help-safety-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
}

.help-safety-intro {
  position: sticky;
  top: 100px;
  align-self: start;
}

.help-safety-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.help-safety-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  padding: 27px;
  border: 1px solid #e7e4ee;
  border-radius: 20px;
  background: #fff;
}

.help-safety-item > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #f1efff;
  color: #6c5ce7;
  font-size: 12px;
  font-weight: 800;
}

.help-safety-item h3 {
  margin: 1px 0 7px;
  color: #252238;
  font-size: 18px;
}

.help-safety-item p {
  margin: 0;
  color: #7a7687;
  font-size: 14px;
  line-height: 1.7;
}

/* =========================================================
   FINAL CTA
   ========================================================= */

.help-final-cta {
  padding: 110px 0 130px;
  background: #fff;
}

.help-final-card {
  position: relative;
  padding: 90px 40px;
  overflow: hidden;
  text-align: center;
  border-radius: 34px;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(108, 92, 231, 0.14),
      transparent 45%
    ),
    #faf9ff;
  border: 1px solid rgba(108, 92, 231, 0.1);
}

.help-final-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  left: 50%;
  top: -250px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(108, 92, 231, 0.13);
  filter: blur(50px);
}

.help-final-card > *:not(.help-final-glow) {
  position: relative;
  z-index: 2;
}

.help-final-card h2 {
  max-width: 800px;
  margin: 18px auto;
  color: #19162e;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.help-final-card h2 span {
  color: #6c5ce7;
}

.help-final-card p {
  max-width: 650px;
  margin: 0 auto;
  color: #777386;
  font-size: 16px;
  line-height: 1.75;
}

.help-final-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

/* =========================================================
   BUTTON POLISH
   ========================================================= */

.help-final-actions .btn,
.help-requirements-content .btn {
  min-height: 52px;
  padding: 0 24px;
  border-radius: 14px;
}

.help-final-actions .btn span,
.help-requirements-content .btn span {
  display: inline-block;
  margin-left: 7px;
  transition: transform 0.2s ease;
}

.help-final-actions .btn:hover span,
.help-requirements-content .btn:hover span {
  transform: translateX(4px);
}

/* =========================================================
   SELECTION
   ========================================================= */

.help-hero ::selection,
.help-popular ::selection,
.help-final-cta ::selection {
  background: #6c5ce7;
  color: #fff;
}

/* =========================================================
   ACCESSIBILITY
   ========================================================= */

.help-category-card:focus-visible,
.help-search-button:focus-visible,
.help-faq-item summary:focus-visible,
.help-final-actions a:focus-visible {
  outline: 3px solid rgba(108, 92, 231, 0.35);
  outline-offset: 4px;
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  .help-category-card,
  .help-category-card::before,
  .help-topic-item,
  .help-detail-card,
  .help-step-card,
  .help-search-box,
  .help-search-button,
  .help-faq-item summary span {
    transition: none;
  }
}

/* =========================================================
   VEXYRA — PRIVACY POLICY PAGE
   Privacy-specific styles
   ========================================================= */

.privacy-hero {
  position: relative;
  overflow: hidden;
  padding: 150px 0 120px;
  background:
    radial-gradient(
      circle at 15% 30%,
      rgba(108, 92, 231, 0.18),
      transparent 35%
    ),
    radial-gradient(circle at 85% 20%, rgba(0, 210, 255, 0.1), transparent 30%),
    linear-gradient(135deg, #090914 0%, #101024 50%, #0b0b18 100%);
  color: #fff;
}

.privacy-hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  right: -180px;
  top: -180px;
  border-radius: 50%;
  background: rgba(108, 92, 231, 0.12);
  filter: blur(80px);
  pointer-events: none;
}

.privacy-hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.privacy-hero h1 {
  margin: 24px 0;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 800;
}

.privacy-hero h1 span,
.privacy-intro h2 span,
.privacy-section-intro h2 span,
.privacy-public-card h2 span,
.privacy-security-content h2 span,
.privacy-contact-content h2 span,
.privacy-final-card h2 span {
  display: block;
  color: #8b7cff;
}

.privacy-hero-content > p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.15rem;
  line-height: 1.85;
}

.privacy-meta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  color: rgba(255, 255, 255, 0.55);
}

.privacy-meta strong {
  color: #fff;
}

/* =========================================================
   INTRO
   ========================================================= */

.privacy-intro {
  padding: 120px 0;
  background: #fff;
}

.privacy-intro-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
  align-items: start;
}

.privacy-intro-heading h2 {
  margin-top: 22px;
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.privacy-intro-content {
  max-width: 720px;
}

.privacy-intro-content p {
  margin: 0 0 22px;
  color: #5d6070;
  font-size: 1.05rem;
  line-height: 1.85;
}

.privacy-intro-content .privacy-large-text {
  margin-bottom: 28px;
  color: #181827;
  font-size: 1.45rem;
  font-weight: 700;
}

.privacy-highlight {
  margin-top: 35px !important;
  padding: 24px 28px;
  border-left: 4px solid #6c5ce7;
  border-radius: 0 16px 16px 0;
  background: #f5f3ff;
  color: #29234f !important;
  font-weight: 600;
}

/* =========================================================
   NAVIGATION
   ========================================================= */

.privacy-navigation {
  padding: 30px 0 110px;
  background: #fff;
}

.privacy-navigation-card {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 60px;
  padding: 55px;
  border: 1px solid #e9e7f2;
  border-radius: 28px;
  background: linear-gradient(135deg, #faf9ff, #f4f2ff);
  box-shadow: 0 25px 80px rgba(38, 30, 84, 0.08);
}

.privacy-navigation-card h2 {
  margin-top: 18px;
  font-size: 2rem;
  line-height: 1.1;
}

.privacy-navigation-card h2 span {
  color: #6c5ce7;
}

.privacy-nav-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.privacy-nav-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 18px 20px;
  border: 1px solid #e7e4f2;
  border-radius: 14px;
  background: #fff;
  color: #29283a;
  text-decoration: none;
  font-weight: 600;
  transition: 0.25s ease;
}

.privacy-nav-links a span {
  color: #8a849f;
  font-size: 0.78rem;
}

.privacy-nav-links a:hover {
  transform: translateY(-3px);
  border-color: #6c5ce7;
  color: #6c5ce7;
  box-shadow: 0 12px 30px rgba(108, 92, 231, 0.12);
}

/* =========================================================
   GENERAL PRIVACY SECTIONS
   ========================================================= */

.privacy-section {
  padding: 120px 0;
  background: #fff;
}

.privacy-section-alt {
  background: #f8f8fc;
}

.privacy-section-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 90px;
  align-items: start;
}

.privacy-section-intro {
  position: sticky;
  top: 100px;
}

.privacy-section-intro h2 {
  margin: 20px 0;
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.privacy-section-intro > p {
  max-width: 440px;
  color: #686a78;
  font-size: 1rem;
  line-height: 1.8;
}

.privacy-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.privacy-content-card {
  position: relative;
  padding: 32px;
  border: 1px solid #e9e8f0;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 15px 45px rgba(30, 26, 65, 0.05);
  transition: 0.3s ease;
}

.privacy-content-card:hover {
  transform: translateY(-6px);
  border-color: rgba(108, 92, 231, 0.35);
  box-shadow: 0 25px 55px rgba(108, 92, 231, 0.1);
}

.privacy-content-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  border-radius: 15px;
  background: #f0edff;
  font-size: 1.35rem;
}

.privacy-content-card h3 {
  margin-bottom: 12px;
  color: #191827;
  font-size: 1.2rem;
}

.privacy-content-card p {
  margin: 0;
  color: #686a78;
  line-height: 1.75;
}

/* =========================================================
   NUMBERED LIST
   ========================================================= */

.privacy-numbered-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.privacy-numbered-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid #e5e4eb;
}

.privacy-numbered-item:first-child {
  padding-top: 0;
}

.privacy-numbered-item > span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #e9e5ff;
  color: #6c5ce7;
  font-size: 0.8rem;
  font-weight: 800;
}

.privacy-numbered-item h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.privacy-numbered-item p {
  margin: 0;
  color: #696b78;
  line-height: 1.75;
}

/* =========================================================
   PUBLIC INFORMATION
   ========================================================= */

.privacy-public {
  padding: 80px 0;
  background: #fff;
}

.privacy-public-card {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 35px;
  padding: 55px;
  border-radius: 30px;
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(108, 92, 231, 0.2),
      transparent 40%
    ),
    linear-gradient(135deg, #17142b, #0e0e1a);
  color: #fff;
  overflow: hidden;
}

.privacy-public-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 75px;
  height: 75px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 2rem;
}

.privacy-public-card h2 {
  margin: 18px 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.05;
}

.privacy-public-card p {
  max-width: 850px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
}

/* =========================================================
   TEXT PANELS
   ========================================================= */

.privacy-text-panel {
  padding: 40px;
  border: 1px solid #e6e5ed;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(20, 18, 45, 0.05);
}

.privacy-text-panel p {
  margin: 0 0 22px;
  color: #626473;
  line-height: 1.9;
}

.privacy-text-panel p:last-child {
  margin-bottom: 0;
}

/* =========================================================
   SECURITY
   ========================================================= */

.privacy-security {
  padding: 100px 0;
  background: #10101d;
}

.privacy-security-card {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 80px;
  padding: 65px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 30px;
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(108, 92, 231, 0.18),
      transparent 35%
    ),
    rgba(255, 255, 255, 0.025);
}

.privacy-security-content {
  color: #fff;
}

.privacy-security-content h2 {
  margin: 20px 0;
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 1.05;
}

.privacy-security-content p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.85;
}

.privacy-security-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  align-content: center;
}

.privacy-security-points div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.82);
}

.privacy-security-points span {
  color: #8b7cff;
  font-weight: 900;
}

/* =========================================================
   RIGHTS
   ========================================================= */

.privacy-rights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.privacy-rights-grid article {
  padding: 28px;
  border: 1px solid #e8e7ee;
  border-radius: 20px;
  background: #fff;
  transition: 0.25s ease;
}

.privacy-rights-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(35, 30, 75, 0.07);
}

.privacy-rights-grid article > span {
  font-size: 1.5rem;
}

.privacy-rights-grid h3 {
  margin: 18px 0 8px;
}

.privacy-rights-grid p {
  margin: 0;
  color: #6a6c78;
  line-height: 1.7;
}

/* =========================================================
   IMPORTANT NOTE
   ========================================================= */

.privacy-note {
  padding: 80px 0;
  background: #f8f7fc;
}

.privacy-note-card {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: 40px;
  border: 1px solid #e5e2f0;
  border-radius: 24px;
  background: #fff;
}

.privacy-note-icon {
  font-size: 2rem;
}

.privacy-note-card h2 {
  margin: 15px 0;
  font-size: 1.8rem;
}

.privacy-note-card p {
  max-width: 850px;
  margin: 0;
  color: #686a78;
  line-height: 1.8;
}

/* =========================================================
   CONTACT
   ========================================================= */

.privacy-contact {
  padding: 110px 0;
  background: #fff;
}

.privacy-contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 60px;
  border-radius: 30px;
  background: linear-gradient(135deg, #f4f1ff, #fafaff);
  border: 1px solid #e4e0f2;
}

.privacy-contact-content h2 {
  margin: 18px 0;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1;
}

.privacy-contact-content p {
  max-width: 650px;
  color: #686a78;
  line-height: 1.8;
}

.privacy-contact-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  min-width: 220px;
}

.privacy-email-link {
  color: #6c5ce7;
  font-weight: 700;
  text-decoration: none;
}

.privacy-email-link:hover {
  text-decoration: underline;
}

/* =========================================================
   FINAL CTA
   ========================================================= */

.privacy-final {
  padding: 100px 0 130px;
  background: #fff;
}

.privacy-final-card {
  position: relative;
  overflow: hidden;
  padding: 90px 50px;
  border-radius: 35px;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(108, 92, 231, 0.3),
      transparent 30%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(0, 210, 255, 0.12),
      transparent 30%
    ),
    linear-gradient(135deg, #0d0d1b, #17142d);
}

.privacy-final-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  right: -120px;
  top: -120px;
  border-radius: 50%;
  background: rgba(108, 92, 231, 0.2);
  filter: blur(70px);
}

.privacy-final-card > * {
  position: relative;
  z-index: 2;
}

.privacy-final-card h2 {
  max-width: 800px;
  margin: 22px auto;
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.privacy-final-card p {
  max-width: 680px;
  margin: 0 auto 35px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
}

.privacy-final-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* =========================================================
   PRIVACY LABEL
   ========================================================= */

.privacy-hero .section-label,
.privacy-final-card .section-label {
  color: #a79cff;
}

.privacy-section .section-label,
.privacy-intro .section-label,
.privacy-navigation .section-label,
.privacy-contact .section-label {
  color: #6c5ce7;
}

/* =========================================================
   SMALL VISUAL POLISH
   ========================================================= */

.privacy-section,
.privacy-intro,
.privacy-public,
.privacy-security,
.privacy-contact,
.privacy-final {
  scroll-margin-top: 80px;
}

/* =========================================================
   VEXYRA — TERMS & CONDITIONS
   style.css
   ========================================================= */

/* ---------------------------------------------------------
   TERMS HERO
   --------------------------------------------------------- */

.terms-hero {
  position: relative;
  overflow: hidden;
  padding: 150px 0 110px;
  background:
    radial-gradient(
      circle at 85% 15%,
      rgba(108, 92, 231, 0.18),
      transparent 32%
    ),
    radial-gradient(
      circle at 10% 80%,
      rgba(108, 92, 231, 0.08),
      transparent 28%
    ),
    var(--bg-primary, #ffffff);
}

.terms-hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -220px;
  top: -220px;
  border: 1px solid rgba(108, 92, 231, 0.12);
  border-radius: 50%;
}

.terms-hero::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -100px;
  top: -100px;
  border: 1px solid rgba(108, 92, 231, 0.08);
  border-radius: 50%;
}

.terms-hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.terms-hero h1 {
  margin: 22px 0 25px;
  font-size: clamp(3.3rem, 7vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: -0.065em;
  font-weight: 800;
}

.terms-hero h1 span {
  display: block;
  color: #6c5ce7;
}

.terms-hero-content > p {
  max-width: 720px;
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.85;
  color: var(--text-secondary, #666);
}

.terms-meta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
  padding: 12px 18px;
  border: 1px solid rgba(108, 92, 231, 0.14);
  border-radius: 999px;
  background: rgba(108, 92, 231, 0.05);
}

.terms-meta span {
  color: #777;
  font-size: 0.82rem;
}

.terms-meta strong {
  color: #222;
  font-size: 0.86rem;
}

/* ---------------------------------------------------------
   TERMS INTRO
   --------------------------------------------------------- */

.terms-intro {
  padding: 110px 0;
  background: #fafaff;
}

.terms-intro-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(400px, 1.2fr);
  gap: 90px;
  align-items: start;
}

.terms-intro-heading h2 {
  margin-top: 20px;
  max-width: 500px;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.terms-intro-heading h2 span {
  color: #6c5ce7;
}

.terms-intro-content {
  max-width: 700px;
}

.terms-intro-content p {
  margin: 0 0 22px;
  color: #666;
  font-size: 1.02rem;
  line-height: 1.85;
}

.terms-intro-content .terms-large-text {
  margin-bottom: 25px;
  color: #171717;
  font-size: 1.45rem;
  line-height: 1.45;
  font-weight: 700;
}

.terms-highlight {
  margin-top: 32px !important;
  padding: 22px 25px;
  border-left: 3px solid #6c5ce7;
  border-radius: 0 14px 14px 0;
  background: rgba(108, 92, 231, 0.06);
  color: #333 !important;
  font-weight: 600;
}

/* ---------------------------------------------------------
   QUICK NAVIGATION
   --------------------------------------------------------- */

.terms-navigation {
  padding: 30px 0 110px;
  background: #fafaff;
}

.terms-navigation-card {
  position: relative;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 70px;
  padding: 55px;
  border: 1px solid rgba(108, 92, 231, 0.14);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 25px 80px rgba(40, 31, 100, 0.08);
  overflow: hidden;
}

.terms-navigation-card::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -100px;
  bottom: -150px;
  border-radius: 50%;
  background: rgba(108, 92, 231, 0.08);
  filter: blur(4px);
}

.terms-navigation-card h2 {
  margin-top: 18px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.terms-navigation-card h2 span {
  color: #6c5ce7;
}

.terms-nav-links {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.terms-nav-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 62px;
  padding: 15px 18px;
  border: 1px solid #ecebf7;
  border-radius: 14px;
  color: #28252f;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  background: #fff;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.terms-nav-links a span {
  color: #6c5ce7;
  font-size: 0.72rem;
  font-weight: 800;
}

.terms-nav-links a:hover {
  transform: translateY(-3px);
  border-color: rgba(108, 92, 231, 0.35);
  background: #faf9ff;
  box-shadow: 0 12px 30px rgba(108, 92, 231, 0.09);
}

/* ---------------------------------------------------------
   GENERIC TERMS SECTIONS
   --------------------------------------------------------- */

.terms-section {
  padding: 120px 0;
  background: #fff;
}

.terms-section-alt {
  background: linear-gradient(135deg, #fafaff 0%, #f7f6ff 50%, #ffffff 100%);
}

.terms-section-layout {
  display: grid;
  grid-template-columns: minmax(270px, 0.72fr) minmax(450px, 1.28fr);
  gap: 90px;
  align-items: start;
}

.terms-section-intro {
  position: sticky;
  top: 110px;
}

.terms-section-intro h2 {
  margin: 20px 0;
  max-width: 500px;
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.terms-section-intro h2 span {
  color: #6c5ce7;
}

.terms-section-intro > p {
  max-width: 430px;
  color: #707070;
  line-height: 1.8;
  font-size: 0.98rem;
}

/* ---------------------------------------------------------
   CONTENT CARDS
   --------------------------------------------------------- */

.terms-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.terms-content-card {
  position: relative;
  min-height: 260px;
  padding: 30px;
  border: 1px solid #e9e7f5;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 15px 45px rgba(36, 30, 76, 0.05);
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.terms-content-card::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -75px;
  bottom: -75px;
  border-radius: 50%;
  background: rgba(108, 92, 231, 0.07);
}

.terms-content-card:hover {
  transform: translateY(-7px);
  border-color: rgba(108, 92, 231, 0.22);
  box-shadow: 0 25px 60px rgba(45, 35, 110, 0.1);
}

.terms-content-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 25px;
  border-radius: 14px;
  background: rgba(108, 92, 231, 0.1);
  color: #6c5ce7;
  font-size: 1.25rem;
}

.terms-content-card h3 {
  margin: 0 0 12px;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.terms-content-card p {
  margin: 0;
  color: #707070;
  line-height: 1.75;
  font-size: 0.92rem;
}

/* ---------------------------------------------------------
   TEXT PANELS
   --------------------------------------------------------- */

.terms-text-panel {
  padding: 35px 40px;
  border: 1px solid #e9e7f5;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 55px rgba(36, 30, 76, 0.045);
}

.terms-text-panel p {
  margin: 0 0 23px;
  color: #666;
  line-height: 1.85;
}

.terms-text-panel p:last-child {
  margin-bottom: 0;
}

.terms-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  color: #6c5ce7;
  text-decoration: none;
  font-weight: 700;
}

.terms-inline-link span {
  transition: transform 0.2s ease;
}

.terms-inline-link:hover span {
  transform: translateX(5px);
}

/* ---------------------------------------------------------
   NUMBERED LIST
   --------------------------------------------------------- */

.terms-numbered-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid #e7e5f0;
}

.terms-numbered-item {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 22px;
  padding: 30px 0;
  border-bottom: 1px solid #e7e5f0;
}

.terms-numbered-item > span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #6c5ce7;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
}

.terms-numbered-item h3 {
  margin: 0 0 8px;
  font-size: 1.12rem;
}

.terms-numbered-item p {
  margin: 0;
  color: #707070;
  line-height: 1.75;
}

/* ---------------------------------------------------------
   RIGHTS GRID
   --------------------------------------------------------- */

.terms-rights-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.terms-rights-grid article {
  padding: 30px;
  border: 1px solid #e9e7f5;
  border-radius: 20px;
  background: #fff;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.terms-rights-grid article:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(50, 40, 100, 0.08);
}

.terms-rights-grid article > span {
  display: block;
  margin-bottom: 20px;
  font-size: 1.6rem;
}

.terms-rights-grid h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
}

.terms-rights-grid p {
  margin: 0;
  color: #707070;
  line-height: 1.7;
  font-size: 0.9rem;
}

/* ---------------------------------------------------------
   ACCEPTABLE USE / SECURITY
   --------------------------------------------------------- */

.terms-security {
  padding: 110px 0;
  background: #111019;
}

.terms-security-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  padding: 65px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(108, 92, 231, 0.22),
      transparent 40%
    ),
    #181620;
  overflow: hidden;
}

.terms-security-content {
  position: relative;
  z-index: 2;
}

.terms-security-content h2 {
  margin: 20px 0;
  max-width: 550px;
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.terms-security-content h2 span {
  color: #9b8fff;
}

.terms-security-content p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
}

.terms-security-points {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  align-content: center;
}

.terms-security-points div {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 75px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.035);
}

.terms-security-points span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: 50%;
  background: rgba(255, 110, 110, 0.12);
  color: #ff8c8c;
  font-weight: 800;
}

.terms-security-points strong {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.86rem;
}

/* ---------------------------------------------------------
   PLATFORM PROTECTION NOTE
   --------------------------------------------------------- */

.terms-note {
  padding: 90px 0;
  background: #fff;
}

.terms-note-card {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 35px;
  align-items: start;
  padding: 50px;
  border: 1px solid rgba(108, 92, 231, 0.15);
  border-radius: 26px;
  background: linear-gradient(
    135deg,
    rgba(108, 92, 231, 0.08),
    rgba(255, 255, 255, 0.8)
  );
}

.terms-note-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  border-radius: 22px;
  background: #6c5ce7;
  color: #fff;
  font-size: 1.8rem;
  box-shadow: 0 15px 35px rgba(108, 92, 231, 0.22);
}

.terms-note-card h2 {
  margin: 15px 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.045em;
}

.terms-note-card h2 span {
  color: #6c5ce7;
}

.terms-note-card p {
  max-width: 850px;
  margin: 0;
  color: #666;
  line-height: 1.8;
}

/* ---------------------------------------------------------
   CONTACT
   --------------------------------------------------------- */

.terms-contact {
  padding: 110px 0;
  background: #fafaff;
}

.terms-contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 60px;
  border: 1px solid rgba(108, 92, 231, 0.13);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 25px 70px rgba(50, 40, 100, 0.07);
}

.terms-contact-content {
  max-width: 680px;
}

.terms-contact-content h2 {
  margin: 18px 0;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.terms-contact-content h2 span {
  color: #6c5ce7;
}

.terms-contact-content p {
  margin: 0;
  color: #707070;
  line-height: 1.8;
}

.terms-contact-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  min-width: 210px;
}

.terms-email-link {
  color: #6c5ce7;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
}

.terms-email-link:hover {
  text-decoration: underline;
}

/* ---------------------------------------------------------
   FINAL CTA
   --------------------------------------------------------- */

.terms-final {
  padding: 110px 0 140px;
  background: #fafaff;
}

.terms-final-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 90px 50px;
  border-radius: 36px;
  text-align: center;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(130, 115, 255, 0.3),
      transparent 45%
    ),
    linear-gradient(135deg, #15131e, #242039);
  box-shadow: 0 35px 100px rgba(30, 25, 70, 0.2);
}

.terms-final-card::before,
.terms-final-card::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  pointer-events: none;
}

.terms-final-card::before {
  width: 480px;
  height: 480px;
  top: -330px;
  left: 50%;
  transform: translateX(-50%);
}

.terms-final-card::after {
  width: 700px;
  height: 700px;
  top: -440px;
  left: 50%;
  transform: translateX(-50%);
}

.terms-final-glow {
  position: absolute;
  z-index: -1;
  width: 300px;
  height: 300px;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(108, 92, 231, 0.2);
  filter: blur(90px);
}

.terms-final-card .section-label {
  color: rgba(255, 255, 255, 0.65);
}

.terms-final-card h2 {
  position: relative;
  max-width: 900px;
  margin: 20px auto;
  color: #fff;
  font-size: clamp(2.8rem, 6vw, 5.7rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.terms-final-card h2 span {
  display: block;
  color: #9b8fff;
}

.terms-final-card > p {
  position: relative;
  max-width: 650px;
  margin: 28px auto 0;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.8;
}

.terms-final-actions {
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 35px;
}

.terms-final-actions .btn-primary {
  box-shadow: 0 15px 35px rgba(108, 92, 231, 0.3);
}

/* ---------------------------------------------------------
   BUTTON POLISH
   --------------------------------------------------------- */

.terms-final-actions .btn,
.terms-contact-actions .btn {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.terms-final-actions .btn:hover,
.terms-contact-actions .btn:hover {
  transform: translateY(-3px);
}

/* ---------------------------------------------------------
   DARK MODE SUPPORT
   Only applies if your existing site uses .dark-mode
   --------------------------------------------------------- */

.dark-mode .terms-hero,
.dark-mode .terms-intro,
.dark-mode .terms-navigation,
.dark-mode .terms-contact,
.dark-mode .terms-final,
.dark-mode .terms-note {
  background: #0f0e14;
}

.dark-mode .terms-intro-heading h2,
.dark-mode .terms-section-intro h2,
.dark-mode .terms-navigation-card h2,
.dark-mode .terms-note-card h2,
.dark-mode .terms-contact-content h2 {
  color: #fff;
}

.dark-mode .terms-hero-content > p,
.dark-mode .terms-intro-content p,
.dark-mode .terms-section-intro > p,
.dark-mode .terms-text-panel p,
.dark-mode .terms-content-card p,
.dark-mode .terms-numbered-item p,
.dark-mode .terms-rights-grid p,
.dark-mode .terms-note-card p,
.dark-mode .terms-contact-content p {
  color: rgba(255, 255, 255, 0.62);
}

.dark-mode .terms-navigation-card,
.dark-mode .terms-content-card,
.dark-mode .terms-text-panel,
.dark-mode .terms-rights-grid article,
.dark-mode .terms-contact-card {
  border-color: rgba(255, 255, 255, 0.08);
  background: #17151f;
}

.dark-mode .terms-nav-links a {
  border-color: rgba(255, 255, 255, 0.08);
  background: #17151f;
  color: #fff;
}

.dark-mode .terms-numbered-list,
.dark-mode .terms-numbered-item {
  border-color: rgba(255, 255, 255, 0.08);
}

.dark-mode .terms-meta {
  border-color: rgba(108, 92, 231, 0.25);
  background: rgba(108, 92, 231, 0.1);
}

.dark-mode .terms-meta strong,
.dark-mode .terms-content-card h3,
.dark-mode .terms-numbered-item h3,
.dark-mode .terms-rights-grid h3 {
  color: #fff;
}

/* =========================================================
VEXYRA — HOW IT WORKS PAGE
Premium desktop styling
Works with responsive.css loaded after this file
========================================================= */

.how-hero,
.how-intro,
.how-steps,
.how-discover,
.how-provider,
.how-requirement,
.how-trust,
.how-final {
  position: relative;
  overflow: hidden;
}

/* =========================================================
HERO
========================================================= */

.how-hero {
  min-height: 760px;
  padding: 150px 0 110px;
  background:
    radial-gradient(
      circle at 82% 35%,
      rgba(108, 92, 231, 0.18),
      transparent 34%
    ),
    radial-gradient(
      circle at 20% 10%,
      rgba(108, 92, 231, 0.08),
      transparent 28%
    ),
    #ffffff;
}

.how-hero .container {
  min-height: 500px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 520px;
  align-items: center;
  gap: 70px;
}

.how-hero-content {
  position: relative;
  z-index: 3;
  max-width: 680px;
}

.how-hero h1 {
  margin: 22px 0 24px;
  font-size: clamp(58px, 6.5vw, 94px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 800;
  color: #17152a;
}

.how-hero h1 span {
  display: inline-block;
  background: linear-gradient(135deg, #6c5ce7, #9a82ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.how-hero-content > p {
  max-width: 610px;
  margin: 0;
  font-size: 19px;
  line-height: 1.75;
  color: #68657a;
}

.how-hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

/* =========================================================
HERO VISUAL
========================================================= */

.how-hero-visual {
  position: relative;
  width: 500px;
  height: 500px;
  justify-self: end;
}

.how-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(108, 92, 231, 0.16);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.how-orbit-one {
  width: 390px;
  height: 390px;
}

.how-orbit-two {
  width: 270px;
  height: 270px;
  border-style: dashed;
  opacity: 0.8;
}

.how-hero-center {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 132px;
  height: 132px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border-radius: 38px;
  background: linear-gradient(145deg, #7c6cf0, #5847d4);
  box-shadow:
    0 25px 70px rgba(108, 92, 231, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.how-hero-center span {
  font-size: 60px;
  line-height: 1;
  font-weight: 800;
  color: #fff;
}

.how-floating-card {
  position: absolute;
  min-width: 170px;
  padding: 17px 19px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 50px rgba(30, 25, 70, 0.11);
  backdrop-filter: blur(18px);
  z-index: 2;
}

.how-floating-card span {
  display: block;
  margin-bottom: 7px;
  font-size: 23px;
}

.how-floating-card strong {
  display: block;
  color: #211e36;
  font-size: 15px;
}

.how-floating-card small {
  display: block;
  margin-top: 3px;
  color: #8b879b;
  font-size: 11px;
}

.how-floating-one {
  left: 0;
  top: 80px;
}

.how-floating-two {
  right: -10px;
  top: 55px;
}

.how-floating-three {
  right: 25px;
  bottom: 55px;
}

/* =========================================================
INTRO
========================================================= */

.how-intro {
  padding: 120px 0;
  background: #f8f7fc;
}

.how-intro-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
  align-items: start;
}

.how-intro-heading h2,
.how-section-heading h2,
.how-split-content h2,
.how-provider-content h2,
.how-requirement-content h2,
.how-final-card h2 {
  margin: 18px 0 0;
  color: #19172c;
  font-size: clamp(42px, 4vw, 62px);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.how-intro-heading h2 span,
.how-section-heading h2 span,
.how-split-content h2 span,
.how-provider-content h2 span,
.how-requirement-content h2 span,
.how-final-card h2 span {
  color: #6c5ce7;
}

.how-intro-content {
  max-width: 680px;
}

.how-large-text {
  margin-top: 0;
  font-size: 25px;
  line-height: 1.45;
  font-weight: 650;
  color: #29263f;
}

.how-intro-content p:not(.how-large-text) {
  color: #747083;
  font-size: 17px;
  line-height: 1.85;
}

/* =========================================================
SECTION HEADINGS
========================================================= */

.how-section-heading {
  max-width: 720px;
  margin: 0 auto 55px;
  text-align: center;
}

.how-section-heading p {
  margin: 20px auto 0;
  max-width: 590px;
  color: #777385;
  font-size: 17px;
  line-height: 1.7;
}

/* =========================================================
THREE STEPS
========================================================= */

.how-steps {
  padding: 125px 0;
  background: #ffffff;
}

.how-step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.how-step-card {
  position: relative;
  min-height: 390px;
  padding: 32px;
  border: 1px solid #ebe9f3;
  border-radius: 28px;
  background: linear-gradient(145deg, #ffffff, #faf9fe);
  box-shadow: 0 12px 40px rgba(35, 29, 75, 0.05);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.how-step-card:hover {
  transform: translateY(-8px);
  border-color: rgba(108, 92, 231, 0.25);
  box-shadow: 0 25px 60px rgba(35, 29, 75, 0.1);
}

.how-step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.how-step-number {
  font-size: 14px;
  font-weight: 800;
  color: #aaa6b8;
  letter-spacing: 0.08em;
}

.how-step-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: #f0edff;
  font-size: 24px;
}

.how-step-card h3 {
  margin: 48px 0 13px;
  font-size: 29px;
  color: #211e35;
}

.how-step-card > p {
  color: #777385;
  line-height: 1.75;
}

.how-step-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  color: #6c5ce7;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.how-step-link span {
  transition: transform 0.25s ease;
}

.how-step-link:hover span {
  transform: translateX(5px);
}

.how-step-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* =========================================================
DISCOVERY SPLIT
========================================================= */

.how-discover {
  padding: 100px 0;
  background: #f7f6fb;
}

.how-split-card {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  min-height: 600px;
  overflow: hidden;
  border-radius: 38px;
  background: #ffffff;
  box-shadow: 0 25px 80px rgba(36, 30, 76, 0.08);
}

.how-split-content {
  padding: 70px;
}

.how-split-content > p,
.how-provider-content > p,
.how-requirement-content > p {
  max-width: 590px;
  margin: 24px 0 0;
  color: #777385;
  font-size: 17px;
  line-height: 1.8;
}

.how-feature-list {
  display: grid;
  gap: 18px;
  margin: 38px 0;
}

.how-feature-list > div {
  display: grid;
  grid-template-columns: 38px 1fr;
  column-gap: 14px;
}

.how-feature-list > div > span {
  grid-row: span 2;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #f0edff;
  color: #6c5ce7;
  font-size: 12px;
  font-weight: 800;
}

.how-feature-list strong {
  color: #26233a;
}

.how-feature-list p {
  margin: 3px 0 0;
  color: #8b8797;
  font-size: 13px;
}

.how-split-visual {
  display: grid;
  place-items: center;
  padding: 50px;
  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(108, 92, 231, 0.22),
      transparent 45%
    ),
    #eeecfa;
}

.how-search-mockup {
  width: min(100%, 390px);
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 25px 70px rgba(55, 45, 110, 0.12);
  backdrop-filter: blur(18px);
}

.how-search-top {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 17px;
  border-radius: 16px;
  background: #f7f6fb;
  color: #9691a4;
  font-size: 13px;
}

.how-result-card {
  display: grid;
  grid-template-columns: 46px 1fr auto;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  padding: 16px;
  border: 1px solid #eeecf5;
  border-radius: 17px;
  background: #ffffff;
}

.how-result-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #f0edff;
}

.how-result-card strong,
.how-result-card small {
  display: block;
}

.how-result-card strong {
  color: #29263c;
  font-size: 14px;
}

.how-result-card small {
  margin-top: 4px;
  color: #9691a3;
  font-size: 11px;
}

/* =========================================================
PROVIDERS
========================================================= */

.how-provider {
  padding: 125px 0;
  background: #ffffff;
}

.how-professional {
  background: #f8f7fc;
}

.how-provider-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 100px;
}

.how-professional .how-provider-grid {
  grid-template-columns: 1fr 1fr;
}

.how-provider-content {
  max-width: 620px;
}

.how-provider-points {
  display: grid;
  gap: 14px;
  margin: 34px 0;
}

.how-provider-points > div {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #353146;
}

.how-provider-points span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eeeaff;
  color: #6c5ce7;
  font-size: 13px;
  font-weight: 800;
}

.how-provider-visual {
  display: grid;
  place-items: center;
  min-height: 430px;
}

.how-profile-preview,
.how-professional-card {
  position: relative;
  width: min(100%, 390px);
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 30px 80px rgba(39, 32, 82, 0.12);
  backdrop-filter: blur(18px);
}

.how-profile-avatar,
.how-professional-avatar {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: #efedff;
  font-size: 32px;
}

.how-profile-info {
  margin-top: 22px;
}

.how-profile-info strong,
.how-profile-info span {
  display: block;
}

.how-profile-info strong {
  color: #262239;
  font-size: 20px;
}

.how-profile-info span {
  margin-top: 5px;
  color: #8c879b;
  font-size: 13px;
}

.how-profile-status {
  position: absolute;
  top: 30px;
  right: 30px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #edf9f3;
  color: #32825a;
  font-size: 11px;
  font-weight: 700;
}

.how-profile-lines {
  display: grid;
  gap: 11px;
  margin-top: 30px;
}

.how-profile-lines span {
  height: 10px;
  display: block;
  border-radius: 999px;
  background: #eeecf5;
}

.how-profile-lines span:nth-child(2) {
  width: 80%;
}

.how-profile-lines span:nth-child(3) {
  width: 60%;
}

.how-professional-card {
  text-align: center;
}

.how-professional-avatar {
  margin: 0 auto 20px;
}

.how-professional-card strong,
.how-professional-card > span {
  display: block;
}

.how-professional-card strong {
  font-size: 22px;
  color: #242039;
}

.how-professional-card > span {
  margin-top: 7px;
  color: #8a8698;
  font-size: 13px;
}

.how-skill-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 25px;
}

.how-skill-tags span {
  padding: 8px 11px;
  border-radius: 999px;
  background: #f0edff;
  color: #6759c9;
  font-size: 11px;
  font-weight: 700;
}

/* =========================================================
REQUIREMENT
========================================================= */

.how-requirement {
  padding: 100px 0;
  background: #ffffff;
}

.how-requirement-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 70px;
  overflow: hidden;
  padding: 75px;
  border-radius: 38px;
  background:
    radial-gradient(
      circle at 85% 40%,
      rgba(151, 130, 255, 0.3),
      transparent 35%
    ),
    linear-gradient(135deg, #19172c, #27223f);
  box-shadow: 0 30px 90px rgba(26, 22, 51, 0.2);
}

.how-requirement-card .section-label {
  color: #b8aeff;
}

.how-requirement-content h2 {
  color: #ffffff;
}

.how-requirement-content h2 span {
  color: #a89bff;
}

.how-requirement-content > p {
  color: #bbb7ca;
}

.how-requirement-visual {
  position: relative;
  min-height: 320px;
  display: grid;
  place-items: center;
}

.how-requirement-box {
  width: 340px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(15px);
}

.how-requirement-header,
.how-requirement-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.how-requirement-header {
  color: #ffffff;
}

.how-requirement-line {
  height: 10px;
  margin-top: 25px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
}

.how-requirement-line.short {
  width: 65%;
  margin-top: 10px;
}

.how-requirement-footer {
  margin-top: 28px;
  color: #b8b2c9;
  font-size: 11px;
}

.how-connection-line {
  position: absolute;
  bottom: 10px;
  color: #a99cff;
  font-size: 30px;
}

.how-provider-pill {
  position: absolute;
  right: 5px;
  bottom: 25px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
}

/* =========================================================
TRUST
========================================================= */

.how-trust {
  padding: 125px 0;
  background: #f8f7fc;
}

.how-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.how-trust-card {
  padding: 35px;
  border: 1px solid #e9e7f1;
  border-radius: 26px;
  background: #ffffff;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.how-trust-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 55px rgba(38, 31, 77, 0.08);
}

.how-trust-card > span {
  width: 55px;
  height: 55px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: #f0edff;
  font-size: 24px;
}

.how-trust-card h3 {
  margin: 27px 0 10px;
  color: #26233a;
  font-size: 22px;
}

.how-trust-card p {
  margin: 0;
  color: #7d788a;
  line-height: 1.75;
  font-size: 14px;
}

/* =========================================================
FINAL CTA
========================================================= */

.how-final {
  padding: 110px 0 130px;
  background: #ffffff;
}

.how-final-card {
  position: relative;
  overflow: hidden;
  padding: 90px 60px;
  text-align: center;
  border-radius: 38px;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(125, 108, 240, 0.35),
      transparent 45%
    ),
    linear-gradient(145deg, #1b182f, #292341);
  box-shadow: 0 35px 100px rgba(32, 27, 63, 0.2);
}

.how-final-card .section-label {
  color: #b9b0ff;
}

.how-final-card h2 {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: 20px auto;
  color: #ffffff;
}

.how-final-card h2 span {
  color: #a99dff;
}

.how-final-card > p {
  position: relative;
  z-index: 2;
  max-width: 650px;
  margin: 0 auto;
  color: #bbb7c9;
  line-height: 1.75;
  font-size: 16px;
}

.how-final-actions {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.how-final-glow {
  position: absolute;
  width: 480px;
  height: 480px;
  left: 50%;
  top: -350px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(108, 92, 231, 0.3);
  filter: blur(80px);
}

/* =========================================================
SHARED BUTTON POLISH
========================================================= */

.how-hero .btn,
.how-split-content .btn,
.how-provider-content .btn,
.how-requirement-content .btn,
.how-final .btn {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.how-hero .btn:hover,
.how-split-content .btn:hover,
.how-provider-content .btn:hover,
.how-requirement-content .btn:hover,
.how-final .btn:hover {
  transform: translateY(-2px);
}

/* =========================================================
ACCESSIBILITY / REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .how-step-card,
  .how-trust-card,
  .how-hero .btn,
  .how-split-content .btn,
  .how-provider-content .btn,
  .how-requirement-content .btn,
  .how-final .btn {
    transition: none;
  }
}

/* ============================================================
   VEXYRA — PROVIDER RESOURCES
   Page-specific styles for resources.html
   ============================================================ */

.resources-hero,
.resources-intro,
.resources-navigation,
.resources-section,
.resources-provider,
.resources-trust,
.resources-quick,
.resources-final {
  position: relative;
  overflow: hidden;
}

/* ============================================================
   HERO
   ============================================================ */

.resources-hero {
  padding: 110px 0 120px;
  background:
    radial-gradient(
      circle at 75% 35%,
      rgba(108, 92, 231, 0.16),
      transparent 30%
    ),
    radial-gradient(
      circle at 15% 80%,
      rgba(108, 92, 231, 0.08),
      transparent 28%
    );
}

.resources-hero-grid {
  min-height: 650px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 70px;
}

.resources-hero-content {
  max-width: 700px;
}

.resources-hero-content h1 {
  margin: 22px 0 25px;
  font-size: clamp(3.5rem, 6vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
  font-weight: 800;
}

.resources-hero-content h1 span {
  display: block;
  background: linear-gradient(135deg, #6c5ce7, #a78bfa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.resources-hero-content > p {
  max-width: 650px;
  margin-bottom: 34px;
  font-size: 1.12rem;
  line-height: 1.8;
  color: var(--text-muted, #777);
}

.resources-hero-actions,
.resources-final-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============================================================
   HERO VISUAL
   ============================================================ */

.resources-hero-visual {
  min-height: 520px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.resources-orbit {
  position: absolute;
  border: 1px solid rgba(108, 92, 231, 0.18);
  border-radius: 50%;
}

.resources-orbit-one {
  width: 390px;
  height: 390px;
  animation: resourcesOrbit 16s linear infinite;
}

.resources-orbit-two {
  width: 550px;
  height: 550px;
  border-color: rgba(108, 92, 231, 0.09);
  animation: resourcesOrbitReverse 22s linear infinite;
}

.resources-resource-core {
  width: 145px;
  height: 145px;
  border-radius: 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 3;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(108, 92, 231, 0.18);
  box-shadow:
    0 25px 70px rgba(108, 92, 231, 0.16),
    inset 0 0 30px rgba(108, 92, 231, 0.04);
  backdrop-filter: blur(18px);
}

.resources-resource-core span {
  font-size: 4rem;
  line-height: 1;
  font-weight: 900;
  background: linear-gradient(135deg, #6c5ce7, #a78bfa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.resources-resource-core small {
  margin-top: 8px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: #888;
}

.resources-floating-card {
  position: absolute;
  z-index: 4;
  min-width: 190px;
  padding: 17px 20px;
  border: 1px solid rgba(108, 92, 231, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 55px rgba(30, 25, 70, 0.1);
  backdrop-filter: blur(18px);
}

.resources-floating-card span {
  display: block;
  margin-bottom: 7px;
  font-size: 1.35rem;
}

.resources-floating-card strong,
.resources-floating-card small {
  display: block;
}

.resources-floating-card strong {
  color: #222;
  font-size: 0.95rem;
}

.resources-floating-card small {
  margin-top: 4px;
  color: #888;
  font-size: 0.75rem;
}

.resources-floating-one {
  top: 8%;
  left: 4%;
  animation: resourcesFloatOne 5s ease-in-out infinite;
}

.resources-floating-two {
  right: 0;
  top: 34%;
  animation: resourcesFloatTwo 5.5s ease-in-out infinite;
}

.resources-floating-three {
  bottom: 8%;
  left: 12%;
  animation: resourcesFloatThree 6s ease-in-out infinite;
}

/* ============================================================
   INTRO
   ============================================================ */

.resources-intro {
  padding: 115px 0;
  background: #fafaff;
}

.resources-intro-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
  align-items: start;
}

.resources-intro-heading h2,
.resources-section-intro h2,
.resources-provider-content h2,
.resources-trust-content h2,
.resources-section-heading h2,
.resources-final-card h2 {
  margin: 18px 0 0;
  font-size: clamp(2.5rem, 4.3vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.resources-intro-heading h2 span,
.resources-section-intro h2 span,
.resources-provider-content h2 span,
.resources-trust-content h2 span,
.resources-section-heading h2 span,
.resources-final-card h2 span {
  color: #6c5ce7;
}

.resources-intro-content {
  max-width: 720px;
}

.resources-large-text {
  margin: 0 0 25px;
  font-size: 1.55rem;
  line-height: 1.45;
  font-weight: 700;
  color: #222;
}

.resources-intro-content p:not(.resources-large-text) {
  margin: 0 0 18px;
  font-size: 1rem;
  line-height: 1.85;
  color: #777;
}

.resources-highlight {
  margin-top: 30px !important;
  padding: 20px 24px;
  border-left: 3px solid #6c5ce7;
  border-radius: 0 14px 14px 0;
  background: rgba(108, 92, 231, 0.055);
  color: #555 !important;
  font-weight: 600;
}

/* ============================================================
   NAVIGATION
   ============================================================ */

.resources-navigation {
  padding: 80px 0;
}

.resources-navigation-card {
  padding: 55px;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 70px;
  border: 1px solid rgba(108, 92, 231, 0.13);
  border-radius: 30px;
  background: linear-gradient(
    135deg,
    rgba(108, 92, 231, 0.055),
    rgba(255, 255, 255, 0.9)
  );
  box-shadow: 0 25px 70px rgba(30, 25, 70, 0.06);
}

.resources-navigation-card h2 {
  margin: 16px 0 0;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.resources-navigation-card h2 span {
  color: #6c5ce7;
}

.resources-nav-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.resources-nav-links a {
  min-height: 64px;
  padding: 17px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  border: 1px solid rgba(108, 92, 231, 0.1);
  border-radius: 15px;
  color: #333;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.7);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.resources-nav-links a span {
  color: #6c5ce7;
  font-size: 0.72rem;
  font-weight: 800;
}

.resources-nav-links a:hover {
  transform: translateY(-3px);
  border-color: rgba(108, 92, 231, 0.35);
  box-shadow: 0 12px 30px rgba(108, 92, 231, 0.1);
}

/* ============================================================
   GENERIC SECTIONS
   ============================================================ */

.resources-section {
  padding: 120px 0;
}

.resources-section-alt {
  background: #fafaff;
}

.resources-section-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 90px;
  align-items: start;
}

.resources-section-intro {
  position: sticky;
  top: 100px;
}

.resources-section-intro > p {
  max-width: 470px;
  margin-top: 25px;
  color: #777;
  line-height: 1.8;
}

.resources-content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.resources-content-card {
  padding: 32px;
  min-height: 245px;
  border: 1px solid rgba(108, 92, 231, 0.1);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 15px 45px rgba(30, 25, 70, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.resources-content-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 25px 60px rgba(108, 92, 231, 0.11);
}

.resources-content-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: rgba(108, 92, 231, 0.08);
  font-size: 1.35rem;
}

.resources-content-card h3,
.resources-tips-grid h3,
.resources-check-grid h3 {
  margin: 0 0 12px;
  font-size: 1.12rem;
}

.resources-content-card p,
.resources-tips-grid p,
.resources-check-grid p {
  margin: 0;
  color: #777;
  line-height: 1.7;
}

/* ============================================================
   NUMBERED LIST
   ============================================================ */

.resources-numbered-list {
  display: flex;
  flex-direction: column;
}

.resources-numbered-item {
  padding: 28px 0;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 24px;
  border-bottom: 1px solid rgba(108, 92, 231, 0.12);
}

.resources-numbered-item:first-child {
  padding-top: 0;
}

.resources-numbered-item > span {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #6c5ce7;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
}

.resources-numbered-item h3 {
  margin: 0 0 8px;
  font-size: 1.18rem;
}

.resources-numbered-item p {
  margin: 0;
  color: #777;
  line-height: 1.75;
}

/* ============================================================
   PROVIDER SECTIONS
   ============================================================ */

.resources-provider {
  padding: 125px 0;
}

.resources-business {
  background:
    radial-gradient(
      circle at 15% 50%,
      rgba(108, 92, 231, 0.08),
      transparent 30%
    ),
    #fff;
}

.resources-professional {
  background:
    radial-gradient(
      circle at 85% 50%,
      rgba(108, 92, 231, 0.08),
      transparent 30%
    ),
    #fafaff;
}

.resources-provider-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.resources-provider-content > p {
  max-width: 580px;
  margin: 28px 0;
  color: #777;
  line-height: 1.8;
}

.resources-check-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 30px 0;
}

.resources-check-list div {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #333;
}

.resources-check-list div > span {
  width: 27px;
  height: 27px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: rgba(108, 92, 231, 0.1);
  color: #6c5ce7;
  font-weight: 800;
}

/* ============================================================
   BUSINESS PREVIEW
   ============================================================ */

.resources-provider-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.resources-business-preview,
.resources-professional-preview {
  width: min(100%, 500px);
  padding: 32px;
  border-radius: 28px;
  border: 1px solid rgba(108, 92, 231, 0.13);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 35px 90px rgba(30, 25, 70, 0.1);
  backdrop-filter: blur(18px);
}

.resources-business-top {
  display: flex;
  align-items: center;
  gap: 15px;
}

.resources-business-top > span:first-child {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 17px;
  background: rgba(108, 92, 231, 0.09);
  font-size: 1.4rem;
}

.resources-business-top strong,
.resources-business-top small {
  display: block;
}

.resources-business-top strong {
  color: #222;
}

.resources-business-top small {
  margin-top: 4px;
  color: #888;
}

.resources-status {
  margin-left: auto;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(52, 168, 83, 0.1);
  color: #32834b;
  font-size: 0.7rem;
  font-weight: 700;
}

.resources-preview-line {
  height: 12px;
  margin-top: 28px;
  border-radius: 999px;
  background: #eee;
}

.resources-preview-line.medium {
  width: 75%;
  margin-top: 12px;
}

.resources-preview-line.short {
  width: 48%;
  margin-top: 12px;
}

.resources-preview-tags,
.resources-skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.resources-preview-tags span,
.resources-skill-tags span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(108, 92, 231, 0.08);
  color: #6556d5;
  font-size: 0.72rem;
  font-weight: 600;
}

/* ============================================================
   PROFESSIONAL PREVIEW
   ============================================================ */

.resources-professional-preview {
  text-align: center;
}

.resources-professional-avatar {
  width: 82px;
  height: 82px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 25px;
  background: linear-gradient(
    135deg,
    rgba(108, 92, 231, 0.12),
    rgba(167, 139, 250, 0.2)
  );
  font-size: 2rem;
}

.resources-professional-preview > strong,
.resources-professional-preview > span {
  display: block;
}

.resources-professional-preview > strong {
  font-size: 1.2rem;
}

.resources-professional-preview > span {
  margin-top: 8px;
  color: #888;
  font-size: 0.85rem;
}

.resources-profile-score {
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(108, 92, 231, 0.1);
  text-align: left;
}

.resources-profile-score > span {
  display: block;
  margin-bottom: 10px;
  color: #777;
  font-size: 0.75rem;
}

.resources-profile-score > div {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #eee;
}

.resources-profile-score i {
  display: block;
  width: 84%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #6c5ce7, #a78bfa);
}

.resources-profile-score strong {
  display: block;
  margin-top: 9px;
  color: #6c5ce7;
  font-size: 0.75rem;
}

/* ============================================================
   CONTENT TIPS
   ============================================================ */

.resources-tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.resources-tips-grid article {
  padding: 30px;
  border-radius: 22px;
  border: 1px solid rgba(108, 92, 231, 0.1);
  background: #fff;
  transition: transform 0.25s ease;
}

.resources-tips-grid article:hover {
  transform: translateY(-5px);
}

.resources-tips-grid article > span {
  display: block;
  margin-bottom: 18px;
  font-size: 1.45rem;
}

/* ============================================================
   TRUST
   ============================================================ */

.resources-trust {
  padding: 120px 0;
}

.resources-trust-card {
  padding: 65px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  border-radius: 34px;
  background:
    radial-gradient(
      circle at 90% 20%,
      rgba(167, 139, 250, 0.25),
      transparent 30%
    ),
    linear-gradient(135deg, #171525, #282242);
  color: #fff;
  box-shadow: 0 35px 90px rgba(30, 25, 70, 0.2);
}

.resources-trust-content h2 {
  color: #fff;
}

.resources-trust-content h2 span {
  color: #a99cff;
}

.resources-trust-content p {
  margin-top: 25px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.8;
}

.resources-trust-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.resources-trust-points > div {
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
}

.resources-trust-points > div > span {
  width: 30px;
  height: 30px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(167, 139, 250, 0.18);
  color: #b8adff;
}

.resources-trust-points strong,
.resources-trust-points small {
  display: block;
}

.resources-trust-points strong {
  font-size: 1rem;
}

.resources-trust-points small {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

/* ============================================================
   QUICK CHECK
   ============================================================ */

.resources-quick {
  padding: 120px 0;
  background: #fafaff;
}

.resources-section-heading {
  max-width: 700px;
  margin-bottom: 55px;
}

.resources-section-heading p {
  margin-top: 20px;
  color: #777;
  line-height: 1.7;
}

.resources-check-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.resources-check-grid article {
  padding: 34px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(108, 92, 231, 0.1);
  box-shadow: 0 18px 50px rgba(30, 25, 70, 0.05);
}

.resources-check-grid article > span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  margin-bottom: 25px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(108, 92, 231, 0.09);
  color: #6c5ce7;
  font-weight: 800;
}

/* ============================================================
   FINAL CTA
   ============================================================ */

.resources-final {
  padding: 100px 0 130px;
}

.resources-final-card {
  position: relative;
  overflow: hidden;
  padding: 90px 60px;
  text-align: center;
  border-radius: 38px;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(167, 139, 250, 0.23),
      transparent 35%
    ),
    linear-gradient(135deg, #181528, #292343);
  color: #fff;
  box-shadow: 0 40px 100px rgba(30, 25, 70, 0.22);
}

.resources-final-glow {
  position: absolute;
  width: 450px;
  height: 450px;
  top: -300px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(108, 92, 231, 0.22);
  filter: blur(70px);
}

.resources-final-card > *:not(.resources-final-glow) {
  position: relative;
  z-index: 2;
}

.resources-final-card .section-label {
  color: #b9b0ff;
}

.resources-final-card h2 {
  max-width: 850px;
  margin: 20px auto;
  color: #fff;
}

.resources-final-card h2 span {
  color: #a99cff;
}

.resources-final-card > p {
  max-width: 650px;
  margin: 0 auto 35px;
  color: rgba(255, 255, 255, 0.67);
  line-height: 1.8;
}

.resources-final-actions {
  justify-content: center;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

@keyframes resourcesOrbit {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes resourcesOrbitReverse {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }
}

@keyframes resourcesFloatOne {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }

  50% {
    transform: translateY(-14px) rotate(1deg);
  }
}

@keyframes resourcesFloatTwo {
  0%,
  100% {
    transform: translateY(0) rotate(2deg);
  }

  50% {
    transform: translateY(12px) rotate(-1deg);
  }
}

@keyframes resourcesFloatThree {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-10px) rotate(2deg);
  }
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  .resources-orbit,
  .resources-floating-card {
    animation: none;
  }

  .resources-content-card,
  .resources-nav-links a,
  .resources-tips-grid article {
    transition: none;
  }
}

/* ============================================================
   VEXYRA — OFFER YOUR SERVICES
   Premium Landing Page Styling
   ============================================================ */

/* ============================================================
   HERO
   ============================================================ */

.offer-hero {
  position: relative;
  overflow: hidden;
  padding: 145px 0 110px;
  background:
    radial-gradient(
      circle at 82% 25%,
      rgba(108, 92, 231, 0.22),
      transparent 32%
    ),
    radial-gradient(
      circle at 15% 85%,
      rgba(108, 92, 231, 0.08),
      transparent 28%
    ),
    #080812;
  color: #fff;
}

.offer-hero::before {
  content: "";
  position: absolute;
  width: 650px;
  height: 650px;
  right: -250px;
  top: -250px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.offer-hero::after {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  left: -260px;
  bottom: -260px;
  border: 1px solid rgba(108, 92, 231, 0.18);
  border-radius: 50%;
}

.offer-hero .container {
  position: relative;
  z-index: 2;
}

.offer-hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.offer-hero .section-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #b9b0ff;
  letter-spacing: 0.16em;
  font-size: 11px;
  font-weight: 700;
}

.offer-hero h1 {
  margin: 28px auto 25px;
  max-width: 850px;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 800;
}

.offer-hero h1 span {
  display: block;
  background: linear-gradient(100deg, #ffffff 10%, #b8aeff 50%, #6c5ce7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.offer-hero p {
  max-width: 700px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.66);
  font-size: 18px;
  line-height: 1.8;
}

.offer-hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 38px;
}

.offer-hero-actions .btn {
  min-height: 54px;
  padding: 0 25px;
}

.offer-hero-note {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.45);
}

.offer-hero-note p {
  margin: 0;
  font-size: 13px;
}

.offer-hero-stats {
  display: flex;
  justify-content: center;
  margin-top: 55px;
}

.offer-hero-stats div {
  min-width: 145px;
  padding: 12px 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.offer-hero-stats div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.offer-hero-stats strong {
  display: block;
  margin-bottom: 4px;
  color: #9d91ff;
  font-size: 12px;
  letter-spacing: 0.15em;
}

.offer-hero-stats span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
}

/* ============================================================
   QUESTION
   ============================================================ */

.offer-question {
  padding: 120px 0;
  background: #ffffff;
}

.offer-question-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  align-items: start;
}

.offer-question-grid h2 {
  margin: 20px 0 0;
  max-width: 520px;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.offer-question-grid h2 span {
  display: block;
  color: #6c5ce7;
}

.offer-question-grid > div:last-child {
  padding-top: 38px;
}

.offer-question-grid p {
  max-width: 680px;
  color: #626275;
  line-height: 1.85;
  font-size: 16px;
}

.offer-question-grid .offer-large-text {
  margin-bottom: 25px;
  color: #171722;
  font-size: 25px;
  line-height: 1.45;
  font-weight: 600;
}

/* ============================================================
   DIFFERENCE
   ============================================================ */

.offer-difference {
  padding: 120px 0;
  background: #f6f6fb;
}

.offer-section-heading {
  max-width: 720px;
  margin: 0 auto 60px;
  text-align: center;
}

.offer-section-heading h2 {
  margin: 17px 0;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.offer-section-heading h2 span {
  color: #6c5ce7;
}

.offer-section-heading p {
  max-width: 620px;
  margin: auto;
  color: #6c6c7b;
  line-height: 1.7;
}

.offer-difference-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.offer-difference-grid article {
  position: relative;
  min-height: 340px;
  padding: 38px;
  overflow: hidden;
  border: 1px solid #e6e6ef;
  border-radius: 28px;
  background: #ffffff;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.offer-difference-grid article:hover {
  transform: translateY(-8px);
  border-color: rgba(108, 92, 231, 0.25);
  box-shadow: 0 25px 60px rgba(34, 30, 70, 0.1);
}

.offer-difference-grid article::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -80px;
  bottom: -80px;
  border-radius: 50%;
  background: rgba(108, 92, 231, 0.08);
}

.offer-difference-grid .offer-difference-featured {
  color: #fff;
  border-color: transparent;
  background:
    radial-gradient(
      circle at 80% 15%,
      rgba(255, 255, 255, 0.18),
      transparent 30%
    ),
    linear-gradient(145deg, #6c5ce7, #4936b7);
  box-shadow: 0 25px 65px rgba(108, 92, 231, 0.25);
}

.offer-difference-number {
  display: block;
  margin-bottom: 70px;
  color: #8a80ed;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.offer-difference-featured .offer-difference-number {
  color: rgba(255, 255, 255, 0.65);
}

.offer-difference-grid h3 {
  margin: 0 0 14px;
  font-size: 28px;
  letter-spacing: -0.03em;
}

.offer-difference-grid p {
  margin: 0 0 24px;
  color: #707080;
  line-height: 1.7;
}

.offer-difference-featured p {
  color: rgba(255, 255, 255, 0.7);
}

.offer-difference-grid strong {
  color: #29263b;
  font-size: 14px;
}

.offer-difference-featured strong {
  color: #fff;
}

/* ============================================================
   BUSINESS / PROFESSIONAL SHARED
   ============================================================ */

.offer-business,
.offer-professional {
  padding: 125px 0;
}

.offer-business {
  background: #fff;
}

.offer-professional {
  background: #090910;
  color: #fff;
}

.offer-audience-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 100px;
  align-items: center;
}

.offer-audience-layout.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.offer-audience-content .section-label {
  color: #6c5ce7;
}

.offer-professional .offer-audience-content .section-label {
  color: #a79fff;
}

.offer-audience-content h2 {
  margin: 20px 0;
  max-width: 680px;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.offer-audience-content h2 span {
  display: block;
  color: #6c5ce7;
}

.offer-professional .offer-audience-content h2 span {
  color: #a69cff;
}

.offer-audience-content > p {
  max-width: 650px;
  color: #696979;
  line-height: 1.8;
}

.offer-professional .offer-audience-content > p {
  color: rgba(255, 255, 255, 0.58);
}

.offer-audience-content .offer-large-text {
  margin-bottom: 18px;
  color: #1d1b28;
  font-size: 23px;
  line-height: 1.5;
  font-weight: 600;
}

.offer-professional .offer-large-text {
  color: #fff;
}

.offer-benefit-list {
  display: grid;
  gap: 22px;
  margin-top: 38px;
}

.offer-benefit-list > div {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.offer-benefit-list > div > span {
  display: flex;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(108, 92, 231, 0.1);
  color: #6c5ce7;
  font-weight: 800;
}

.offer-benefit-list strong {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
}

.offer-benefit-list p {
  margin: 0;
  color: #7a7a88;
  font-size: 14px;
  line-height: 1.65;
}

.offer-professional .offer-benefit-list p {
  color: rgba(255, 255, 255, 0.48);
}

.offer-audience-card {
  position: relative;
  padding: 48px;
  overflow: hidden;
  border-radius: 32px;
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(108, 92, 231, 0.18),
      transparent 32%
    ),
    #f7f7fb;
  border: 1px solid #e7e7ef;
}

.offer-audience-card::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -120px;
  top: -120px;
  border: 1px solid rgba(108, 92, 231, 0.12);
  border-radius: 50%;
}

.offer-professional .offer-audience-card {
  background:
    radial-gradient(
      circle at 80% 15%,
      rgba(108, 92, 231, 0.3),
      transparent 32%
    ),
    #13131d;
  border-color: rgba(255, 255, 255, 0.08);
}

.offer-card-label {
  color: #858596;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.offer-professional .offer-card-label {
  color: rgba(255, 255, 255, 0.45);
}

.offer-big-symbol {
  margin: 55px 0 25px;
  color: #6c5ce7;
  font-size: 65px;
  line-height: 1;
  font-weight: 300;
}

.offer-audience-card h3 {
  margin: 0 0 18px;
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.offer-audience-card h3 span {
  display: block;
  color: #6c5ce7;
}

.offer-professional .offer-audience-card h3 {
  color: #fff;
}

.offer-audience-card p {
  color: #6e6e7d;
  line-height: 1.75;
}

.offer-professional .offer-audience-card p {
  color: rgba(255, 255, 255, 0.52);
}

.offer-mini-example,
.offer-skill-preview {
  display: grid;
  gap: 10px;
  margin-top: 32px;
}

.offer-mini-example > span,
.offer-skill-preview > span {
  margin-bottom: 5px;
  color: #9999a7;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.offer-mini-example div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border: 1px solid #e5e5ed;
  border-radius: 12px;
  background: #fff;
}

.offer-mini-example strong {
  font-size: 13px;
}

.offer-mini-example small {
  color: #92929e;
}

.offer-skill-preview {
  display: flex;
  flex-wrap: wrap;
}

.offer-skill-preview > span {
  width: 100%;
}

.offer-skill-preview div {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
}

/* ============================================================
   SEARCHERS
   ============================================================ */

.offer-searchers {
  padding: 125px 0;
  background: #f4f3f9;
}

.offer-searchers-header {
  max-width: 750px;
  margin: 0 auto 65px;
  text-align: center;
}

.offer-searchers-header h2 {
  margin: 18px 0;
  font-size: clamp(40px, 5vw, 65px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.offer-searchers-header h2 span {
  color: #6c5ce7;
}

.offer-searchers-header p {
  color: #777787;
  line-height: 1.7;
}

.offer-searcher-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 20px;
}

.offer-searcher-problem,
.offer-searcher-solution {
  min-height: 360px;
  padding: 45px;
  border-radius: 30px;
}

.offer-searcher-problem {
  position: relative;
  overflow: hidden;
  background: #181720;
  color: #fff;
}

.offer-searcher-problem > span,
.offer-searcher-solution > span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.offer-searcher-problem > span {
  color: rgba(255, 255, 255, 0.38);
}

.offer-searcher-problem h3 {
  position: relative;
  z-index: 2;
  margin-top: 45px;
  max-width: 380px;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.offer-searcher-problem h3 span {
  color: #a79fff;
}

.offer-searcher-question {
  position: absolute;
  right: 40px;
  bottom: 15px;
  color: rgba(255, 255, 255, 0.04);
  font-size: 220px;
  line-height: 1;
  font-weight: 800;
}

.offer-searcher-solution {
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(108, 92, 231, 0.18),
      transparent 30%
    ),
    #fff;
  border: 1px solid #e7e6ef;
}

.offer-searcher-solution > span {
  color: #6c5ce7;
}

.offer-searcher-solution h3 {
  margin: 45px 0 40px;
  font-size: 32px;
  letter-spacing: -0.035em;
}

.offer-searcher-solution h3 span {
  color: #6c5ce7;
}

.offer-search-flow {
  display: flex;
  align-items: center;
  gap: 15px;
}

.offer-search-flow > div {
  flex: 1;
  padding: 18px;
  border: 1px solid #e5e4ed;
  border-radius: 16px;
  background: #fafafd;
}

.offer-search-flow strong {
  display: block;
  margin-bottom: 5px;
}

.offer-search-flow small {
  color: #858593;
  line-height: 1.4;
}

.offer-search-flow > span {
  color: #6c5ce7;
  font-size: 20px;
}

/* ============================================================
   GAINS
   ============================================================ */

.offer-gains {
  padding: 125px 0;
  background: #fff;
}

.offer-gain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.offer-gain-grid article {
  position: relative;
  padding: 38px;
  min-height: 350px;
  border: 1px solid #e7e7ef;
  border-radius: 26px;
  background: #fff;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.offer-gain-grid article:hover {
  transform: translateY(-7px);
  box-shadow: 0 25px 60px rgba(30, 28, 60, 0.09);
}

.offer-gain-icon {
  display: flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  margin-bottom: 55px;
  border-radius: 16px;
  background: #f0eeff;
  font-size: 24px;
}

.offer-gain-grid .section-label {
  display: block;
  margin-bottom: 15px;
  color: #6c5ce7;
  font-size: 10px;
}

.offer-gain-grid h3 {
  margin: 0 0 15px;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.offer-gain-grid p {
  color: #737381;
  font-size: 14px;
  line-height: 1.75;
}

.offer-gain-grid strong {
  display: block;
  margin-top: 25px;
  color: #6c5ce7;
  font-size: 12px;
}

/* ============================================================
   COMPARISON
   ============================================================ */

.offer-comparison {
  padding: 125px 0;
  background: #090910;
  color: #fff;
}

.offer-comparison-heading {
  max-width: 750px;
  margin-bottom: 65px;
}

.offer-comparison-heading h2 {
  margin: 18px 0;
  font-size: clamp(42px, 5vw, 65px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.offer-comparison-heading h2 span {
  color: #a79fff;
}

.offer-comparison-heading p {
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.7;
}

.offer-comparison-table {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
}

.offer-comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.offer-comparison-row > div,
.offer-comparison-row > span {
  min-height: 100px;
  padding: 27px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.offer-comparison-head {
  background: rgba(108, 92, 231, 0.12);
}

.offer-comparison-head span {
  color: #aaa2ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.offer-comparison-row strong {
  display: block;
  margin-bottom: 5px;
  font-size: 15px;
}

.offer-comparison-row small {
  color: white;
}

/* ============================================================
   GOOD SERVICE
   ============================================================ */

.offer-good-service {
  padding: 125px 0;
  background: #fff;
}

.offer-good-service-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
}

.offer-good-service-grid h2 {
  margin: 20px 0;
  font-size: clamp(42px, 5vw, 65px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.offer-good-service-grid h2 span {
  display: block;
  color: #6c5ce7;
}

.offer-good-service-grid > div:first-child p {
  max-width: 550px;
  color: #747482;
  line-height: 1.8;
}

.offer-question-list {
  border-top: 1px solid #e6e6ed;
}

.offer-question-list > div {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 23px 0;
  border-bottom: 1px solid #e6e6ed;
}

.offer-question-list span {
  color: #6c5ce7;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.offer-question-list strong {
  font-size: 16px;
}

/* ============================================================
   OPPORTUNITY
   ============================================================ */

.offer-opportunity {
  padding: 125px 0;
  background: #f4f3f9;
}

.offer-opportunity-card {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 80px;
  padding: 65px;
  border-radius: 35px;
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(108, 92, 231, 0.18),
      transparent 32%
    ),
    #11111a;
  color: #fff;
  box-shadow: 0 35px 90px rgba(35, 31, 75, 0.15);
}

.offer-opportunity-card h2 {
  max-width: 650px;
  margin: 20px 0;
  font-size: clamp(40px, 5vw, 65px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.offer-opportunity-card h2 span {
  display: block;
  color: #a79fff;
}

.offer-opportunity-card p {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.8;
}

.offer-opportunity-example {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 35px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.035);
}

.offer-opportunity-example span {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.offer-opportunity-example strong {
  font-size: 17px;
  line-height: 1.45;
}

.offer-opportunity-line {
  margin: 17px 0;
  color: #8d83f0;
  text-align: center;
}

/* ============================================================
   DECISION
   ============================================================ */

.offer-decision {
  padding: 125px 0;
  background: #fff;
}

.offer-decision-content {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.offer-decision-content h2 {
  margin: 20px 0;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.offer-decision-content h2 span {
  display: block;
  color: #6c5ce7;
}

.offer-decision-content > p {
  max-width: 650px;
  margin: 0 auto;
  color: #737381;
  line-height: 1.8;
}

.offer-decision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 55px;
}

.offer-decision-grid > div {
  padding: 28px 20px;
  border: 1px solid #e7e7ef;
  border-radius: 20px;
  background: #fafafd;
}

.offer-decision-grid span {
  display: flex;
  width: 30px;
  height: 30px;
  margin: 0 auto 14px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #eeeaff;
  color: #6c5ce7;
}

.offer-decision-grid strong {
  display: block;
  margin-bottom: 7px;
}

.offer-decision-grid small {
  color: #858593;
  line-height: 1.5;
}

/* ============================================================
   FINAL CTA
   ============================================================ */

.offer-final {
  padding: 100px 0 125px;
  background: #fff;
}

.offer-final-card {
  position: relative;
  overflow: hidden;
  padding: 85px 40px;
  border-radius: 38px;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(164, 153, 255, 0.35),
      transparent 35%
    ),
    linear-gradient(145deg, #6c5ce7, #4533af);
  color: #fff;
  text-align: center;
  box-shadow: 0 35px 90px rgba(83, 68, 180, 0.3);
}

.offer-final-card::before,
.offer-final-card::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.offer-final-card::before {
  width: 420px;
  height: 420px;
  top: -280px;
  left: -120px;
}

.offer-final-card::after {
  width: 500px;
  height: 500px;
  right: -200px;
  bottom: -350px;
}

.offer-final-card > * {
  position: relative;
  z-index: 2;
}

.offer-final-card .section-label {
  color: rgba(255, 255, 255, 0.7);
}

.offer-final-card h2 {
  max-width: 850px;
  margin: 22px auto;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.offer-final-card h2 span {
  display: block;
  color: #ddd9ff;
}

.offer-final-card p {
  max-width: 650px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.offer-final-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 35px;
}

.offer-final-actions .btn-secondary {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.offer-final-actions .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* ============================================================
   SUBTLE INTERACTION
   ============================================================ */

.offer-business .offer-audience-card,
.offer-professional .offer-audience-card,
.offer-searcher-solution,
.offer-opportunity-example {
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.offer-business .offer-audience-card:hover,
.offer-professional .offer-audience-card:hover {
  transform: translateY(-8px);
}

.offer-searcher-solution:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 60px rgba(30, 28, 60, 0.1);
}

/* ============================================================
   COOKIES POLICY PAGE
   ============================================================ */

/* ============================================================
   HERO
   ============================================================ */

.legal-hero {
  position: relative;
  padding: 125px 0 95px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 75% 20%,
      rgba(108, 92, 231, 0.16),
      transparent 35%
    ),
    linear-gradient(135deg, #f8f7ff 0%, #ffffff 55%, #f7f5ff 100%);
}

.legal-hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -180px;
  top: -180px;
  border-radius: 50%;
  background: rgba(108, 92, 231, 0.08);
  filter: blur(10px);
}

.legal-hero-content {
  position: relative;
  z-index: 1;
  max-width: 850px;
}

.legal-hero-content h1 {
  margin: 18px 0 24px;
  font-size: clamp(58px, 7vw, 92px);
  line-height: 0.98;
  letter-spacing: -3px;
  color: #171525;
}

.legal-hero-content h1 span {
  display: inline;
  color: #6c5ce7;
}

.legal-hero-content > p {
  max-width: 720px;
  margin: 0;
  color: #626078;
  font-size: 18px;
  line-height: 1.8;
}

.legal-meta {
  display: inline-flex;
  margin-top: 30px;
  padding: 10px 16px;
  border: 1px solid rgba(108, 92, 231, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  color: #77738b;
  font-size: 13px;
  font-weight: 600;
}

/* ============================================================
   MAIN LEGAL AREA
   ============================================================ */

.legal-content {
  padding: 100px 0 120px;
  background: #ffffff;
}

.legal-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 820px);
  justify-content: space-between;
  gap: 80px;
  max-width: 1180px;
  margin: 0 auto;
}

/* ============================================================
   SIDEBAR
   ============================================================ */

.legal-sidebar {
  position: relative;
}

.legal-sidebar-card {
  position: sticky;
  top: 110px;
  padding: 26px 22px;
  border: 1px solid #ebe9f4;
  border-radius: 20px;
  background: #faf9fe;
  box-shadow: 0 12px 35px rgba(31, 25, 70, 0.05);
}

.legal-sidebar-card .section-label {
  display: block;
  margin-bottom: 18px;
}

.legal-sidebar nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.legal-sidebar nav a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 11px;
  border-radius: 9px;
  color: #6d697d;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.legal-sidebar nav a:hover {
  color: #6c5ce7;
  background: rgba(108, 92, 231, 0.07);
  transform: translateX(3px);
}

/* ============================================================
   ARTICLE
   ============================================================ */

.legal-article {
  min-width: 0;
}

.legal-section {
  position: relative;
  padding: 0 0 65px;
  margin-bottom: 65px;
  border-bottom: 1px solid #eceaf3;
}

.legal-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.legal-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 12px;
  background: #f0edff;
  color: #6c5ce7;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.legal-section h2 {
  margin: 0 0 20px;
  color: #1a1828;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.1;
  letter-spacing: -1.3px;
}

.legal-section p {
  max-width: 760px;
  margin: 0 0 18px;
  color: #656175;
  font-size: 16px;
  line-height: 1.85;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

/* ============================================================
   LIST
   ============================================================ */

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.legal-list li {
  position: relative;
  padding: 17px 20px 17px 48px;
  border: 1px solid #eceaf4;
  border-radius: 13px;
  background: #fbfaff;
  color: #5f5b70;
  font-size: 15px;
  line-height: 1.65;
}

.legal-list li::before {
  content: "✓";
  position: absolute;
  left: 18px;
  top: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #eae6ff;
  color: #6c5ce7;
  font-size: 11px;
  font-weight: 800;
}

/* ============================================================
   INFORMATION CARDS
   ============================================================ */

.legal-info-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
  margin-top: 30px;
}

.legal-info-card {
  padding: 26px 22px;
  border: 1px solid #e9e7f2;
  border-radius: 18px;
  background: linear-gradient(145deg, #ffffff, #faf9ff);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.legal-info-card:hover {
  transform: translateY(-5px);
  border-color: rgba(108, 92, 231, 0.25);
  box-shadow: 0 18px 45px rgba(43, 35, 91, 0.09);
}

.legal-info-card > span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  border-radius: 13px;
  background: #f0edff;
  font-size: 20px;
}

.legal-info-card h3 {
  margin: 0 0 10px;
  color: #242132;
  font-size: 17px;
}

.legal-info-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
}

/* ============================================================
   CALLOUT
   ============================================================ */

.legal-callout {
  position: relative;
  margin-top: 28px;
  padding: 24px 26px 24px 30px;
  border: 1px solid rgba(108, 92, 231, 0.16);
  border-radius: 17px;
  background: linear-gradient(
    135deg,
    rgba(108, 92, 231, 0.08),
    rgba(108, 92, 231, 0.025)
  );
  overflow: hidden;
}

.legal-callout::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #6c5ce7;
}

.legal-callout strong {
  display: block;
  margin-bottom: 8px;
  color: #4f43b4;
  font-size: 14px;
}

.legal-callout p {
  margin: 0;
  font-size: 14px;
}

/* ============================================================
   CONTACT CARD
   ============================================================ */

.legal-contact-section {
  padding-top: 5px;
}

.legal-contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  margin-top: 32px;
  padding: 32px;
  border: 1px solid #e7e4f2;
  border-radius: 22px;
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(108, 92, 231, 0.12),
      transparent 40%
    ),
    #faf9ff;
}

.legal-contact-card .section-label {
  display: block;
  margin-bottom: 10px;
}

.legal-contact-card h3 {
  margin: 0 0 8px;
  color: #211e31;
  font-size: 22px;
}

.legal-contact-card p {
  max-width: 480px;
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
}

.legal-contact-card .btn {
  flex-shrink: 0;
}

/* ============================================================
   FINAL CTA
   ============================================================ */

.legal-final {
  padding: 0 0 110px;
  background: #ffffff;
}

.legal-final-card {
  position: relative;
  max-width: 1050px;
  margin: 0 auto;
  padding: 80px 60px;
  border-radius: 30px;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(255, 255, 255, 0.15),
      transparent 30%
    ),
    linear-gradient(135deg, #211c42, #30276a 55%, #4b3ca2);
  box-shadow: 0 30px 80px rgba(48, 39, 106, 0.2);
}

.legal-final-card::before,
.legal-final-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.legal-final-card::before {
  width: 280px;
  height: 280px;
  top: -150px;
  right: -70px;
  background: rgba(255, 255, 255, 0.08);
}

.legal-final-card::after {
  width: 220px;
  height: 220px;
  bottom: -140px;
  left: -60px;
  background: rgba(157, 143, 255, 0.12);
}

.legal-final-card > * {
  position: relative;
  z-index: 1;
}

.legal-final-card .section-label {
  color: rgba(255, 255, 255, 0.65);
}

.legal-final-card h2 {
  max-width: 700px;
  margin: 18px auto 20px;
  color: #ffffff;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -2px;
}

.legal-final-card h2 span {
  color: #bcb4ff;
}

.legal-final-card > p {
  max-width: 620px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.75;
}

.legal-final-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
}

.legal-final-actions .btn-secondary {
  border-color: rgba(255, 255, 255, 0.25);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

/* ============================================================
   DARK MODE SUPPORT
   ============================================================ */

@media (prefers-color-scheme: dark) {
  .legal-hero {
    background:
      radial-gradient(
        circle at 75% 20%,
        rgba(108, 92, 231, 0.18),
        transparent 35%
      ),
      #11101a;
  }

  .legal-hero-content h1,
  .legal-section h2 {
    color: #f7f6ff;
  }

  .legal-hero-content > p,
  .legal-section p {
    color: #aaa7b9;
  }

  .legal-meta {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
    color: #aaa7b9;
  }

  .legal-content,
  .legal-final {
    background: #11101a;
  }

  .legal-sidebar-card,
  .legal-info-card,
  .legal-list li,
  .legal-contact-card {
    background: #171620;
    border-color: #292737;
  }

  .legal-sidebar nav a {
    color: #aaa7b9;
  }

  .legal-sidebar nav a:hover {
    background: rgba(108, 92, 231, 0.12);
    color: #b8afff;
  }

  .legal-section {
    border-color: #292737;
  }

  .legal-list li {
    color: #aaa7b9;
  }

  .legal-info-card h3,
  .legal-contact-card h3 {
    color: #f0eff8;
  }

  .legal-callout {
    background: rgba(108, 92, 231, 0.09);
    border-color: rgba(108, 92, 231, 0.2);
  }
}

/* ============================================================
   VEXYRA SEARCH PAGE
   PREMIUM SEARCH RESULT CARDS
   COMPLETE style.css REPLACEMENT
   ============================================================ */

/* ============================================================
   SEARCH PAGE
   ============================================================ */

.search-page {
  min-height: 75vh;
  padding: 72px 0 110px;

  background:
    radial-gradient(circle at 8% 5%, rgba(99, 102, 241, 0.1), transparent 28%),
    radial-gradient(
      circle at 92% 8%,
      rgba(14, 165, 233, 0.09),
      transparent 30%
    ),
    linear-gradient(180deg, #f8faff 0%, #f5f7fb 100%);
}

.search-container {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
}

/* ============================================================
   SEARCH HERO
   ============================================================ */

.search-hero {
  position: relative;
  overflow: hidden;

  margin-bottom: 46px;
  padding: 58px 58px 60px;

  border: 1px solid rgba(99, 102, 241, 0.1);
  border-radius: 30px;

  background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 52%, #eef2ff 100%);

  box-shadow:
    0 25px 70px rgba(15, 23, 42, 0.08),
    0 5px 20px rgba(99, 102, 241, 0.05);
}

.search-hero::before {
  content: "";

  position: absolute;

  width: 360px;
  height: 360px;

  top: -210px;
  right: -100px;

  border-radius: 50%;

  background: rgba(99, 102, 241, 0.1);

  filter: blur(4px);

  pointer-events: none;
}

.search-hero::after {
  content: "";

  position: absolute;

  width: 240px;
  height: 240px;

  bottom: -160px;
  left: -80px;

  border-radius: 50%;

  background: rgba(14, 165, 233, 0.08);

  pointer-events: none;
}

.search-hero .section-label {
  position: relative;
  z-index: 1;

  display: inline-flex;
  align-items: center;

  margin-bottom: 17px;
  padding: 8px 14px;

  border: 1px solid rgba(99, 102, 241, 0.15);
  border-radius: 999px;

  background: rgba(99, 102, 241, 0.07);

  color: #4f46e5;

  font-size: 10px;
  font-weight: 800;

  letter-spacing: 0.16em;
}

.search-hero h1 {
  position: relative;
  z-index: 1;

  margin: 0 0 14px;

  color: #0f172a;

  font-size: clamp(38px, 5vw, 62px);
  font-weight: 800;

  line-height: 1.02;
  letter-spacing: -0.055em;
}

.search-hero p {
  position: relative;
  z-index: 1;

  max-width: 690px;

  margin: 0;

  color: #64748b;

  font-size: 17px;
  line-height: 1.7;
}

/* ============================================================
   RESULTS HEADER
   ============================================================ */

.search-results-section {
  position: relative;
}

.search-results-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  gap: 24px;

  margin-bottom: 30px;
}

.search-results-header .section-label {
  display: block;

  margin-bottom: 7px;

  color: #6366f1;

  font-size: 10px;
  font-weight: 800;

  letter-spacing: 0.16em;
}

.search-results-header h2 {
  margin: 0;

  color: #0f172a;

  font-size: 31px;
  font-weight: 800;

  line-height: 1.2;
  letter-spacing: -0.035em;
}

.search-result-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 40px;

  padding: 8px 16px;

  border: 1px solid #e2e8f0;
  border-radius: 999px;

  background: #ffffff;

  color: #475569;

  font-size: 13px;
  font-weight: 750;

  box-shadow: 0 7px 22px rgba(15, 23, 42, 0.06);
}

/* ============================================================
   RESULTS GRID
   ============================================================ */

.search-results-grid {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 26px;

  align-items: stretch;
}

/* ============================================================
   RESULT CARD
   ============================================================ */

.search-result-card {
  position: relative;

  display: flex;
  flex-direction: column;

  min-width: 0;
  min-height: 430px;

  overflow: hidden;

  border: 1px solid #e5eaf2;
  border-radius: 24px;

  background: #ffffff;

  box-shadow:
    0 10px 30px rgba(15, 23, 42, 0.06),
    0 2px 7px rgba(15, 23, 42, 0.03);

  transition:
    transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 280ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 220ms ease;
}

/* ============================================================
   CARD GLOW
   ============================================================ */

.search-result-card::before {
  content: "";

  position: absolute;

  inset: 0;

  z-index: 0;

  pointer-events: none;

  background: radial-gradient(
    circle at 100% 0%,
    rgba(99, 102, 241, 0.15),
    transparent 38%
  );

  opacity: 0;

  transition: opacity 280ms ease;
}

/* ============================================================
   CARD TOP ACCENT
   ============================================================ */

.search-result-card::after {
  content: "";

  position: absolute;

  top: 0;
  left: 24px;
  right: 24px;

  height: 3px;

  border-radius: 0 0 10px 10px;

  background: linear-gradient(90deg, #6366f1, #8b5cf6, #06b6d4);

  opacity: 0;

  transform: scaleX(0.35);

  transform-origin: center;

  transition:
    opacity 280ms ease,
    transform 320ms ease;
}

/* ============================================================
   CARD HOVER
   ============================================================ */

.search-result-card:hover {
  transform: translateY(-10px);

  border-color: rgba(99, 102, 241, 0.32);

  box-shadow:
    0 30px 65px rgba(15, 23, 42, 0.14),
    0 10px 28px rgba(99, 102, 241, 0.1);
}

.search-result-card:hover::before {
  opacity: 1;
}

.search-result-card:hover::after {
  opacity: 1;

  transform: scaleX(1);
}

/* ============================================================
   CARD HEADER
   ============================================================ */

.search-result-card-header {
  position: relative;

  z-index: 1;

  display: flex;
  align-items: flex-start;
  justify-content: space-between;

  gap: 15px;

  padding: 27px 27px 0;
}

/* ============================================================
   AVATAR
   ============================================================ */

.search-result-avatar {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 66px;

  width: 66px;
  height: 66px;

  overflow: hidden;

  border: 1px solid rgba(99, 102, 241, 0.14);

  border-radius: 19px;

  background: linear-gradient(135deg, #eef2ff 0%, #e0f2fe 100%);

  color: #4f46e5;

  font-size: 25px;
  font-weight: 800;

  box-shadow:
    inset 0 0 0 5px rgba(255, 255, 255, 0.55),
    0 10px 25px rgba(99, 102, 241, 0.1);

  transition:
    transform 280ms ease,
    box-shadow 280ms ease;
}

.search-result-card:hover .search-result-avatar {
  transform: scale(1.06) rotate(-2deg);

  box-shadow:
    inset 0 0 0 5px rgba(255, 255, 255, 0.55),
    0 15px 32px rgba(99, 102, 241, 0.2);
}

.search-result-avatar img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
}

/* ============================================================
   BADGES
   ============================================================ */

.search-result-badges {
  display: flex;

  flex-wrap: wrap;

  justify-content: flex-end;

  gap: 7px;
}

.search-result-type,
.search-result-verified {
  display: inline-flex;

  align-items: center;

  min-height: 28px;

  padding: 5px 10px;

  border-radius: 999px;

  font-size: 10px;
  font-weight: 800;

  line-height: 1;

  white-space: nowrap;
}

.search-result-type {
  border: 1px solid #e2e8f0;

  background: #f8fafc;

  color: #475569;
}

.search-result-verified {
  gap: 5px;

  border: 1px solid rgba(16, 185, 129, 0.18);

  background: rgba(16, 185, 129, 0.08);

  color: #059669;
}

.search-result-verified::before {
  content: "✓";

  display: inline-flex;

  align-items: center;
  justify-content: center;

  width: 15px;
  height: 15px;

  border-radius: 50%;

  background: #10b981;

  color: #ffffff;

  font-size: 9px;
}

/* ============================================================
   CARD BODY
   ============================================================ */

.search-result-card-body {
  position: relative;

  z-index: 1;

  display: flex;

  flex: 1;

  flex-direction: column;

  padding: 23px 27px 27px;
}

.search-result-card h3 {
  margin: 0 0 8px;

  color: #0f172a;

  font-size: 21px;
  font-weight: 800;

  line-height: 1.25;

  letter-spacing: -0.025em;

  transition: color 200ms ease;
}

.search-result-card:hover h3 {
  color: #4f46e5;
}

.search-result-category {
  margin-bottom: 15px;

  color: #6366f1;

  font-size: 13px;
  font-weight: 750;
}

.search-result-description {
  display: -webkit-box;

  overflow: hidden;

  margin: 0;

  color: #64748b;

  font-size: 14px;

  line-height: 1.65;

  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

/* ============================================================
   CARD META
   ============================================================ */

.search-result-meta {
  display: flex;

  flex-wrap: wrap;

  gap: 8px 17px;

  margin-top: auto;

  padding-top: 23px;
}

.search-result-location,
.search-result-rating {
  display: inline-flex;

  align-items: center;

  gap: 6px;

  color: #64748b;

  font-size: 12px;

  font-weight: 650;
}

.search-result-location::before {
  content: "⌖";

  color: #6366f1;

  font-size: 15px;
}

.search-result-rating::before {
  content: "★";

  color: #f59e0b;

  font-size: 13px;
}

/* ============================================================
   CARD FOOTER
   ============================================================ */

.search-result-card-footer {
  position: relative;

  z-index: 2;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 14px;

  margin-top: 22px;

  padding-top: 18px;

  border-top: 1px solid #edf1f6;
}

/* ============================================================
   VIEW PROFILE
   PRIMARY ACTION
   ============================================================ */

.search-result-profile-link {
  position: relative;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 10px;

  min-width: 150px;

  min-height: 46px;

  padding: 11px 17px;

  overflow: hidden;

  border: 1px solid #5148e5;

  border-radius: 13px;

  background: linear-gradient(135deg, #6366f1 0%, #5b55e9 55%, #4f46e5 100%);

  color: #ffffff !important;

  font-size: 13px;

  font-weight: 800;

  line-height: 1;

  text-decoration: none !important;

  box-shadow:
    0 10px 22px rgba(99, 102, 241, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);

  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

/* ============================================================
   PROFILE BUTTON SHINE
   ============================================================ */

.search-result-profile-link::before {
  content: "";

  position: absolute;

  top: 0;
  left: -110%;

  width: 70%;
  height: 100%;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.28),
    transparent
  );

  transform: skewX(-20deg);

  transition: left 500ms ease;
}

/* ============================================================
   PROFILE BUTTON ARROW
   ============================================================ */

.search-result-profile-link::after {
  content: "";

  position: relative;

  display: inline-flex;

  align-items: center;

  font-size: 18px;

  font-weight: 900;

  transition: transform 220ms ease;
}

/* ============================================================
   PROFILE BUTTON HOVER
   ============================================================ */

.search-result-profile-link:hover {
  transform: translateY(-3px);

  background: linear-gradient(135deg, #8178ff 0%, #6865f3 50%, #5548e8 100%);

  color: #ffffff !important;

  box-shadow:
    0 17px 34px rgba(99, 102, 241, 0.36),
    0 0 0 4px rgba(99, 102, 241, 0.11);
}

.search-result-profile-link:hover::before {
  left: 135%;
}

.search-result-profile-link:hover::after {
  transform: translateX(5px);
}

/* ============================================================
   PROFILE BUTTON FOCUS
   ============================================================ */

.search-result-profile-link:focus-visible {
  outline: none;

  box-shadow:
    0 0 0 4px rgba(99, 102, 241, 0.2),
    0 15px 30px rgba(99, 102, 241, 0.3);
}

/* ============================================================
   PROFILE BUTTON ACTIVE
   ============================================================ */

.search-result-profile-link:active {
  transform: translateY(-1px);

  box-shadow: 0 8px 18px rgba(99, 102, 241, 0.25);
}

/* ============================================================
   SECONDARY ACTION
   ============================================================ */

.search-result-secondary-action {
  color: #94a3b8;

  font-size: 12px;

  font-weight: 650;
}

/* ============================================================
   CARD FOOTER HOVER INTERACTION
   ============================================================ */

.search-result-card:hover .search-result-card-footer {
  border-top-color: rgba(99, 102, 241, 0.14);
}

/* ============================================================
   LOADING
   ============================================================ */

.search-loading {
  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  min-height: 280px;

  padding: 45px;

  border: 1px solid #e2e8f0;

  border-radius: 25px;

  background: rgba(255, 255, 255, 0.88);

  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.06);
}

.search-loading-spinner {
  width: 44px;
  height: 44px;

  margin-bottom: 18px;

  border: 3px solid #e2e8f0;

  border-top-color: #6366f1;

  border-right-color: #8b5cf6;

  border-radius: 50%;

  animation: vexyraSearchSpin 0.8s linear infinite;
}

.search-loading p {
  margin: 0;

  color: #64748b;

  font-size: 14px;

  font-weight: 650;
}

@keyframes vexyraSearchSpin {
  to {
    transform: rotate(360deg);
  }
}

/* ============================================================
   EMPTY / ERROR
   ============================================================ */

.search-empty {
  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  min-height: 330px;

  padding: 50px 30px;

  border: 1px dashed #cbd5e1;

  border-radius: 25px;

  background: rgba(255, 255, 255, 0.8);

  text-align: center;
}

.search-empty-icon {
  display: flex;

  align-items: center;

  justify-content: center;

  width: 64px;
  height: 64px;

  margin-bottom: 18px;

  border: 1px solid rgba(99, 102, 241, 0.1);

  border-radius: 20px;

  background: #f1f5ff;

  color: #6366f1;

  font-size: 26px;
}

.search-empty h3 {
  margin: 0 0 8px;

  color: #0f172a;

  font-size: 22px;

  font-weight: 800;
}

.search-empty p {
  max-width: 480px;

  margin: 0;

  color: #64748b;

  font-size: 14px;

  line-height: 1.7;
}

/* ============================================================
   HIDDEN
   ============================================================ */

[hidden] {
  display: none !important;
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  .search-result-card,
  .search-result-avatar,
  .search-result-profile-link,
  .search-result-profile-link::before,
  .search-result-profile-link::after,
  .search-result-card::before,
  .search-result-card::after {
    transition: none;
  }

  .search-loading-spinner {
    animation: none;
  }
}

/* ============================================================
   VEXYRA SEARCH — VIEW PROFILE ACTION
   Targets:
   <div class="search-listing-action">
     View Profile →
   </div>
   ============================================================ */

.search-listing-action {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  width: fit-content;
  min-height: 44px;
  padding: 10px 16px;

  color: #4f46e5;
  background: #ffffff;

  border: 1px solid rgba(99, 102, 241, 0.25);
  border-radius: 12px;

  font-size: 13px;
  font-weight: 800;
  line-height: 1;

  cursor: pointer;
  user-select: none;

  box-shadow: 0 5px 14px rgba(99, 102, 241, 0.08);

  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

/* Arrow */
.search-listing-action::after {
  content: "";
  font-size: 17px;
  font-weight: 900;

  transition: transform 0.2s ease;
}

/* ============================================================
   HOVER — THIS IS THE IMPORTANT PART
   ============================================================ */

.search-listing-action:hover {
  color: #ffffff;

  background: linear-gradient(135deg, #6366f1, #4f46e5);

  border-color: #6366f1;

  transform: translateY(-3px);

  box-shadow:
    0 10px 24px rgba(99, 102, 241, 0.28),
    0 0 0 4px rgba(99, 102, 241, 0.08);
}

/* Arrow moves when hovered */
.search-listing-action:hover::after {
  transform: translateX(5px);
}

/* ============================================================
   UNDERLINE / ACTIVE VISUAL
   ============================================================ */

.search-listing-action::before {
  content: "";

  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;

  height: 2px;

  border-radius: 999px;

  background: #ffffff;

  transform: scaleX(0);
  transform-origin: center;

  transition: transform 0.2s ease;
}

.search-listing-action:hover::before {
  transform: scaleX(1);
}

/* ============================================================
   ACTIVE / CLICK
   ============================================================ */

.search-listing-action:active {
  transform: translateY(-1px);

  box-shadow: 0 6px 14px rgba(99, 102, 241, 0.2);
}

/* ============================================================
   CARD HOVER — MAKE VIEW PROFILE STAND OUT
   ============================================================ */

.search-result-card:hover .search-listing-action {
  border-color: rgba(99, 102, 241, 0.45);

  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.14);
}

/* When the CARD is hovered, subtly highlight the action */
.search-result-card:hover .search-listing-action:not(:hover) {
  color: #4f46e5;
  background: #f5f3ff;
}

/* ============================================================
   KEYBOARD ACCESSIBILITY
   ============================================================ */

.search-listing-action:focus-visible {
  outline: none;

  color: #ffffff;
  background: #4f46e5;

  border-color: #4f46e5;

  box-shadow:
    0 0 0 4px rgba(99, 102, 241, 0.2),
    0 10px 24px rgba(99, 102, 241, 0.25);
}

/* ============================================================
   VEXYRA — GLOBAL + UNIFIED DASHBOARD STYLES
   css/style.css

   Base / desktop styles.
   Responsive rules belong in:
   css/responsive.css

   Dashboard supports:
   - Personal accounts
   - Business accounts
   - Professional accounts
   ============================================================ */

/* ============================================================
   1. RESET
   ============================================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;

  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;

  color: #172033;
  background: #f6f8fb;

  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.dashboard-page {
  background: #f6f8fb;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.65;
}

img {
  max-width: 30%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ============================================================
   2. VEXYRA COLOR SYSTEM
   ============================================================ */

:root {
  --vexyra-primary: #5b4df7;
  --vexyra-primary-dark: #4638d7;
  --vexyra-primary-soft: #eeecff;

  --vexyra-text: #172033;
  --vexyra-text-soft: #667085;
  --vexyra-text-muted: #98a2b3;

  --vexyra-white: #ffffff;
  --vexyra-background: #f6f8fb;
  --vexyra-surface: #ffffff;

  --vexyra-border: #e7eaf0;
  --vexyra-border-dark: #d9dde7;

  --vexyra-success: #16a36a;
  --vexyra-success-soft: #eaf8f1;

  --vexyra-warning: #d99000;
  --vexyra-warning-soft: #fff6df;

  --vexyra-danger: #d92d20;
  --vexyra-danger-soft: #fff0ee;

  --vexyra-sidebar: #111827;
  --vexyra-sidebar-text: #d7dce5;
  --vexyra-sidebar-muted: #8993a5;

  --dashboard-sidebar-width: 270px;
  --dashboard-content-max-width: 1500px;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;

  --shadow-sm: 0 1px 2px rgba(16, 24, 40, 0.04);

  --shadow-md: 0 8px 24px rgba(16, 24, 40, 0.06);

  --shadow-lg: 0 18px 45px rgba(16, 24, 40, 0.08);
}

/* ============================================================
   3. GLOBAL HEADER PLACEHOLDER
   ============================================================ */

#global-header {
  position: relative;
  z-index: 100;
}

/* ============================================================
   4. DASHBOARD ROOT
   ============================================================ */

.dashboard {
  position: relative;
  min-height: calc(100vh - 72px);
}

.dashboard[data-dashboard-ready="false"] {
  visibility: visible;
}

/* ============================================================
   5. MOBILE DASHBOARD BAR
   ============================================================ */

.dashboard-mobile-bar {
  display: none;
}

/* ============================================================
   6. DASHBOARD LAYOUT
   ============================================================ */

.dashboard-layout {
  display: flex;
  align-items: stretch;
  min-height: calc(100vh - 72px);
}

/* ============================================================
   7. SIDEBAR
   ============================================================ */

.dashboard-sidebar {
  position: sticky;
  top: 0;

  width: var(--dashboard-sidebar-width);
  min-width: var(--dashboard-sidebar-width);

  height: calc(100vh - 72px);

  background: var(--vexyra-sidebar);
  color: var(--vexyra-sidebar-text);

  overflow-y: auto;

  scrollbar-width: thin;
  scrollbar-color: #343d4f transparent;
}

.dashboard-sidebar-inner {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: 26px 18px 20px;
}

/* ============================================================
   8. SIDEBAR BRAND
   ============================================================ */

.dashboard-sidebar-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;

  padding: 4px 8px 24px;
}

.dashboard-brand {
  display: inline-flex;
  align-items: center;
}

.dashboard-brand-name {
  color: #ffffff;
  font-size: 24px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.7px;
}

.dashboard-brand-name span {
  color: #8b80ff;
}

.dashboard-account-badge {
  display: inline-flex;
  align-items: center;

  min-height: 26px;
  padding: 4px 9px;

  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;

  color: #cbd2df;
  background: rgba(255, 255, 255, 0.06);

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

/* ============================================================
   9. USER SUMMARY
   ============================================================ */

.dashboard-user-summary {
  display: flex;
  align-items: center;
  gap: 12px;

  margin: 0 4px 24px;
  padding: 14px;

  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);

  background: rgba(255, 255, 255, 0.045);
}

.dashboard-user-avatar {
  width: 42px;
  height: 42px;
  min-width: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  color: #ffffff;
  background: linear-gradient(135deg, #6759ff, #897fff);

  font-size: 16px;
  font-weight: 800;
}

.dashboard-user-details {
  min-width: 0;

  display: flex;
  flex-direction: column;
  gap: 3px;
}

.dashboard-user-details strong {
  color: #ffffff;

  font-size: 14px;
  font-weight: 700;

  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dashboard-user-details span {
  color: var(--vexyra-sidebar-muted);

  font-size: 11px;

  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ============================================================
   10. NAVIGATION
   ============================================================ */

.dashboard-navigation {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dashboard-nav-group,
.dashboard-role-navigation {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 17px;
}

.dashboard-nav-label {
  margin: 0 10px 7px;

  color: #727d90;

  font-size: 10px;
  line-height: 1.2;
  font-weight: 800;

  letter-spacing: 1px;
  text-transform: uppercase;
}

.dashboard-nav-item {
  width: 100%;

  display: flex;
  align-items: center;
  gap: 12px;

  min-height: 44px;
  padding: 10px 12px;

  border: 1px solid transparent;
  border-radius: 10px;

  color: #b9c1ce;
  background: transparent;

  font-size: 13px;
  font-weight: 600;

  text-align: left;

  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.dashboard-nav-item:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

.dashboard-nav-item.active {
  color: #ffffff;
  background: rgba(91, 77, 247, 0.2);
  border-color: rgba(139, 128, 255, 0.16);
}

.dashboard-nav-icon {
  width: 22px;
  min-width: 22px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: #7f8a9e;

  font-size: 15px;
}

.dashboard-nav-item.active .dashboard-nav-icon {
  color: #9b93ff;
}

/* ============================================================
   11. SIDEBAR FOOTER
   ============================================================ */

.dashboard-sidebar-footer {
  margin-top: auto;
  padding-top: 24px;
}

.dashboard-logout-button {
  width: 100%;

  display: flex;
  align-items: center;
  gap: 11px;

  min-height: 44px;
  padding: 10px 12px;

  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;

  color: #b7bfcd;
  background: transparent;

  font-size: 13px;
  font-weight: 600;

  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.dashboard-logout-button:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

/* ============================================================
   12. MOBILE SIDEBAR OVERLAY
   ============================================================ */

.dashboard-sidebar-overlay {
  display: none;
}

/* ============================================================
   13. MAIN AREA
   ============================================================ */

.dashboard-main {
  flex: 1;
  min-width: 0;

  background: var(--vexyra-background);
}

/* ============================================================
   14. DASHBOARD HEADER
   ============================================================ */

.dashboard-header {
  border-bottom: 1px solid var(--vexyra-border);
  background: rgba(255, 255, 255, 0.9);
}

.dashboard-header-content {
  width: min(calc(100% - 64px), var(--dashboard-content-max-width));

  min-height: 150px;

  margin: 0 auto;
  padding-left: 50px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.dashboard-eyebrow,
.dashboard-section-eyebrow {
  margin: 0 0 7px;

  color: var(--vexyra-primary);

  font-size: 11px;
  line-height: 1.3;
  font-weight: 800;

  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.dashboard-title {
  margin: 0;

  color: var(--vexyra-text);

  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.12;
  font-weight: 800;

  letter-spacing: -1.2px;
}

.dashboard-title span {
  color: var(--vexyra-primary);
}

.dashboard-subtitle {
  max-width: 700px;

  margin: 9px 0 0;

  color: var(--vexyra-text-soft);

  font-size: 14px;
  line-height: 1.65;
}

/* ============================================================
   15. HEADER STATUS
   ============================================================ */

.dashboard-header-status {
  min-width: 175px;

  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  column-gap: 8px;
  row-gap: 3px;

  padding: 14px 16px;

  border: 1px solid var(--vexyra-border);
  border-radius: var(--radius-md);

  background: var(--vexyra-white);
  box-shadow: var(--shadow-sm);
}

.dashboard-status-label {
  grid-column: 1 / -1;

  color: var(--vexyra-text-muted);

  font-size: 10px;
  font-weight: 800;

  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.dashboard-header-status strong {
  color: var(--vexyra-text);

  font-size: 13px;
}

.dashboard-header-status > span:last-child {
  color: var(--vexyra-success);

  font-size: 12px;
  font-weight: 600;
}

.dashboard-status-dot {
  width: 7px;
  height: 7px;

  display: inline-block;

  border-radius: 50%;
  background: var(--vexyra-success);
}

/* ============================================================
   16. DASHBOARD CONTENT
   ============================================================ */

.dashboard-content {
  width: min(calc(100% - 64px), var(--dashboard-content-max-width));

  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 24px;
  padding-left: 40px;
}

/* ============================================================
   17. DASHBOARD SECTIONS
   ============================================================ */

.dashboard-section {
  animation: dashboardSectionIn 0.25s ease;
}

@keyframes dashboardSectionIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dashboard-section-header {
  margin-bottom: 28px;
  padding-left: 50px;
  padding-top: 40px;
}

.dashboard-section-header.compact {
  margin-top: 38px;
  margin-bottom: 20px;
}

.dashboard-section-header h2 {
  margin: 0;

  color: var(--vexyra-text);

  font-size: 24px;
  line-height: 1.25;
  font-weight: 800;

  letter-spacing: -0.5px;
}

.dashboard-section-header > p:last-child {
  max-width: 720px;

  margin: 8px 0 0;

  color: var(--vexyra-text-soft);

  font-size: 14px;
  line-height: 1.65;
}

/* ============================================================
   18. CARD GRID
   ============================================================ */

.dashboard-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.dashboard-card {
  min-height: 116px;

  display: flex;
  align-items: center;
  gap: 15px;

  padding: 20px;

  border: 1px solid var(--vexyra-border);
  border-radius: var(--radius-lg);

  background: var(--vexyra-white);
  box-shadow: var(--shadow-sm);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.dashboard-card:hover {
  transform: translateY(-2px);

  border-color: #dcdfea;
  box-shadow: var(--shadow-md);
}

.dashboard-card-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;

  color: var(--vexyra-primary);
  background: var(--vexyra-primary-soft);

  font-size: 17px;
  font-weight: 800;
}

.dashboard-card > div:last-child {
  min-width: 0;

  display: flex;
  flex-direction: column;
  gap: 5px;
}

.dashboard-card-label {
  color: var(--vexyra-text-muted);

  font-size: 11px;
  font-weight: 700;
}

.dashboard-card strong {
  color: var(--vexyra-text);

  font-size: 14px;
  line-height: 1.4;

  overflow: hidden;
  text-overflow: ellipsis;
}

/* ============================================================
   19. INFORMATION GRID
   ============================================================ */

.dashboard-information-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.dashboard-information-card {
  padding: 18px;

  border: 1px solid var(--vexyra-border);
  border-radius: var(--radius-md);

  background: var(--vexyra-white);
}

.dashboard-information-card span {
  display: block;

  margin-bottom: 7px;

  color: var(--vexyra-text-muted);

  font-size: 11px;
  font-weight: 700;
}

.dashboard-information-card strong {
  display: block;

  color: var(--vexyra-text);

  font-size: 14px;
  line-height: 1.45;
}

/* ============================================================
   20. PANEL CARD
   ============================================================ */

.dashboard-panel-card {
  padding: 28px;

  border: 1px solid var(--vexyra-border);
  border-radius: var(--radius-lg);

  background: var(--vexyra-white);
  box-shadow: var(--shadow-sm);
}

/* ============================================================
   21. FORM GRID
   ============================================================ */

.dashboard-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.dashboard-form-group {
  margin-bottom: 22px;
}

.dashboard-form-group label {
  display: block;

  margin-bottom: 8px;

  color: var(--vexyra-text);

  font-size: 13px;
  line-height: 1.4;
  font-weight: 700;
}

.dashboard-form-group input,
.dashboard-form-group select,
.dashboard-form-group textarea {
  width: 100%;

  border: 1px solid var(--vexyra-border-dark);
  border-radius: 10px;

  outline: none;

  color: var(--vexyra-text);
  background: #ffffff;

  font-size: 14px;
  line-height: 1.5;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.dashboard-form-group input,
.dashboard-form-group select {
  min-height: 48px;
  padding: 11px 13px;
}

.dashboard-form-group textarea {
  min-height: 130px;
  padding: 12px 13px;

  resize: vertical;
}

.dashboard-form-group input::placeholder,
.dashboard-form-group textarea::placeholder {
  color: #a6adba;
}

.dashboard-form-group input:focus,
.dashboard-form-group select:focus,
.dashboard-form-group textarea:focus {
  border-color: var(--vexyra-primary);

  box-shadow: 0 0 0 3px rgba(91, 77, 247, 0.1);
}

.dashboard-form-group input[readonly] {
  color: #667085;
  background: #f7f8fa;
  cursor: not-allowed;
}

/* ============================================================
   22. FORM ACTIONS
   ============================================================ */

.dashboard-form-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;

  margin-top: 8px;
}

.dashboard-primary-button,
.dashboard-secondary-button,
.dashboard-danger-button {
  min-height: 44px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 10px 17px;

  border-radius: 10px;

  font-size: 13px;
  font-weight: 700;

  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.dashboard-primary-button {
  border: 1px solid var(--vexyra-primary);
  color: #ffffff;
  background: var(--vexyra-primary);
  box-shadow: 0 4px 12px rgba(91, 77, 247, 0.18);
}

.dashboard-primary-button:hover {
  border-color: var(--vexyra-primary-dark);
  background: var(--vexyra-primary-dark);
  transform: translateY(-1px);
}

.dashboard-secondary-button {
  border: 1px solid var(--vexyra-border-dark);
  color: var(--vexyra-text);
  background: #ffffff;
}

.dashboard-secondary-button:hover {
  border-color: #bfc5d2;
  background: #f8f9fb;
}

.dashboard-danger-button {
  border: 1px solid #f2b8b5;
  color: var(--vexyra-danger);
  background: #ffffff;
}

.dashboard-danger-button:hover {
  border-color: var(--vexyra-danger);
  background: var(--vexyra-danger-soft);
}

/* ============================================================
   23. FORM MESSAGES
   ============================================================ */

.dashboard-form-message {
  margin: 17px 0 0;
  padding: 11px 13px;

  border: 1px solid var(--vexyra-border);
  border-radius: 9px;

  color: var(--vexyra-text-soft);
  background: #f8f9fb;

  font-size: 13px;
  line-height: 1.5;
}

.dashboard-form-message[data-type="success"] {
  border-color: #b8e4cf;
  color: #087443;
  background: var(--vexyra-success-soft);
}

.dashboard-form-message[data-type="error"] {
  border-color: #f3c1bd;
  color: #b42318;
  background: var(--vexyra-danger-soft);
}

/* ============================================================
   24. MEDIA
   ============================================================ */

.dashboard-media-block {
  padding-bottom: 28px;
  margin-bottom: 28px;

  border-bottom: 1px solid var(--vexyra-border);
}

.dashboard-media-block:last-of-type {
  margin-bottom: 0;
}

.dashboard-media-block h3 {
  margin: 0 0 15px;

  color: var(--vexyra-text);

  font-size: 16px;
  font-weight: 800;
}

.dashboard-logo-preview {
  width: 140px;
  height: 140px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 15px;

  overflow: hidden;

  border: 1px dashed var(--vexyra-border-dark);
  border-radius: 16px;

  color: var(--vexyra-text-muted);
  background: #f8f9fb;

  font-size: 12px;
}

.dashboard-logo-preview img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.dashboard-media-block input[type="file"] {
  max-width: 100%;

  color: var(--vexyra-text-soft);

  font-size: 13px;
}

.dashboard-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;

  margin-top: 18px;
}

.dashboard-photo-grid:empty {
  display: none;
}

.dashboard-photo-item {
  position: relative;

  aspect-ratio: 1 / 1;

  overflow: hidden;

  border: 1px solid var(--vexyra-border);
  border-radius: 12px;

  background: #f4f5f7;
}

.dashboard-photo-item img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

/* ============================================================
   25. ACTIVITY
   ============================================================ */

.dashboard-activity-loading,
.dashboard-activity-empty {
  padding: 25px;

  border-radius: 12px;

  color: var(--vexyra-text-soft);
  background: #f8f9fb;

  text-align: center;

  font-size: 13px;
}

.dashboard-activity-list {
  display: flex;
  flex-direction: column;
}

.dashboard-activity-item {
  display: grid;
  grid-template-columns: minmax(140px, 0.35fr) 1fr auto;
  align-items: center;
  gap: 20px;

  padding: 18px 0;

  border-bottom: 1px solid var(--vexyra-border);
}

.dashboard-activity-item:first-child {
  padding-top: 0;
}

.dashboard-activity-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.dashboard-activity-item strong {
  color: var(--vexyra-text);

  font-size: 13px;
}

.dashboard-activity-item p {
  margin: 0;

  color: var(--vexyra-text-soft);

  font-size: 13px;
  line-height: 1.5;
}

.dashboard-activity-item > span {
  color: var(--vexyra-text-muted);

  font-size: 11px;
  white-space: nowrap;
}

/* ============================================================
   26. SETTINGS
   ============================================================ */

.dashboard-setting-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;

  padding: 22px 0;

  border-bottom: 1px solid var(--vexyra-border);
}

.dashboard-setting-row:first-child {
  padding-top: 0;
}

.dashboard-setting-row:last-of-type {
  border-bottom: 0;
}

.dashboard-setting-row h3 {
  margin: 0 0 5px;

  color: var(--vexyra-text);

  font-size: 14px;
  font-weight: 800;
}

.dashboard-setting-row p {
  max-width: 650px;

  margin: 0;

  color: var(--vexyra-text-soft);

  font-size: 12px;
  line-height: 1.55;
}

.dashboard-danger-setting {
  margin-top: 8px;
  padding: 22px;

  border: 1px solid #f3d2cf;
  border-radius: 12px;

  background: #fffafa;
}

/* ============================================================
   27. TOGGLE
   ============================================================ */

.dashboard-toggle {
  position: relative;

  width: 48px;
  height: 27px;
  min-width: 48px;

  display: inline-block;
}

.dashboard-toggle input {
  position: absolute;

  width: 1px;
  height: 1px;

  opacity: 0;
}

.dashboard-toggle-slider {
  position: absolute;
  inset: 0;

  border-radius: 999px;

  background: #d7dce5;

  cursor: pointer;

  transition: background 0.2s ease;
}

.dashboard-toggle-slider::before {
  content: "";

  position: absolute;

  width: 21px;
  height: 21px;

  top: 3px;
  left: 3px;

  border-radius: 50%;

  background: #ffffff;

  box-shadow: 0 1px 4px rgba(16, 24, 40, 0.2);

  transition: transform 0.2s ease;
}

.dashboard-toggle input:checked + .dashboard-toggle-slider {
  background: var(--vexyra-primary);
}

.dashboard-toggle input:checked + .dashboard-toggle-slider::before {
  transform: translateX(21px);
}

.dashboard-toggle input:focus-visible + .dashboard-toggle-slider {
  outline: 3px solid rgba(91, 77, 247, 0.18);
  outline-offset: 2px;
}

/* ============================================================
   28. ROLE VISIBILITY
   ============================================================ */

.dashboard-role-navigation[hidden],
.dashboard-role-content[hidden],
.dashboard-section[hidden] {
  display: none !important;
}

/* ============================================================
   29. DASHBOARD LOADING
   ============================================================ */

.dashboard[data-loading="true"] .dashboard-content {
  opacity: 0.55;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.dashboard[data-loading="false"] .dashboard-content {
  opacity: 1;
  transition: opacity 0.2s ease;
}

/* ============================================================
   30. ACCESSIBILITY
   ============================================================ */

.dashboard-nav-item:focus-visible,
.dashboard-primary-button:focus-visible,
.dashboard-secondary-button:focus-visible,
.dashboard-danger-button:focus-visible,
.dashboard-logout-button:focus-visible,
.dashboard-mobile-menu:focus-visible {
  outline: 3px solid rgba(91, 77, 247, 0.25);
  outline-offset: 2px;
}

/* ============================================================
   31. GLOBAL FOOTER SPACING
   ============================================================ */

#global-footer {
  position: relative;
}

/* ============================================================
   32. REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
