/* INDEKS SafeRating - Static CSS Export
   Converted from Tailwind CSS design system
*/

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@300;400;500;600;700;800&display=swap');

/* =====================================================
   CSS VARIABLES (Design Tokens)
   ===================================================== */
:root {
  /* Core brand colors */
  --background: hsl(210, 25%, 98%);
  --foreground: hsl(220, 20%, 20%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(220, 20%, 20%);
  
  /* Primary: Indeks Blue */
  --primary: hsl(215, 55%, 55%);
  --primary-foreground: hsl(0, 0%, 100%);
  
  /* Secondary */
  --secondary: hsl(210, 30%, 94%);
  --secondary-foreground: hsl(220, 20%, 25%);
  
  /* Muted */
  --muted: hsl(210, 20%, 96%);
  --muted-foreground: hsl(215, 15%, 50%);
  
  /* Accent */
  --accent: hsl(150, 25%, 65%);
  --accent-foreground: hsl(150, 30%, 20%);
  
  /* Borders */
  --border: hsl(210, 20%, 90%);
  --border-light: hsla(210, 20%, 90%, 0.5);
  
  /* Status colors for rating system */
  --status-danger: hsl(0, 72%, 51%);
  --status-warning: hsl(38, 92%, 50%);
  --status-caution: hsl(45, 93%, 47%);
  --status-safe: hsl(142, 50%, 45%);
  --status-neutral: hsl(215, 15%, 65%);
  
  /* Brand specific */
  --brand-dark: hsl(220, 15%, 22%);
  --brand-blue: hsl(215, 55%, 55%);
  --brand-blue-light: hsl(215, 60%, 75%);
  
  /* Gradients */
  --gradient-hero: linear-gradient(135deg, hsl(210, 25%, 98%) 0%, hsl(215, 40%, 95%) 100%);
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 hsla(220, 20%, 20%, 0.05);
  --shadow-md: 0 4px 6px -1px hsla(220, 20%, 20%, 0.08), 0 2px 4px -2px hsla(220, 20%, 20%, 0.06);
  --shadow-lg: 0 10px 15px -3px hsla(220, 20%, 20%, 0.1), 0 4px 6px -4px hsla(220, 20%, 20%, 0.08);
  --shadow-card: 0 4px 20px -4px hsla(215, 55%, 55%, 0.15);
  
  /* Border radius */
  --radius: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.25rem;
  --radius-full: 9999px;
}

/* =====================================================
   BASE STYLES
   ===================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-color: var(--border);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Work Sans', 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;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Work Sans', system-ui, sans-serif;
  line-height: 1.2;
}

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

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

/* =====================================================
   LAYOUT
   ===================================================== */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

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

.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }

.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

@media (min-width: 640px) {
  .sm\:flex-row { flex-direction: row; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .md\:flex-row { flex-direction: row; }
  .md\:col-span-2 { grid-column: span 2 / span 2; }
  .md\:col-span-3 { grid-column: span 3 / span 3; }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* =====================================================
   SPACING
   ===================================================== */
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.pt-16 { padding-top: 4rem; }
.pt-24 { padding-top: 6rem; }
.pb-12 { padding-bottom: 3rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* =====================================================
   TYPOGRAPHY
   ===================================================== */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }

@media (min-width: 768px) {
  .md\:text-lg { font-size: 1.125rem; }
  .md\:text-3xl { font-size: 1.875rem; }
  .md\:text-4xl { font-size: 2.25rem; }
  .md\:text-5xl { font-size: 3rem; }
}

@media (min-width: 1024px) {
  .lg\:text-4xl { font-size: 2.25rem; }
  .lg\:text-5xl { font-size: 3rem; }
}

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.text-center { text-align: center; }
.leading-relaxed { line-height: 1.625; }
.leading-tight { line-height: 1.25; }

/* =====================================================
   COLORS
   ===================================================== */
.text-foreground { color: var(--foreground); }
.text-muted-foreground { color: var(--muted-foreground); }
.text-primary { color: var(--primary); }
.text-primary-foreground { color: var(--primary-foreground); }
.text-status-danger { color: var(--status-danger); }
.text-status-warning { color: var(--status-warning); }

.bg-background { background-color: var(--background); }
.bg-card { background-color: var(--card); }
.bg-muted { background-color: var(--muted); }
.bg-primary { background-color: var(--primary); }
.bg-brand-dark { background-color: var(--brand-dark); }

.bg-status-safe { background-color: var(--status-safe); }
.bg-status-caution { background-color: var(--status-caution); }
.bg-status-warning { background-color: var(--status-warning); }
.bg-status-danger { background-color: var(--status-danger); }

.bg-hero-gradient { background: var(--gradient-hero); }

/* =====================================================
   BORDERS & SHADOWS
   ===================================================== */
.border { border: 1px solid var(--border); }
.border-t { border-top: 1px solid var(--border); }
.border-border { border-color: var(--border); }
.rounded { border-radius: var(--radius); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-2xl { border-radius: var(--radius-2xl); }
.rounded-full { border-radius: var(--radius-full); }
.rounded-t-2xl { border-top-left-radius: var(--radius-2xl); border-top-right-radius: var(--radius-2xl); }

.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-soft { box-shadow: var(--shadow-md); }
.shadow-card { box-shadow: var(--shadow-card); }
.shadow-lg { box-shadow: var(--shadow-lg); }

/* =====================================================
   COMPONENTS
   ===================================================== */

/* Navigation */
.nav-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: hsla(210, 25%, 98%, 0.95);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-light);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
  padding: 0 1rem;
  max-width: 1400px;
  margin: 0 auto;
}

.nav-logo { height: 2rem; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.625rem 1rem;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}

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

.btn-primary:hover {
  background-color: hsl(215, 55%, 50%);
  box-shadow: var(--shadow-lg);
}

.btn-ghost {
  background: transparent;
  color: var(--muted-foreground);
}

.btn-ghost:hover {
  background-color: var(--muted);
  color: var(--foreground);
}

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

.btn-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Input */
.input {
  width: 100%;
  height: 3.5rem;
  padding: 0 1rem 0 3rem;
  font-size: 1rem;
  background-color: var(--card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  outline: none;
}

.input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px hsla(215, 55%, 55%, 0.1);
}

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

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

.input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted-foreground);
}

/* Cards */
.card {
  background-color: var(--card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
}

.card-hover {
  transition: all 0.3s;
}

.card-hover:hover {
  border-color: hsla(215, 55%, 55%, 0.2);
  box-shadow: var(--shadow-card);
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
}

.badge-danger {
  background-color: hsla(0, 72%, 51%, 0.1);
  color: var(--status-danger);
}

.badge-warning {
  background-color: hsla(38, 92%, 50%, 0.1);
  color: var(--status-warning);
}

.badge-primary {
  background-color: hsla(215, 55%, 55%, 0.1);
  color: var(--primary);
}

/* Icon container */
.icon-box {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-xl);
  background-color: hsla(215, 55%, 55%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box-lg {
  width: 3.5rem;
  height: 3.5rem;
}

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

/* Trust badge */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  background-color: hsla(215, 15%, 50%, 0.05);
  color: hsla(215, 15%, 50%, 0.7);
  font-size: 0.875rem;
}

/* =====================================================
   STAY UPDATED
   ===================================================== */
.stay-updated-section {
  padding: 4.5rem 0 5.5rem;
  background-color: var(--background);
}

.stay-updated-card {
  background-color: var(--card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-2xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  display: grid;
  gap: 1.5rem;
}

.stay-updated-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stay-updated-content p {
  color: var(--muted-foreground);
  font-size: 1rem;
}

.stay-updated-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: end;
}

.stay-updated-field label {
  display: block;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.35rem;
}

.stay-updated-message {
  grid-column: 1 / -1;
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

.stay-updated-message.success {
  color: var(--status-safe);
}

.stay-updated-message.error {
  color: var(--status-danger);
}

@media (max-width: 900px) {
  .stay-updated-form {
    grid-template-columns: 1fr;
  }
}

/* Tags */
.tag {
  display: inline-block;
  padding: 0.375rem 0.625rem;
  background-color: var(--muted);
  color: var(--muted-foreground);
  font-size: 0.75rem;
  border-radius: var(--radius-full);
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, 
    hsla(210, 25%, 98%, 0.85) 0%, 
    hsla(210, 25%, 98%, 0.75) 50%, 
    hsl(210, 25%, 98%) 100%);
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
}

.hero-blob-1 {
  top: 5rem;
  right: 2.5rem;
  width: 18rem;
  height: 18rem;
  background-color: hsla(215, 55%, 55%, 0.1);
}

.hero-blob-2 {
  bottom: 5rem;
  left: 2.5rem;
  width: 24rem;
  height: 24rem;
  background-color: hsla(150, 25%, 65%, 0.15);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
  padding: 4rem 1rem;
}

.hero-logo {
  height: 6rem;
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

@media (min-width: 768px) {
  .hero-logo { height: 8rem; }
}

.hero-tagline {
  font-size: 1rem;
  color: hsla(220, 20%, 20%, 0.8);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

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

.hero-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.25rem;
  line-height: 1.25;
}

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

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

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

.hero-desc {
  color: hsla(220, 20%, 20%, 0.7);
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.625;
}

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

/* Search Form */
.search-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 36rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .search-form { flex-direction: row; }
}

.search-btn {
  height: 3.5rem;
  padding: 0 2rem;
}

.hero-link {
  color: var(--primary);
  font-weight: 500;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 1.5rem;
  transition: color 0.2s;
}

.hero-link:hover {
  color: hsla(215, 55%, 55%, 0.8);
}

/* =====================================================
   REPORT SECTION
   ===================================================== */
.report-section {
  padding: 5rem 0;
  background-color: var(--card);
  position: relative;
  overflow: hidden;
}

.report-blob {
  position: absolute;
  right: -5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20rem;
  height: 20rem;
  background-color: hsla(150, 25%, 65%, 0.05);
  border-radius: 50%;
  filter: blur(48px);
}

.report-grid {
  display: grid;
  gap: 3rem;
  align-items: start;
}

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

.report-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.stat-card {
  text-align: center;
  padding: 1rem;
  background-color: var(--background);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
}

.stat-icon {
  width: 1.25rem;
  height: 1.25rem;
  margin: 0 auto 0.5rem;
  color: var(--primary);
}

.stat-value {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--foreground);
}

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

/* Concerns preview card */
.concerns-card {
  background-color: var(--background);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.concerns-image {
  width: 100%;
  height: 12rem;
  object-fit: cover;
}

.concerns-content { padding: 1.5rem; }

.concerns-category { margin-bottom: 1rem; }

.concerns-category h4 {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.concerns-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* =====================================================
   ABOUT PAGE
   ===================================================== */
.problem-card {
  position: relative;
  background-color: var(--card);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  border: 1px solid var(--border-light);
}

.problem-card .icon-box { margin-bottom: 1rem; }

.problem-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.problem-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.625;
}

.disturbing-truth {
  position: relative;
  background: linear-gradient(to bottom right, 
    hsla(0, 72%, 51%, 0.08) 0%, 
    hsla(0, 72%, 51%, 0.05) 50%, 
    transparent 100%);
  border: 1px solid hsla(0, 72%, 51%, 0.15);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  margin-bottom: 3rem;
  box-shadow: var(--shadow-lg);
}

.disturbing-truth-grid {
  display: grid;
}

@media (min-width: 768px) {
  .disturbing-truth-grid { grid-template-columns: 2fr 3fr; }
}

.disturbing-truth-image {
  position: relative;
  height: 12rem;
}

@media (min-width: 768px) {
  .disturbing-truth-image { height: auto; }
}

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

.disturbing-truth-content {
  padding: 2rem;
  position: relative;
}

@media (min-width: 768px) {
  .disturbing-truth-content { padding: 2.5rem; }
}

.disturbing-truth-indicator {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, 
    var(--status-danger) 0%, 
    hsla(0, 72%, 51%, 0.7) 50%, 
    hsla(0, 72%, 51%, 0.3) 100%);
  display: none;
}

@media (min-width: 768px) {
  .disturbing-truth-indicator { display: block; }
}

.disturbing-truth h3 {
  color: var(--status-danger);
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pulse-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--status-danger);
}

.mission-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
}

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

.mission-image {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.mission-image img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
}

.examples-card {
  background-color: hsla(210, 20%, 96%, 0.5);
  border-radius: var(--radius-2xl);
  padding: 1.5rem;
  margin-bottom: 3rem;
}

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

.examples-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.examples-list { list-style: none; }

.examples-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
}

.examples-list .bullet {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--status-danger);
  margin-top: 0.5rem;
  flex-shrink: 0;
}

.cta-card {
  text-align: center;
  background-color: hsla(215, 55%, 55%, 0.05);
  border-radius: var(--radius-2xl);
  padding: 2rem;
}

.cta-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.cta-card p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

/* =====================================================
   HOW IT WORKS PAGE
   ===================================================== */
.step-card {
  position: relative;
  background-color: var(--card);
  border-radius: var(--radius-xl);
  padding: 2rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  height: 100%;
}

.step-number {
  position: absolute;
  top: -0.75rem;
  left: -0.75rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--primary-foreground);
  font-weight: 700;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

.step-card .icon-box-lg { margin-bottom: 1.5rem; }

.step-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.step-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.625;
}

.step-connector {
  display: none;
  position: absolute;
  top: 3rem;
  left: 60%;
  width: 80%;
  height: 1px;
  background: linear-gradient(to right, var(--border) 0%, transparent 100%);
}

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

.rating-card {
  background-color: var(--card);
  border-radius: var(--radius-xl);
  padding: 1.25rem;
  border: 1px solid var(--border-light);
  text-align: center;
}

.rating-bar {
  height: 0.5rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.rating-card h4 {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.rating-card p {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--card);
  border-radius: var(--radius-xl);
  padding: 1rem 1.5rem;
  border: 1px solid var(--border-light);
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.feature-pill svg { color: var(--primary); }

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background-color: var(--brand-dark);
  padding: 3rem 0;
  color: var(--muted-foreground);
}

.footer-logo {
  height: 2.5rem;
  margin: 0 auto 1rem;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.footer-desc {
  font-size: 0.875rem;
  max-width: 32rem;
  margin: 0 auto 1.5rem;
  text-align: center;
}

.footer-desc strong {
  color: hsla(0, 0%, 100%, 0.8);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.footer-link {
  color: var(--muted-foreground);
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

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

.footer-bottom {
  border-top: 1px solid hsla(215, 15%, 50%, 0.1);
  padding-top: 1.5rem;
  margin-top: 1.5rem;
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  color: hsla(215, 15%, 50%, 0.6);
  text-align: center;
}

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

/* =====================================================
   SVG ICONS (Inline)
   ===================================================== */
.icon {
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  vertical-align: middle;
}

.icon-sm { width: 1rem; height: 1rem; }
.icon-md { width: 1.25rem; height: 1.25rem; }
.icon-lg { width: 1.5rem; height: 1.5rem; }
.icon-xl { width: 1.75rem; height: 1.75rem; }

/* =====================================================
   UTILITIES
   ===================================================== */
.relative { position: relative; }
.absolute { position: absolute; }
.z-10 { z-index: 10; }
.overflow-hidden { overflow: hidden; }
.object-cover { object-fit: cover; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.min-h-screen { min-height: 100vh; }
.flex-shrink-0 { flex-shrink: 0; }
.inset-0 { inset: 0; }

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

.opacity-70 { opacity: 0.7; }
.opacity-80 { opacity: 0.8; }
