:root {
  --background: #ffffff;
  --background-2: #f6f7fb;
  --foreground: #14142b;
  --card: #ffffff;
  --card-foreground: #14142b;
  --surface-2: #f9f9fd;
  --popover: #ffffff;
  --popover-foreground: #14142b;
  --primary: #5b5bd6;
  --primary-foreground: #ffffff;
  --primary-light: #7b7bf0;
  --primary-subtle: #ededff;
  --secondary: #f6f7fb;
  --secondary-foreground: #14142b;
  --muted: #f6f7fb;
  --muted-foreground: #6c6c8f;
  --accent: #0ecad4;
  --accent-foreground: #062a2c;
  --accent-soft: #e2fafb;
  --destructive: #ef4444;
  --border: #e3e3ef;
  --input: #e3e3ef;
  --ring: #5b5bd6;
  --warning: #f59e0b;
  --success: #22c55e;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Sora', 'Inter', sans-serif;
  --radius-sm: calc(var(--radius) * 0.6);
  --radius-md: calc(var(--radius) * 0.8);
  --radius-lg: var(--radius);
  --radius-xl: calc(var(--radius) * 1.4);
  --radius-2xl: calc(var(--radius) * 1.8);
  --radius-3xl: calc(var(--radius) * 2.2);
  --radius-4xl: calc(var(--radius) * 2.6);
}

[data-theme="dark"] {
  --background: #0f0f1a;
  --background-2: #16162a;
  --foreground: #f0f0ff;

  --card: #1a1a2e;
  --card-foreground: #f0f0ff;
  --surface-2: #22223a;

  --popover: #1a1a2e;
  --popover-foreground: #f0f0ff;

  --primary: #7b7bf0;
  --primary-foreground: #0f0f1a;
  --primary-light: #9a9aff;
  --primary-subtle: rgba(91, 91, 214, 0.18);

  --secondary: #16162a;
  --secondary-foreground: #f0f0ff;

  --muted: #16162a;
  --muted-foreground: #a8a8cc;

  --accent: #0ecad4;
  --accent-foreground: #062a2c;
  --accent-soft: rgba(14, 202, 212, 0.14);

  --destructive: #ef4444;

  --border: #2a2a48;
  --input: #2a2a48;
  --ring: #7b7bf0;

  --warning: #f59e0b;
  --success: #22c55e;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-family: var(--gv-font-sans);
    -webkit-font-smoothing: antialiased;
}

body {
    background: var(--gv-bg);
    color: var(--gv-text-primary);
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; border: none; cursor: pointer; }

/* ============================================
    UTILITY CLASSES
    ============================================ */
.border-border {
  border-color: var(--border);
}

.bg-background {
  background-color: var(--background);
}

.text-foreground {
  color: var(--foreground);
}

.text-muted-foreground {
  color: var(--muted-foreground);
}

/* ============================================
    HERO SECTION
    ============================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: 0;
}

/* Background layers */
.hero-bg {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: -10;
}

.grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.7;

  background-image:
    linear-gradient(
      to right,
      color-mix(in oklab, var(--border) 60%, transparent) 1px,
      transparent 1px
    ),
    linear-gradient(
      to bottom,
      color-mix(in oklab, var(--border) 60%, transparent) 1px,
      transparent 1px
    );
  background-size: 44px 44px;

  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 75%);
}

.blur-orb-1 {
  position: absolute;
  top: -6rem;
  left: 50%;
  width: 900px;
  height: 520px;
  transform: translateX(-50%);
  border-radius: 50%;
  background-color: color-mix(in oklab, var(--primary) 15%, transparent);
  filter: blur(130px);
}

.blur-orb-2 {
  position: absolute;
  right: 0;
  top: 10rem;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background-color: color-mix(in oklab, var(--accent) 10%, transparent);
  filter: blur(120px);
}

/* Hero grid */
.hero-grid {
  display: grid;
  gap: 3rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 3.5rem 1.25rem 5rem;
}

@media (min-width: 640px) {
  .hero-grid {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 2rem;
    padding-top: 5rem;
    padding-bottom: 7rem;
  }
}

/* Left column */
.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-heading {
  margin-top: 1.5rem;
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--foreground);
  max-width: 30ch;

  opacity: 0;
  animation: gv-rise 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 80ms;
}

@media (min-width: 640px) {
  .hero-heading {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-heading {
    font-size: 3.75rem;
  }
}

.hero-heading .highlight {
  position: relative;
  white-space: nowrap;
  color: var(--primary);
}

.heading-underline {
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 100%;
  color: var(--accent);
}

/* Subheading */
.hero-sub {
  margin-top: 1.5rem;
  max-width: 36rem;
  font-size: 1.125rem;
  line-height: 1.625;
  color: var(--muted-foreground);

  opacity: 0;
  animation: gv-rise 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 160ms;
}

/* Search form */
.search-form {
  margin-top: 2rem;
  width: 100%;
  max-width: 36rem;

  opacity: 0;
  animation: gv-rise 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 240ms;
}

.search-bar {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background-color: var(--card);
  padding: 0.5rem;
  box-shadow: 0 10px 40px -12px rgba(20, 20, 43, 0.18);
}

@media (min-width: 640px) {
  .search-bar {
    flex-direction: row;
    align-items: center;
  }
}

.search-input-wrap {
  display: flex;
  flex: 1;
  align-items: center;
  gap: 0.75rem;
  padding: 0 0.75rem;
}

.search-input-wrap .fa-magnifying-glass {
  color: var(--muted-foreground);
  font-size: 1rem;
}

.search-input {
  height: 2.75rem;
  width: 100%;
  background: transparent;
  font-size: 0.875rem;
  color: var(--foreground);
}

.search-input::placeholder {
  color: var(--muted-foreground);
}

.search-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 2.75rem;
  padding: 0 1.5rem;
  border-radius: 0.75rem;
  background-color: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  transition: transform 0.15s, box-shadow 0.15s;
}

.search-submit:hover {
  transform: translateY(-2px);
}

.search-submit .fa-arrow-right {
  font-size: 0.75rem;
}

/* Popular skills */
.popular-skills {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.popular-label {
  font-weight: 500;
}

.skill-pill {
  border-radius: 9999px;
  border: 1px solid var(--border);
  background-color: color-mix(in oklab, var(--secondary) 50%, transparent);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--foreground);
  transition: border-color 0.15s, color 0.15s;
}

.skill-pill:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* Trust row */
.trust-row {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;

  opacity: 0;
  animation: gv-rise 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 320ms;
}

.trust-avatars {
  display: flex;
  align-items: center;
}

.trust-avatar {
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 2px solid var(--background);
  overflow: hidden;
  flex-shrink: 0;
}

.trust-avatar + .trust-avatar {
  margin-left: -0.75rem;
}

.trust-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trust-count {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 2px solid var(--background);
  background-color: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.75rem;
  font-weight: 700;
  margin-left: -0.75rem;
  flex-shrink: 0;
}

.trust-stars {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.trust-stars .fa-star {
  font-size: 13px;
  color: var(--warning);
}

.trust-rating {
  margin-top: 0.125rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.trust-rating strong {
  font-weight: 600;
  color: var(--foreground);
}

/* ============================================
    RIGHT COLUMN — Visual
    ============================================ */
.hero-right {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 32rem;

  opacity: 0;
  animation: gv-rise 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 200ms;
}

@media (min-width: 1024px) {
  .hero-right {
    margin: 0;
  }
}

.hero-right-inner {
  position: relative;
}

/* Main image card */
.image-card {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--border);
  background-color: var(--card);
  box-shadow: 0 30px 80px -24px rgba(20, 20, 43, 0.35);
}

.image-card-inner {
  position: relative;
  aspect-ratio: 4 / 5;
  width: 100%;
}

.image-card-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20, 20, 43, 0.55) 0%,
    transparent 50%,
    transparent 100%
  );
}

/* Profile chip */
.profile-chip {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background-color: rgba(20, 20, 43, 0.55);
  padding: 0.75rem 1rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.profile-chip-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.profile-avatar {
  position: relative;
  display: flex;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  overflow: hidden;
  flex-shrink: 0;
}

.profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-info {
  color: #fff;
}

.profile-name {
  font-size: 0.875rem;
  font-weight: 600;
}

.profile-role {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

.profile-status {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  border-radius: 9999px;
  background-color: var(--success);
  padding: 0.25rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
}

.profile-status-dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background-color: #fff;
}

/* Floating card: match */
.float-card-match {
  position: absolute;
  left: -1rem;
  top: 2.5rem;
  display: none;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background-color: color-mix(in oklab, var(--card) 95%, transparent);
  padding: 1rem;
  box-shadow: 0 20px 50px -16px rgba(20, 20, 43, 0.3);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

@media (min-width: 640px) {
  .float-card-match {
    display: block;
  }
}

.float-card-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.float-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background-color: var(--primary-subtle);
  color: var(--primary);
}

.float-card-label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.float-card-value {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--foreground);
}

.float-card-icon-accent {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background-color: var(--accent-soft);
  color: var(--accent-foreground);
}

.float-card-big {
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1;
  color: var(--foreground);
}

.float-card-sub {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* Decorative ring */
.deco-ring {
  position: absolute;
  right: -1.5rem;
  top: -1.5rem;
  z-index: -10;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  border: 4px dashed color-mix(in oklab, var(--primary) 25%, transparent);
}

/* ============================================
    LOGO MARQUEE
    ============================================ */
.marquee-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background-color: color-mix(in oklab, var(--background) 60%, transparent);
}

.marquee-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 1.25rem;
}

@media (min-width: 640px) {
  .marquee-inner {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.marquee-label {
  margin-bottom: 1.5rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-foreground);
}

.marquee-track-wrap {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent,
    #000 12%,
    #000 88%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    #000 12%,
    #000 88%,
    transparent
  );
}

.marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 3.5rem;
  animation: gv-marquee 32s linear infinite;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--muted-foreground);
  transition: color 0.15s;
}

.marquee-item:hover {
  color: var(--foreground);
}

.marquee-item .fa-brands {
  font-size: 1.875rem;
}

.marquee-item-label {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
}

/* ============================================
    KEYFRAMES
    ============================================ */

@keyframes gv-rise {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gv-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes gv-ping {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  75%, 100% {
    opacity: 0;
    transform: scale(2);
  }
}

.hp-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.hp-section {
  padding: 96px 0;
}

.hp-section-sm {
  padding: 72px 0;
}

.hp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gv-primary);
  background: var(--gv-primary-subtle);
  padding: 6px 14px;
  border-radius: var(--gv-radius-full);
  margin-bottom: 20px;
}

.hp-section-heading {
  font-family: var(--gv-font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--gv-text-primary);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hp-section-sub {
  font-size: 17px;
  color: var(--gv-text-secondary);
  line-height: 1.7;
  max-width: 560px;
}

.hp-text-center { text-align: center; }
.hp-text-center .hp-section-sub { margin: 0 auto; }

.hp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--gv-font-sans);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--gv-radius-md);
  padding: 13px 26px;
  transition: var(--gv-transition);
  white-space: nowrap;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.hp-btn-primary {
  background: var(--gv-primary);
  color: #fff;
  box-shadow: 0 2px 12px rgba(91,91,214,0.28);
}

.hp-btn-primary:hover {
  background: var(--gv-primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(91,91,214,0.38);
}

.hp-btn-secondary {
  background: var(--gv-bg);
  color: var(--gv-text-primary);
  border: 1.5px solid var(--gv-border-2);
}

.hp-btn-secondary:hover {
  border-color: var(--gv-primary);
  color: var(--gv-primary);
  background: var(--gv-primary-subtle);
}

.hp-btn-ghost {
  background: transparent;
  color: var(--gv-primary);
  border: 1.5px solid var(--gv-primary);
}

.hp-btn-ghost:hover {
  background: var(--gv-primary-subtle);
}

.hp-btn-lg {
  font-size: 16px;
  padding: 16px 32px;
  border-radius: var(--gv-radius-lg);
}

.hp-btn-sm {
  font-size: 13px;
  padding: 9px 18px;
  border-radius: var(--gv-radius-sm);
}


.hp-categories {
  background: var(--gv-bg-2);
}

.hp-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
}

.hp-section-header-content {}

.hp-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.hp-cat-card {
  background: var(--gv-surface);
  border: 1px solid var(--gv-border);
  border-radius: var(--gv-radius-lg);
  padding: 28px 24px;
  transition: var(--gv-transition-slow);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.hp-cat-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gv-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--gv-transition-slow);
}

.hp-cat-card:hover {
  border-color: var(--gv-border-2);
  box-shadow: var(--gv-shadow-md);
  transform: translateY(-3px);
}

.hp-cat-card:hover::before {
  transform: scaleX(1);
}

.hp-cat-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--gv-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.hp-cat-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--gv-text-primary);
  line-height: 1.3;
}

.hp-cat-count {
  font-size: 13px;
  color: var(--gv-text-muted);
  margin-top: 4px;
}

.hp-cat-arrow {
  font-size: 14px;
  color: var(--gv-primary);
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  font-size: 13px;
  margin-top: auto;
  opacity: 0;
  transform: translateX(-6px);
  transition: var(--gv-transition);
}

.hp-cat-card:hover .hp-cat-arrow {
  opacity: 1;
  transform: translateX(0);
}

.hp-cat-icon-purple { background: var(--gv-primary-subtle); color: var(--gv-primary); }
.hp-cat-icon-teal { background: rgba(14,202,212,0.12); color: var(--gv-accent-dark); }
.hp-cat-icon-green { background: rgba(34,197,94,0.12); color: #16a34a; }
.hp-cat-icon-amber { background: rgba(245,158,11,0.12); color: #b45309; }
.hp-cat-icon-rose { background: rgba(239,68,68,0.1); color: #dc2626; }
.hp-cat-icon-blue { background: rgba(59,130,246,0.12); color: #2563eb; }
.hp-cat-icon-indigo { background: rgba(99,102,241,0.12); color: #4338ca; }
.hp-cat-icon-pink { background: rgba(236,72,153,0.12); color: #be185d; }


.hp-how-it-works {
  background: var(--gv-bg);
}

.hp-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.hp-steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.666% + 24px);
  right: calc(16.666% + 24px);
  height: 1px;
  background: linear-gradient(90deg, var(--gv-border) 0%, var(--gv-primary) 50%, var(--gv-border) 100%);
  pointer-events: none;
}

.hp-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.hp-step-num-wrap {
  position: relative;
  margin-bottom: 24px;
}

.hp-step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gv-bg);
  border: 2px solid var(--gv-border-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--gv-font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--gv-primary);
  position: relative;
  z-index: 1;
}

.hp-step-icon-ring {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gv-primary-subtle);
  border: 2px solid rgba(91,91,214,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--gv-primary);
  position: relative;
  z-index: 1;
}

.hp-step-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--gv-text-primary);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.hp-step-desc {
  font-size: 15px;
  color: var(--gv-text-secondary);
  line-height: 1.7;
}

.hp-tabs-container {
  margin-top: 64px;
}

.hp-tabs-nav {
  display: flex;
  background: var(--gv-bg-2);
  border-radius: var(--gv-radius-lg);
  padding: 6px;
  gap: 4px;
  max-width: 480px;
  margin: 0 auto 52px;
}

.hp-tab-btn {
  flex: 1;
  padding: 11px 20px;
  border-radius: var(--gv-radius-md);
  font-size: 14px;
  font-weight: 600;
  color: var(--gv-text-secondary);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: var(--gv-transition);
  text-align: center;
}

.hp-tab-btn.active {
  background: var(--gv-surface);
  color: var(--gv-primary);
  box-shadow: var(--gv-shadow-sm);
}

.hp-tab-pane { display: none; }
.hp-tab-pane.active { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }

.hp-tab-visual {
  border-radius: var(--gv-radius-xl);
  overflow: hidden;
  box-shadow: var(--gv-shadow-lg);
  aspect-ratio: 4/3;
  background: var(--gv-bg-3);
}

.hp-tab-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hp-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hp-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.hp-benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--gv-radius-md);
  background: var(--gv-primary-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--gv-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.hp-benefit-text {}

.hp-benefit-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--gv-text-primary);
  margin-bottom: 4px;
}

.hp-benefit-desc {
  font-size: 14px;
  color: var(--gv-text-secondary);
  line-height: 1.65;
}

.hp-tab-cta {
  margin-top: 32px;
}

.hp-how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 64px;
  position: relative;
  padding-top: 0;
}

.hp-how-step {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.hp-how-step-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 4px;
}

.hp-how-step-bubble {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gv-primary-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--gv-font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--gv-primary);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.hp-how-step-line {
  flex: 1;
  height: 2px;
  background: var(--gv-border);
  position: relative;
}

.hp-how-step:last-child .hp-how-step-line {
  display: none;
}

.hp-how-step-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--gv-text-primary);
  margin-bottom: 6px;
}

.hp-how-step-desc {
  font-size: 14px;
  color: var(--gv-text-secondary);
  line-height: 1.65;
}


.hp-trust {
  background: var(--gv-bg-2);
}

.hp-trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hp-trust-signals {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}

.hp-trust-signal {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 24px;
  background: var(--gv-surface);
  border: 1px solid var(--gv-border);
  border-radius: var(--gv-radius-lg);
}

.hp-trust-signal-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--gv-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.hp-trust-signal-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--gv-text-primary);
  margin-bottom: 5px;
}

.hp-trust-signal-desc {
  font-size: 13px;
  color: var(--gv-text-secondary);
  line-height: 1.65;
}

.hp-trust-visual-wrap {
  position: relative;
}

.hp-trust-img {
  border-radius: var(--gv-radius-xl);
  overflow: hidden;
  box-shadow: var(--gv-shadow-xl);
  aspect-ratio: 4/5;
  background: var(--gv-bg-3);
}

.hp-trust-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hp-stars {
  display: flex;
  align-items: center;
  gap: 2px;
  color: var(--gv-warning);
  font-size: 14px;
  margin-top: 4px;
}

.hp-cta {
  background: var(--gv-topbar-bg);
  position: relative;
  overflow: hidden;
}

.hp-cta::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(91,91,214,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.hp-cta::after {
  content: '';
  position: absolute;
  bottom: -150px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(14,202,212,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hp-cta-inner {
  position: relative;
  z-index: 1;
}

.hp-cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gv-accent);
  background: rgba(14,202,212,0.12);
  border: 1px solid rgba(14,202,212,0.2);
  padding: 6px 14px;
  border-radius: var(--gv-radius-full);
  margin-bottom: 24px;
}

.hp-cta-title {
  font-family: var(--gv-font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hp-cta-title span {
  color: var(--gv-accent);
}

.hp-cta-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.hp-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hp-btn-cta-primary {
  background: var(--gv-primary);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: var(--gv-radius-lg);
  border: none;
  cursor: pointer;
  transition: var(--gv-transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 0 0 4px rgba(91,91,214,0.2);
}

.hp-btn-cta-primary:hover {
  background: var(--gv-primary-light);
  transform: translateY(-2px);
  box-shadow: 0 0 0 4px rgba(91,91,214,0.3), 0 8px 24px rgba(91,91,214,0.3);
}

.hp-btn-cta-secondary {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.9);
  font-size: 16px;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: var(--gv-radius-lg);
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
  transition: var(--gv-transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hp-btn-cta-secondary:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.25);
}

.hp-freelancer-cta {
  background: var(--gv-bg);
}

.hp-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.hp-split-card {
  border-radius: var(--gv-radius-xl);
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  overflow: hidden;
}

.hp-split-card-buyer {
  background: var(--gv-primary-subtle);
  border: 1px solid rgba(91,91,214,0.15);
}

.hp-split-card-seller {
  background: linear-gradient(135deg, #14142B 0%, #1E1E3F 100%);
  border: 1px solid rgba(255,255,255,0.08);
}

.hp-split-card-deco {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  opacity: 0.2;
}

.hp-split-card-buyer .hp-split-card-deco {
  background: var(--gv-primary);
}

.hp-split-card-seller .hp-split-card-deco {
  background: var(--gv-accent);
}

.hp-split-card-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--gv-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  position: relative;
  z-index: 1;
}

.hp-split-card-buyer .hp-split-card-icon {
  background: rgba(91,91,214,0.15);
  color: var(--gv-primary);
}

.hp-split-card-seller .hp-split-card-icon {
  background: rgba(14,202,212,0.15);
  color: var(--gv-accent);
}

.hp-split-card-title {
  font-family: var(--gv-font-display);
  font-size: 26px;
  font-weight: 800;
  line-height: 1.2;
  position: relative;
  z-index: 1;
  letter-spacing: -0.02em;
}

.hp-split-card-buyer .hp-split-card-title { color: var(--gv-text-primary); }
.hp-split-card-seller .hp-split-card-title { color: #fff; }

.hp-split-card-desc {
  font-size: 15px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.hp-split-card-buyer .hp-split-card-desc { color: var(--gv-text-secondary); }
.hp-split-card-seller .hp-split-card-desc { color: rgba(255,255,255,0.6); }

.hp-split-perks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.hp-split-perk {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.hp-split-card-buyer .hp-split-perk { color: var(--gv-text-secondary); }
.hp-split-card-seller .hp-split-perk { color: rgba(255,255,255,0.65); }

.hp-split-perk-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
}

.hp-split-card-buyer .hp-split-perk-dot {
  background: rgba(91,91,214,0.15);
  color: var(--gv-primary);
}

.hp-split-card-seller .hp-split-perk-dot {
  background: rgba(14,202,212,0.15);
  color: var(--gv-accent);
}

.hp-split-card-cta {
  margin-top: 8px;
  position: relative;
  z-index: 1;
}

.hp-split-card-buyer .hp-btn-split {
  background: var(--gv-primary);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: var(--gv-radius-md);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--gv-transition);
  box-shadow: 0 2px 12px rgba(91,91,214,0.28);
}

.hp-split-card-buyer .hp-btn-split:hover {
  background: var(--gv-primary-dark);
  transform: translateY(-1px);
}

.hp-split-card-seller .hp-btn-split {
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: var(--gv-radius-md);
  border: 1px solid rgba(255,255,255,0.2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--gv-transition);
}

.hp-split-card-seller .hp-btn-split:hover {
  background: rgba(255,255,255,0.18);
}


@media (max-width: 1100px) {
  .hp-cat-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
}

@media (max-width: 960px) {
  .hp-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .hp-steps-grid { grid-template-columns: 1fr; }
  .hp-steps-grid::before { display: none; }
  .hp-tab-pane.active { grid-template-columns: 1fr; }
  .hp-trust-grid { grid-template-columns: 1fr; }
  .hp-trust-visual-wrap { order: -1; }
  .hp-split-grid { grid-template-columns: 1fr; }
  .hp-how-steps { grid-template-columns: repeat(2, 1fr); }
  .hp-section-header { flex-direction: column; align-items: flex-start; gap: 16px; }
}

@media (max-width: 640px) {
  .hp-section { padding: 64px 0; }
  .hp-section-sm { padding: 48px 0; }
  .hp-container { padding: 0 16px; }
  .hp-cat-grid { grid-template-columns: 1fr 1fr; }
  .hp-how-steps { grid-template-columns: 1fr; }
  .hp-split-card { padding: 32px 28px; }
}

@media (max-width: 420px) {
  .hp-cat-grid { grid-template-columns: 1fr; }
}