/* ========================================
   Hair Transplant Turkey - Static Site CSS
   Medical Authority Design System
   ======================================== */

/* Google Font Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ========================================
   CSS Variables (Design Tokens)
   ======================================== */
:root {
  /* Core Medical Blue Palette */
  --background: hsl(0, 0%, 100%);
  --foreground: hsl(215, 45%, 15%);

  /* Card surfaces */
  --card: hsl(210, 20%, 99%);
  --card-foreground: hsl(215, 45%, 15%);

  /* Primary - Deep Medical Navy */
  --primary: hsl(210, 55%, 25%);
  --primary-foreground: hsl(0, 0%, 100%);

  /* Secondary - Light Professional Gray */
  --secondary: hsl(210, 25%, 96%);
  --secondary-foreground: hsl(215, 45%, 20%);

  /* Muted - Subtle backgrounds */
  --muted: hsl(210, 20%, 96%);
  --muted-foreground: hsl(215, 15%, 45%);

  /* Accent - Trust Teal */
  --accent: hsl(168, 55%, 42%);
  --accent-foreground: hsl(0, 0%, 100%);

  /* Success Green */
  --success: hsl(152, 55%, 40%);
  --success-foreground: hsl(0, 0%, 100%);

  /* Warning */
  --warning: hsl(38, 92%, 50%);
  --warning-foreground: hsl(0, 0%, 100%);

  /* Destructive */
  --destructive: hsl(0, 65%, 50%);
  --destructive-foreground: hsl(0, 0%, 100%);

  /* Borders and inputs */
  --border: hsl(210, 20%, 90%);
  --input: hsl(210, 20%, 90%);
  --ring: hsl(210, 55%, 25%);

  --radius: 0.5rem;

  /* Rating Stars */
  --rating-filled: hsl(45, 93%, 47%);
  --rating-empty: hsl(210, 15%, 85%);

  /* Hero Gradient */
  --hero-gradient-start: hsl(210, 55%, 25%);
  --hero-gradient-end: hsl(210, 45%, 35%);
}

/* ========================================
   Reset & Base Styles
   ======================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  cursor: pointer;
  font-family: inherit;
}

ul, ol {
  list-style: none;
}

/* ========================================
   Typography
   ======================================== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--foreground);
  line-height: 1.2;
}

h1 {
  font-size: 2.25rem;
}

h2 {
  font-size: 1.875rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  line-height: 1.75;
}

strong {
  font-weight: 600;
  color: var(--foreground);
}

@media (min-width: 768px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.25rem; }
  h3 { font-size: 1.875rem; }
}

@media (min-width: 1024px) {
  h1 { font-size: 3.75rem; }
  h2 { font-size: 2.5rem; }
}

/* ========================================
   Layout Components
   ======================================== */
.section-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .section-container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .section-container {
    padding: 0 2rem;
  }
}

.section-spacing {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .section-spacing {
    padding: 6rem 0;
  }
}

.min-h-screen {
  min-height: 100vh;
}

.flex-col-layout {
  display: flex;
  flex-direction: column;
}

.flex-grow {
  flex-grow: 1;
}

/* ========================================
   Header
   ======================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

@media (min-width: 768px) {
  .header-inner {
    height: 5rem;
  }
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: all 0.2s;
}

.nav-link:hover {
  color: var(--foreground);
  background-color: var(--secondary);
}

.nav-link.active {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.mobile-menu-btn {
  display: flex;
  padding: 0.5rem;
  border-radius: 0.5rem;
  background: none;
  border: none;
  transition: background-color 0.2s;
}

.mobile-menu-btn:hover {
  background-color: var(--secondary);
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
}

.mobile-nav.open {
  display: flex;
}

@media (min-width: 768px) {
  .mobile-nav {
    display: none !important;
  }
}

.mobile-nav .nav-link {
  padding: 0.75rem 1rem;
}

/* ========================================
   Logo
   ======================================== */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo svg {
  height: 2.5rem;
  width: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text-main {
  font-weight: 700;
  color: var(--primary);
  font-size: 1rem;
  line-height: 1.2;
}

.logo-text-sub {
  font-weight: 500;
  color: var(--muted-foreground);
  font-size: 0.75rem;
  line-height: 1.2;
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr repeat(3, auto);
    gap: 3rem;
  }
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.footer-independent {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-foreground);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a:hover {
  color: var(--primary-foreground);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* ========================================
   Hero Section
   ======================================== */
.hero-gradient {
  background: linear-gradient(135deg, var(--hero-gradient-start) 0%, var(--hero-gradient-end) 100%);
  color: var(--primary-foreground);
  position: relative;
  overflow: hidden;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .hero-content {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .hero-content {
    padding: 5rem 0;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }
}

.hero-title .accent {
  display: block;
  color: var(--accent);
}

.hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  max-width: 42rem;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .hero-cta {
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
}

.hero-trust-signals {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.trust-signal {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  border-radius: 0.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  font-size: 0.875rem;
  font-weight: 500;
}

.trust-signal svg {
  color: var(--accent);
}

/* ========================================
   Buttons
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  opacity: 0.9;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--secondary-foreground);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background-color: rgba(210, 220, 230, 0.8);
  border-color: rgba(var(--primary), 0.3);
}

.btn-accent {
  background-color: var(--accent);
  color: var(--accent-foreground);
}

.btn-accent:hover {
  opacity: 0.9;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-ghost {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-ghost:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

@media (min-width: 640px) {
  .btn-block-sm {
    width: auto;
  }
}

/* ========================================
   Cards
   ======================================== */
.card {
  background-color: var(--card);
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  padding: 1.5rem;
  transition: all 0.3s;
}

.card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.clinic-card {
  position: relative;
  display: block;
  background-color: var(--card);
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  padding: 1.5rem;
  transition: all 0.3s;
}

.clinic-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border-color: rgba(34, 68, 102, 0.2);
  transform: translateY(-4px);
}

.clinic-card-featured {
  border: 2px solid var(--primary);
}

.clinic-card-featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 0.75rem 0.75rem 0 0;
}

/* ========================================
   Badges & Tags
   ======================================== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge-accent {
  background-color: var(--accent);
  color: var(--accent-foreground);
}

.badge-success {
  background-color: rgba(47, 133, 90, 0.1);
  color: var(--success);
}

.badge-muted {
  background-color: var(--muted);
  color: var(--muted-foreground);
}

.price-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  background-color: rgba(34, 68, 102, 0.1);
  color: var(--primary);
}

.tag {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  font-size: 0.75rem;
  font-weight: 500;
  background-color: var(--secondary);
  color: var(--secondary-foreground);
}

.tag-primary {
  background-color: rgba(34, 68, 102, 0.1);
  color: var(--primary);
}

/* ========================================
   Rating Stars
   ======================================== */
.rating-stars {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.stars {
  display: flex;
  align-items: center;
  gap: 0.125rem;
}

.star {
  width: 1rem;
  height: 1rem;
}

.star-filled {
  color: var(--rating-filled);
  fill: var(--rating-filled);
}

.star-empty {
  color: var(--rating-empty);
}

.rating-value {
  font-weight: 600;
  color: var(--foreground);
}

.rating-count {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

/* ========================================
   Rank Badges
   ======================================== */
.rank-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
}

.rank-badge-lg {
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.125rem;
}

.rank-1 {
  background-color: hsl(48, 96%, 53%);
  color: white;
}

.rank-2 {
  background-color: hsl(0, 0%, 70%);
  color: white;
}

.rank-3 {
  background-color: hsl(25, 75%, 47%);
  color: white;
}

.rank-default {
  background-color: var(--muted);
  color: var(--muted-foreground);
}

/* ========================================
   Stats Section
   ======================================== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
  .stat-value {
    font-size: 2.25rem;
  }
}

.stat-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
}

/* ========================================
   Tables
   ======================================== */
.data-table {
  width: 100%;
  border-collapse: collapse;
}

.data-table thead {
  background-color: var(--secondary);
  border-bottom: 1px solid var(--border);
}

.data-table th {
  padding: 1rem 1.5rem;
  text-align: left;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
}

.data-table td {
  padding: 1rem 1.5rem;
}

.data-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background-color 0.2s;
}

.data-table tbody tr:last-child {
  border-bottom: none;
}

.data-table tbody tr:hover {
  background-color: rgba(210, 220, 230, 0.5);
}

/* Hide table on mobile */
.table-desktop {
  display: none;
}

@media (min-width: 768px) {
  .table-desktop {
    display: block;
  }
}

/* Mobile cards */
.mobile-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .mobile-cards {
    display: none;
  }
}

/* ========================================
   Forms
   ======================================== */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  background-color: var(--background);
  color: var(--foreground);
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.2s;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--muted-foreground);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(34, 68, 102, 0.15);
}

.form-textarea {
  resize: none;
  min-height: 150px;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1rem;
  padding-right: 2.5rem;
  cursor: pointer;
}

/* ========================================
   Filters Bar
   ======================================== */
.filters-bar {
  background-color: var(--card);
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.filters-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .filters-row {
    flex-direction: row;
  }
}

.search-wrapper {
  position: relative;
  flex: 1;
}

.search-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted-foreground);
  width: 1.25rem;
  height: 1.25rem;
  pointer-events: none;
}

.search-input {
  padding-left: 2.5rem;
}

.sort-select {
  width: 100%;
}

@media (min-width: 1024px) {
  .sort-select {
    width: 12rem;
  }
}

.filter-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  background-color: var(--background);
  font-weight: 500;
  transition: all 0.2s;
}

.filter-toggle:hover {
  border-color: rgba(34, 68, 102, 0.3);
}

.filter-toggle.active {
  background-color: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
}

.filters-expanded {
  display: none;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.filters-expanded.open {
  display: block;
}

.filters-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .filters-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ========================================
   Grid Layouts
   ======================================== */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ========================================
   Clinic Detail Page
   ======================================== */
.clinic-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .clinic-header {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}

.clinic-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.clinic-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--muted-foreground);
}

.clinic-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.rating-card {
  background-color: var(--card);
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  padding: 1.5rem;
  text-align: center;
  min-width: 200px;
}

.rating-card-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.clinic-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .clinic-content {
    grid-template-columns: 2fr 1fr;
  }
}

.content-section {
  background-color: var(--card);
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .content-section {
    padding: 2rem;
  }
}

.content-section h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.rating-breakdown {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.rating-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.rating-item-label {
  width: 10rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.rating-bar {
  flex: 1;
  height: 0.75rem;
  background-color: var(--secondary);
  border-radius: 9999px;
  overflow: hidden;
}

.rating-bar-fill {
  height: 100%;
  background-color: var(--primary);
  border-radius: 9999px;
  transition: width 0.5s;
}

.rating-item-value {
  width: 2.5rem;
  text-align: right;
  font-weight: 600;
}

.technique-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .technique-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.technique-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background-color: var(--secondary);
  border-radius: 0.5rem;
}

.technique-item svg {
  color: var(--success);
  flex-shrink: 0;
}

.package-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .package-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.package-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background-color: var(--secondary);
  border-radius: 0.5rem;
}

.package-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background-color: rgba(34, 68, 102, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.package-icon svg {
  color: var(--primary);
}

/* Sidebar */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-card {
  background-color: var(--card);
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  padding: 1.5rem;
}

@media (min-width: 1024px) {
  .sidebar-card:first-child {
    position: sticky;
    top: 6rem;
  }
}

.sidebar-card h3 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.price-display {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.price-note {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.price-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.price-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.price-feature svg {
  color: var(--success);
  flex-shrink: 0;
}

.sidebar-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.trust-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.trust-item svg {
  flex-shrink: 0;
}

/* ========================================
   Process Steps
   ======================================== */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.process-step {
  display: flex;
  gap: 1.5rem;
}

.step-number {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background-color: var(--primary);
  color: var(--primary-foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
}

.step-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.step-content p {
  color: var(--muted-foreground);
}

/* ========================================
   Icon Components
   ======================================== */
.icon-box {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  background-color: rgba(34, 68, 102, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box svg {
  color: var(--primary);
}

.icon-box-lg {
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
}

/* ========================================
   Prose Content
   ======================================== */
.prose {
  max-width: 65ch;
}

.prose h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.prose h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.prose p {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.prose ul,
.prose ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.prose li {
  margin-bottom: 0.5rem;
  color: var(--muted-foreground);
}

.prose strong {
  color: var(--foreground);
}

/* ========================================
   Alert/Notice Boxes
   ======================================== */
.alert {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 0.75rem;
}

.alert-warning {
  background-color: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.2);
}

.alert-warning svg {
  color: var(--warning);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.alert-success {
  background-color: rgba(47, 133, 90, 0.1);
  border: 1px solid rgba(47, 133, 90, 0.3);
}

.alert-success svg {
  color: var(--success);
}

.alert h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.alert p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ========================================
   Utilities
   ======================================== */
.text-center {
  text-align: center;
}

.text-muted {
  color: var(--muted-foreground);
}

.text-primary {
  color: var(--primary);
}

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

.text-success {
  color: var(--success);
}

.text-sm {
  font-size: 0.875rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }

.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }

.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }

.max-w-3xl {
  max-width: 48rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.bg-background {
  background-color: var(--background);
}

.bg-secondary {
  background-color: var(--secondary);
}

.bg-card {
  background-color: var(--card);
}

.border-b {
  border-bottom: 1px solid var(--border);
}

.border-t {
  border-top: 1px solid var(--border);
}

.flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.hidden {
  display: none;
}

.block {
  display: block;
}

@media (min-width: 768px) {
  .md\:hidden {
    display: none;
  }
  
  .md\:block {
    display: block;
  }
  
  .md\:flex {
    display: flex;
  }
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.no-results {
  text-align: center;
  padding: 3rem;
  background-color: var(--card);
  border-radius: 0.75rem;
  border: 1px solid var(--border);
}

.no-results-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  background-color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.no-results-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--muted-foreground);
}

/* Breadcrumb */
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  transition: color 0.2s;
}

.breadcrumb:hover {
  color: var(--primary);
}

/* Space between sections */
.space-y-8 > * + * {
  margin-top: 2rem;
}

.space-y-6 > * + * {
  margin-top: 1.5rem;
}

.space-y-4 > * + * {
  margin-top: 1rem;
}

.space-y-3 > * + * {
  margin-top: 0.75rem;
}

/* ========================================
   SEO Content Section
   ======================================== */
.seo-content {
  max-width: 56rem;
  margin: 0 auto;
}

.seo-content h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .seo-content h2 {
    font-size: 1.875rem;
  }
}

.seo-content h3 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.seo-content p {
  color: var(--muted-foreground);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .cta-section {
    padding: 5rem 0;
  }
}

.cta-section h2 {
  font-size: 1.875rem;
  color: var(--primary-foreground);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .cta-section h2 {
    font-size: 2.25rem;
  }
}

.cta-section p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.5s ease-out forwards;
}
