/* ==========================================
   CSS Variables & Base Styles
   ========================================== */
:root {
   --primary: #6366f1;
   --primary-dark: #4f46e5;
   --primary-light: #818cf8;
   --secondary: #10b981;
   --accent: #f59e0b;
   --text: #1e293b;
   --text-light: #64748b;
   --text-muted: #94a3b8;
   --bg: #ffffff;
   --bg-alt: #f8fafc;
   --bg-dark: #0f172a;
   --border: #e2e8f0;
   --shadow: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -2px rgba(0, 0, 0, .1);
   --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1);
   --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 8px 10px -6px rgba(0, 0, 0, .1);
   --radius: 12px;
   --radius-lg: 20px;
   --transition: all 0.3s ease;
}

* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}

html {
   scroll-behavior: smooth;
}

body {
   font-family: 'Inter', system-ui, sans-serif;
   background: var(--bg);
   color: var(--text);
   line-height: 1.6;
}

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

ul {
   list-style: none;
}

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

.container {
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 1.5rem;
}

/* ==========================================
   Navigation
   ========================================== */
.navbar {
   position: fixed;
   top: 0;
   left: 0;
   right: 0;
   z-index: 1000;
   background: rgba(255, 255, 255, 0.95);
   backdrop-filter: blur(20px);
   border-bottom: 1px solid var(--border);
   padding: 1rem 0;
   transition: var(--transition);
}

.navbar.scrolled {
   box-shadow: var(--shadow);
}

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

.nav-logo {
   display: flex;
   align-items: center;
   gap: 0.5rem;
   font-weight: 700;
   font-size: 1.25rem;
   color: var(--primary);
}

.logo-icon {
   font-size: 1.5rem;
}

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

.nav-link {
   font-weight: 500;
   color: var(--text-light);
   transition: var(--transition);
   position: relative;
}

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

.nav-link.active::after {
   content: '';
   position: absolute;
   bottom: -4px;
   left: 0;
   right: 0;
   height: 2px;
   background: var(--primary);
   border-radius: 2px;
}

.nav-toggle {
   display: none;
   flex-direction: column;
   gap: 5px;
   background: none;
   border: none;
   cursor: pointer;
   padding: 0.5rem;
}

.nav-toggle span {
   width: 24px;
   height: 2px;
   background: var(--text);
   transition: var(--transition);
}

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

   .nav-menu {
      position: fixed;
      top: 70px;
      left: 0;
      right: 0;
      background: var(--bg);
      flex-direction: column;
      padding: 2rem;
      gap: 1.5rem;
      transform: translateY(-150%);
      transition: var(--transition);
      border-bottom: 1px solid var(--border);
   }

   .nav-menu.active {
      transform: translateY(0);
   }
}

/* ==========================================
   Buttons
   ========================================== */
.btn {
   display: inline-flex;
   align-items: center;
   gap: 0.5rem;
   padding: 0.875rem 1.75rem;
   border-radius: var(--radius);
   font-weight: 600;
   font-size: 0.95rem;
   cursor: pointer;
   border: none;
   transition: var(--transition);
}

.btn-primary {
   background: linear-gradient(135deg, var(--primary), var(--primary-dark));
   color: white;
   box-shadow: 0 4px 14px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
   transform: translateY(-2px);
   box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5);
}

.btn-secondary {
   background: white;
   color: var(--primary);
   border: 2px solid var(--primary);
}

.btn-secondary:hover {
   background: var(--primary);
   color: white;
}

.btn-outline {
   background: transparent;
   border: 2px solid var(--border);
   color: var(--text);
}

.btn-outline:hover {
   background: var(--bg-alt);
   border-color: var(--primary);
}

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

/* ==========================================
   Hero Section
   ========================================== */
.hero {
   min-height: 100vh;
   display: flex;
   align-items: center;
   justify-content: center;
   position: relative;
   overflow: hidden;
   padding: 6rem 1.5rem 4rem;
   background: linear-gradient(135deg, #667eea08 0%, #764ba208 50%, #f093fb08 100%);
}

.hero-bg {
   position: absolute;
   inset: 0;
   background: radial-gradient(circle at 30% 20%, rgba(99, 102, 241, .15) 0%, transparent 50%), radial-gradient(circle at 70% 80%, rgba(16, 185, 129, .1) 0%, transparent 50%);
}

.hero-content {
   text-align: center;
   max-width: 800px;
   position: relative;
   z-index: 1;
}

.hero-title {
   font-size: clamp(2.5rem, 5vw, 4rem);
   font-weight: 800;
   line-height: 1.1;
   margin-bottom: 1.5rem;
}

.gradient-text {
   background: linear-gradient(135deg, var(--primary), #8b5cf6, var(--secondary));
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
}

.hero-subtitle {
   font-size: 1.25rem;
   color: var(--text-light);
   max-width: 600px;
   margin: 0 auto 2rem;
}

.hero-buttons {
   display: flex;
   gap: 1rem;
   justify-content: center;
   flex-wrap: wrap;
}

.hero-decoration {
   position: absolute;
   inset: 0;
   pointer-events: none;
}

.floating-card {
   position: absolute;
   background: white;
   padding: 1rem 1.5rem;
   border-radius: var(--radius);
   box-shadow: var(--shadow-lg);
   display: flex;
   align-items: center;
   gap: 0.75rem;
   animation: float 6s ease-in-out infinite;
}

.floating-card span:first-child {
   font-size: 1.5rem;
}

.floating-card span:last-child {
   font-weight: 600;
   color: var(--text);
   font-size: 0.9rem;
}

.card-1 {
   top: 20%;
   left: 5%;
   animation-delay: 0s;
}

.card-2 {
   top: 60%;
   right: 5%;
   animation-delay: 2s;
}

.card-3 {
   bottom: 15%;
   left: 15%;
   animation-delay: 4s;
}

@keyframes float {

   0%,
   100% {
      transform: translateY(0);
   }

   50% {
      transform: translateY(-20px);
   }
}

@media (max-width: 768px) {
   .floating-card {
      display: none;
   }
}

/* ==========================================
   Features Section
   ========================================== */
.features {
   padding: 4rem 0;
   background: var(--bg);
   margin-top: -4rem;
   position: relative;
   z-index: 2;
}

.features-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 1.5rem;
}

.feature-card {
   background: white;
   padding: 2rem;
   border-radius: var(--radius-lg);
   border: 1px solid var(--border);
   transition: var(--transition);
   text-align: center;
}

.feature-card:hover {
   transform: translateY(-8px);
   box-shadow: var(--shadow-xl);
   border-color: var(--primary);
}

.feature-icon {
   font-size: 2.5rem;
   margin-bottom: 1rem;
}

.feature-card h3 {
   font-size: 1.25rem;
   margin-bottom: 0.5rem;
   color: var(--text);
}

.feature-card p {
   color: var(--text-light);
   font-size: 0.95rem;
}

/* ==========================================
   Section Styles
   ========================================== */
.section {
   padding: 5rem 0;
}

.section-header {
   text-align: center;
   max-width: 700px;
   margin: 0 auto 3rem;
}

.section-badge {
   display: inline-block;
   padding: 0.5rem 1rem;
   background: linear-gradient(135deg, rgba(99, 102, 241, .1), rgba(139, 92, 246, .1));
   color: var(--primary);
   border-radius: 50px;
   font-weight: 600;
   font-size: 0.9rem;
   margin-bottom: 1rem;
}

.section-title {
   font-size: clamp(1.75rem, 3vw, 2.5rem);
   font-weight: 800;
   margin-bottom: 1rem;
}

.section-subtitle {
   color: var(--text-light);
   font-size: 1.1rem;
}

/* ==========================================
   Telekonsultasi Section
   ========================================== */
.telekonsultasi {
   background: var(--bg-alt);
}

.telekonsultasi-content {
   max-width: 700px;
   margin: 0 auto;
}

.wa-card {
   background: white;
   border-radius: var(--radius-lg);
   overflow: hidden;
   box-shadow: var(--shadow-lg);
}

.wa-card-inner {
   padding: 3rem;
   text-align: center;
   background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
   color: white;
}

.wa-icon {
   margin-bottom: 1.5rem;
}

.wa-icon svg {
   fill: white;
}

.wa-card-inner h3 {
   font-size: 1.5rem;
   margin-bottom: 0.75rem;
}

.wa-card-inner p {
   opacity: 0.9;
   margin-bottom: 1.5rem;
}

.wa-button {
   display: inline-flex;
   align-items: center;
   gap: 0.75rem;
   background: white;
   color: #128c7e;
   padding: 1rem 2rem;
   border-radius: var(--radius);
   font-weight: 700;
   transition: var(--transition);
}

.wa-button:hover {
   transform: scale(1.05);
   box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
}

.wa-button svg {
   fill: #25d366;
}

.wa-info {
   padding: 2rem;
   display: grid;
   gap: 1rem;
}

.info-item {
   display: flex;
   align-items: flex-start;
   gap: 1rem;
   padding: 1rem;
   background: var(--bg-alt);
   border-radius: var(--radius);
}

.info-icon {
   font-size: 1.5rem;
}

.info-item strong {
   display: block;
   color: var(--text);
   margin-bottom: 0.25rem;
}

.info-item p {
   color: var(--text-light);
   font-size: 0.9rem;
   margin: 0;
}

/* ==========================================
   Skrining Section
   ========================================== */
.skrining-container {
   max-width: 700px;
   margin: 0 auto;
}

.intro-card {
   background: white;
   padding: 3rem;
   border-radius: var(--radius-lg);
   box-shadow: var(--shadow-lg);
   text-align: center;
}

.intro-card h3 {
   font-size: 1.5rem;
   margin-bottom: 1rem;
   color: var(--primary);
}

.intro-list {
   text-align: left;
   margin: 1.5rem 0;
}

.intro-list li {
   display: flex;
   align-items: center;
   gap: 0.75rem;
   padding: 0.75rem 0;
   border-bottom: 1px solid var(--border);
}

.intro-list li:last-child {
   border-bottom: none;
}

.list-icon {
   color: var(--secondary);
   font-weight: bold;
}

.disclaimer {
   display: flex;
   align-items: flex-start;
   gap: 0.75rem;
   padding: 1rem;
   background: #fef3c7;
   border-radius: var(--radius);
   margin: 1.5rem 0;
   text-align: left;
   font-size: 0.9rem;
   color: #92400e;
}

.disclaimer-icon {
   font-size: 1.25rem;
}

/* Skrining Form */
.skrining-form {
   background: white;
   padding: 2.5rem;
   border-radius: var(--radius-lg);
   box-shadow: var(--shadow-lg);
}

.progress-bar {
   height: 8px;
   background: var(--border);
   border-radius: 4px;
   overflow: hidden;
   margin-bottom: 1rem;
}

.progress-fill {
   height: 100%;
   background: linear-gradient(90deg, var(--primary), var(--secondary));
   border-radius: 4px;
   transition: width 0.3s ease;
   width: 10%;
}

.question-counter {
   text-align: center;
   color: var(--text-muted);
   font-size: 0.9rem;
   margin-bottom: 2rem;
}

.question-container {
   min-height: 200px;
}

.question {
   margin-bottom: 2rem;
}

.question h4 {
   font-size: 1.25rem;
   margin-bottom: 1.5rem;
   color: var(--text);
}

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

.option {
   display: flex;
   align-items: center;
   gap: 1rem;
   padding: 1rem 1.25rem;
   background: var(--bg-alt);
   border: 2px solid var(--border);
   border-radius: var(--radius);
   cursor: pointer;
   transition: var(--transition);
}

.option:hover {
   border-color: var(--primary);
   background: rgba(99, 102, 241, .05);
}

.option.selected {
   border-color: var(--primary);
   background: rgba(99, 102, 241, .1);
}

.option input {
   display: none;
}

.option-radio {
   width: 20px;
   height: 20px;
   border: 2px solid var(--border);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   transition: var(--transition);
}

.option.selected .option-radio {
   border-color: var(--primary);
}

.option.selected .option-radio::after {
   content: '';
   width: 10px;
   height: 10px;
   background: var(--primary);
   border-radius: 50%;
}

.skrining-buttons {
   display: flex;
   justify-content: space-between;
   gap: 1rem;
   margin-top: 2rem;
}

/* Skrining Result */
.skrining-result {
   text-align: center;
}

.result-card {
   background: white;
   padding: 3rem;
   border-radius: var(--radius-lg);
   box-shadow: var(--shadow-lg);
}

.result-icon {
   font-size: 4rem;
   margin-bottom: 1.5rem;
}

.result-card h3 {
   font-size: 1.75rem;
   margin-bottom: 0.5rem;
}

.result-score {
   font-size: 1.5rem;
   font-weight: 800;
   margin: 1rem 0;
   padding: 0.75rem 1.5rem;
   border-radius: var(--radius);
   display: inline-block;
}

.result-score.good {
   color: var(--secondary);
   background: rgba(16, 185, 129, .1);
}

.result-score.moderate {
   color: var(--accent);
   background: rgba(245, 158, 11, .1);
}

.result-score.concern {
   color: #ef4444;
   background: rgba(239, 68, 68, .1);
}

.result-score.critical {
   color: #dc2626;
   background: rgba(220, 38, 38, .15);
   animation: pulse-critical 1.5s infinite;
}

@keyframes pulse-critical {

   0%,
   100% {
      box-shadow: 0 0 0 0 rgba(220, 38, 38, .4);
   }

   50% {
      box-shadow: 0 0 0 10px rgba(220, 38, 38, 0);
   }
}

.result-message {
   color: var(--text-light);
   margin-bottom: 1.5rem;
   font-size: 1.1rem;
}

.result-actions {
   display: flex;
   gap: 1rem;
   justify-content: center;
   flex-wrap: wrap;
   margin-top: 2rem;
}

.result-header {
   display: flex;
   justify-content: space-between;
   align-items: center;
   margin-bottom: 1.5rem;
   padding-bottom: 1rem;
   border-bottom: 1px solid var(--border);
}

.result-badge {
   background: var(--primary);
   color: white;
   padding: 0.375rem 1rem;
   border-radius: 50px;
   font-size: 0.85rem;
   font-weight: 600;
}

.result-name {
   color: var(--text-light);
   font-size: 0.95rem;
}

.result-total {
   color: var(--text-muted);
   font-size: 1rem;
   margin-bottom: 1rem;
}

.result-recommendations {
   text-align: left;
   margin-top: 2rem;
   padding: 1.5rem;
   background: var(--bg-alt);
   border-radius: var(--radius);
}

.result-recommendations h4 {
   color: var(--text);
   margin-bottom: 1rem;
   font-size: 1.1rem;
}

.result-recommendations ul {
   padding-left: 1.5rem;
}

.result-recommendations li {
   padding: 0.5rem 0;
   color: var(--text-light);
   position: relative;
}

.result-recommendations li::before {
   content: '✓';
   color: var(--secondary);
   position: absolute;
   left: -1.5rem;
   font-weight: bold;
}

/* Score Breakdown (PHQ-GAD) */
.score-breakdown {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 1rem;
   margin: 1.5rem 0;
}

.score-item {
   display: flex;
   flex-direction: column;
   align-items: center;
   padding: 1rem;
   background: var(--bg-alt);
   border-radius: var(--radius);
}

.score-label {
   color: var(--text-muted);
   font-size: 0.9rem;
   margin-bottom: 0.5rem;
}

.score-value {
   font-size: 1.5rem;
   font-weight: 700;
   color: var(--text);
}

.score-status {
   font-size: 0.8rem;
   font-weight: 600;
   padding: 0.25rem 0.75rem;
   border-radius: 50px;
   margin-top: 0.5rem;
}

.score-status.positive {
   background: rgba(239, 68, 68, .1);
   color: #ef4444;
}

.score-status.negative {
   background: rgba(16, 185, 129, .1);
   color: var(--secondary);
}

/* Critical Alert */
.critical-alert {
   background: linear-gradient(135deg, #fef2f2, #fee2e2);
   border: 2px solid #ef4444;
   border-radius: var(--radius);
   padding: 1.5rem;
   margin-bottom: 2rem;
   text-align: left;
   display: flex;
   gap: 1rem;
   align-items: flex-start;
}

.alert-icon {
   font-size: 2rem;
}

.alert-content {
   flex: 1;
}

.alert-content strong {
   display: block;
   color: #dc2626;
   margin-bottom: 0.5rem;
   font-size: 1.1rem;
}

.alert-content p {
   color: #991b1b;
   margin-bottom: 1rem;
   font-size: 0.95rem;
}

.emergency-btn {
   display: inline-flex;
   align-items: center;
   gap: 0.5rem;
   background: #dc2626;
   color: white;
   padding: 0.75rem 1.5rem;
   border-radius: var(--radius);
   font-weight: 700;
   transition: var(--transition);
}

.emergency-btn:hover {
   background: #b91c1c;
   transform: scale(1.02);
}

/* Skrining Selector */
.selector-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
   max-width: 800px;
   margin: 0 auto;
}

.selector-card {
   background: white;
   padding: 2.5rem;
   border-radius: var(--radius-lg);
   border: 2px solid var(--border);
   cursor: pointer;
   transition: var(--transition);
   text-align: center;
}

.selector-card:hover {
   transform: translateY(-8px);
   box-shadow: var(--shadow-xl);
   border-color: var(--primary);
}

.selector-icon {
   font-size: 3rem;
   margin-bottom: 1rem;
}

.selector-card h3 {
   font-size: 1.5rem;
   color: var(--primary);
   margin-bottom: 0.5rem;
}

.selector-subtitle {
   color: var(--text-light);
   font-size: 0.9rem;
   margin-bottom: 1rem;
}

.selector-desc {
   color: var(--text);
   font-size: 0.95rem;
   margin-bottom: 1.5rem;
   line-height: 1.6;
}

.selector-meta {
   display: inline-block;
   padding: 0.5rem 1rem;
   background: var(--bg-alt);
   border-radius: 50px;
   color: var(--text-muted);
   font-size: 0.85rem;
   font-weight: 500;
}

/* Biodata Form */
.biodata-card {
   background: white;
   padding: 3rem;
   border-radius: var(--radius-lg);
   box-shadow: var(--shadow-lg);
   max-width: 600px;
   margin: 0 auto;
}

.biodata-card h3 {
   font-size: 1.35rem;
   color: var(--primary);
   margin-bottom: 0.5rem;
   text-align: center;
}

.biodata-card>p {
   color: var(--text-light);
   text-align: center;
   margin-bottom: 2rem;
}

.form-group {
   margin-bottom: 1.25rem;
}

.form-group label {
   display: block;
   font-weight: 600;
   color: var(--text);
   margin-bottom: 0.5rem;
   font-size: 0.95rem;
}

.form-group label .required {
   color: #ef4444;
}

.form-group input {
   width: 100%;
   padding: 0.875rem 1rem;
   border: 2px solid var(--border);
   border-radius: var(--radius);
   font-size: 1rem;
   transition: var(--transition);
}

.form-group input:focus {
   outline: none;
   border-color: var(--primary);
   box-shadow: 0 0 0 3px rgba(99, 102, 241, .1);
}

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

@media (max-width: 500px) {
   .form-row {
      grid-template-columns: 1fr;
   }
}

.back-btn {
   background: none;
   border: none;
   color: var(--primary);
   cursor: pointer;
   font-weight: 600;
   padding: 0.5rem 0;
   margin-bottom: 1.5rem;
   display: inline-flex;
   align-items: center;
   gap: 0.5rem;
   transition: var(--transition);
}

.back-btn:hover {
   color: var(--primary-dark);
}

/* Form Header */
.form-header {
   text-align: center;
   margin-bottom: 2rem;
   padding-bottom: 1.5rem;
   border-bottom: 1px solid var(--border);
}

.form-badge {
   display: inline-block;
   padding: 0.375rem 1rem;
   background: var(--primary);
   color: white;
   border-radius: 50px;
   font-size: 0.85rem;
   font-weight: 600;
   margin-bottom: 0.75rem;
}

.form-header h3 {
   font-size: 1.25rem;
   color: var(--text);
   margin-bottom: 0.75rem;
}

.form-header p {
   color: var(--text-light);
   font-size: 0.95rem;
}

/* Question Section Badge */
.question-section {
   display: inline-block;
   padding: 0.5rem 1rem;
   background: linear-gradient(135deg, rgba(99, 102, 241, .1), rgba(139, 92, 246, .1));
   color: var(--primary);
   border-radius: 50px;
   font-weight: 600;
   font-size: 0.9rem;
   margin-bottom: 1rem;
}

/* Option Score */
.option-score {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   width: 24px;
   height: 24px;
   background: var(--bg-alt);
   border-radius: 50%;
   font-size: 0.8rem;
   font-weight: 700;
   color: var(--text-muted);
   margin-right: 0.5rem;
}

.option.selected .option-score {
   background: var(--primary);
   color: white;
}

/* Critical Warning */
.critical-warning {
   display: flex;
   align-items: center;
   gap: 0.75rem;
   padding: 1rem;
   background: #fef2f2;
   border: 1px solid #fecaca;
   border-radius: var(--radius);
   margin-bottom: 1rem;
   color: #991b1b;
   font-size: 0.9rem;
}

.warning-icon {
   font-size: 1.25rem;
}

/* ==========================================
   Edukasi Section
   ========================================== */
.edukasi {
   background: var(--bg-alt);
}

.edukasi-tabs {
   display: flex;
   gap: 0.5rem;
   justify-content: center;
   flex-wrap: wrap;
   margin-bottom: 2rem;
}

.tab-btn {
   padding: 0.75rem 1.5rem;
   background: white;
   border: 2px solid var(--border);
   border-radius: 50px;
   font-weight: 600;
   cursor: pointer;
   transition: var(--transition);
}

.tab-btn:hover {
   border-color: var(--primary);
}

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

.tab-content {
   display: none;
}

.tab-content.active {
   display: block;
   animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
   from {
      opacity: 0;
      transform: translateY(10px);
   }

   to {
      opacity: 1;
      transform: translateY(0);
   }
}

.content-card {
   background: white;
   padding: 3rem;
   border-radius: var(--radius-lg);
   box-shadow: var(--shadow-lg);
   max-width: 800px;
   margin: 0 auto;
}

.content-icon {
   font-size: 3rem;
   margin-bottom: 1rem;
   text-align: center;
}

.content-card h3 {
   font-size: 1.5rem;
   margin-bottom: 1rem;
   text-align: center;
   color: var(--primary);
}

.content-list {
   margin: 1.5rem 0;
   padding-left: 1.5rem;
}

.content-list li {
   padding: 0.5rem 0;
   color: var(--text);
   position: relative;
}

.content-list li::before {
   content: '✓';
   color: var(--secondary);
   position: absolute;
   left: -1.5rem;
   font-weight: bold;
}

.content-highlight {
   background: linear-gradient(135deg, rgba(99, 102, 241, .1), rgba(16, 185, 129, .1));
   padding: 1.5rem;
   border-radius: var(--radius);
   margin-top: 1.5rem;
}

.content-highlight p {
   margin: 0;
}

/* Prevention Grid */
.prevention-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 1.5rem;
   margin-top: 2rem;
}

.prevention-item {
   text-align: center;
   padding: 1.5rem;
   background: var(--bg-alt);
   border-radius: var(--radius);
}

.prevention-icon {
   font-size: 2.5rem;
   display: block;
   margin-bottom: 0.75rem;
}

.prevention-item h4 {
   color: var(--text);
   margin-bottom: 0.5rem;
}

.prevention-item p {
   color: var(--text-light);
   font-size: 0.9rem;
   margin: 0;
}

/* Treatment Timeline */
.treatment-timeline {
   margin-top: 2rem;
}

.timeline-item {
   display: flex;
   gap: 1.5rem;
   margin-bottom: 1.5rem;
}

.timeline-marker {
   width: 40px;
   height: 40px;
   background: linear-gradient(135deg, var(--primary), var(--primary-dark));
   color: white;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-weight: 700;
   flex-shrink: 0;
}

.timeline-content {
   flex: 1;
   padding-bottom: 1.5rem;
   border-bottom: 1px solid var(--border);
}

.timeline-item:last-child .timeline-content {
   border-bottom: none;
}

.timeline-content h4 {
   color: var(--text);
   margin-bottom: 0.5rem;
}

.timeline-content p {
   color: var(--text-light);
   margin: 0;
   font-size: 0.95rem;
}

/* ==========================================
   Konseling Section
   ========================================== */
.konseling-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
}

.konseling-card {
   background: white;
   padding: 2.5rem;
   border-radius: var(--radius-lg);
   border: 2px solid var(--border);
   transition: var(--transition);
   position: relative;
}

.konseling-card:hover {
   transform: translateY(-8px);
   box-shadow: var(--shadow-xl);
}

.konseling-card.featured {
   border-color: var(--primary);
   background: linear-gradient(135deg, rgba(99, 102, 241, .02), rgba(139, 92, 246, .02));
}

.featured-badge {
   position: absolute;
   top: -12px;
   left: 50%;
   transform: translateX(-50%);
   background: linear-gradient(135deg, var(--primary), var(--primary-dark));
   color: white;
   padding: 0.375rem 1rem;
   border-radius: 50px;
   font-size: 0.8rem;
   font-weight: 600;
}

.konseling-icon {
   font-size: 3rem;
   margin-bottom: 1.5rem;
   text-align: center;
}

.konseling-card h3 {
   font-size: 1.35rem;
   margin-bottom: 1rem;
   text-align: center;
}

.konseling-card>p {
   color: var(--text-light);
   text-align: center;
   margin-bottom: 1.5rem;
}

.konseling-features {
   padding-left: 1.25rem;
}

.konseling-features li {
   padding: 0.5rem 0;
   color: var(--text-light);
   position: relative;
}

.konseling-features li::before {
   content: '✓';
   color: var(--secondary);
   position: absolute;
   left: -1.25rem;
   font-weight: bold;
}

.konseling-cta {
   text-align: center;
   margin-top: 3rem;
   padding-top: 3rem;
   border-top: 1px solid var(--border);
}

.konseling-cta p {
   color: var(--text-light);
   margin-bottom: 1rem;
   font-size: 1.1rem;
}

/* ==========================================
   Contact Section
   ========================================== */
.kontak {
   background: var(--bg-alt);
}

.contact-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2rem;
   max-width: 700px;
   margin: 0 auto;
}

.contact-card {
   background: white;
   border-radius: var(--radius-lg);
   overflow: hidden;
   box-shadow: var(--shadow-lg);
   transition: var(--transition);
}

.contact-card:hover {
   transform: translateY(-5px);
   box-shadow: var(--shadow-xl);
}

.contact-header {
   background: linear-gradient(135deg, var(--primary), var(--primary-dark));
   padding: 1.5rem;
   display: flex;
   align-items: center;
   gap: 1rem;
   color: white;
}

.contact-icon {
   font-size: 1.75rem;
}

.contact-header h3 {
   font-size: 1.15rem;
   margin: 0;
}

.contact-body {
   padding: 1.5rem;
   display: flex;
   flex-direction: column;
   gap: 1rem;
}

.contact-phone {
   display: flex;
   align-items: center;
   gap: 0.75rem;
   padding: 0.875rem 1.25rem;
   background: var(--bg-alt);
   border-radius: var(--radius);
   font-weight: 600;
   color: var(--text);
   transition: var(--transition);
}

.contact-phone:hover {
   background: var(--primary);
   color: white;
}

.contact-wa {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 0.5rem;
   padding: 0.875rem;
   background: #25d366;
   color: white;
   border-radius: var(--radius);
   font-weight: 600;
   transition: var(--transition);
}

.contact-wa:hover {
   background: #128c7e;
   transform: scale(1.02);
}

/* ==========================================
   Footer
   ========================================== */
.footer {
   background: var(--bg-dark);
   color: white;
   padding: 4rem 0 2rem;
}

.footer-content {
   display: grid;
   grid-template-columns: 2fr repeat(3, 1fr);
   gap: 3rem;
   margin-bottom: 3rem;
}

.footer-logo {
   display: flex;
   align-items: center;
   gap: 0.5rem;
   font-weight: 700;
   font-size: 1.25rem;
   margin-bottom: 1rem;
}

.footer-brand p {
   color: #94a3b8;
   font-size: 0.95rem;
   line-height: 1.7;
}

.footer-links h4,
.footer-emergency h4 {
   font-size: 1rem;
   margin-bottom: 1.25rem;
   color: white;
}

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

.footer-links a {
   color: #94a3b8;
   transition: var(--transition);
}

.footer-links a:hover {
   color: white;
   padding-left: 0.5rem;
}

.footer-emergency p {
   color: #94a3b8;
   font-size: 0.9rem;
   margin-bottom: 1rem;
}

.emergency-number {
   display: inline-flex;
   align-items: center;
   gap: 0.5rem;
   background: #ef4444;
   color: white;
   padding: 0.75rem 1.25rem;
   border-radius: var(--radius);
   font-weight: 700;
   transition: var(--transition);
}

.emergency-number:hover {
   background: #dc2626;
   transform: scale(1.05);
}

.footer-bottom {
   border-top: 1px solid rgba(255, 255, 255, .1);
   padding-top: 2rem;
   text-align: center;
   color: #64748b;
   font-size: 0.9rem;
}

@media (max-width: 768px) {
   .footer-content {
      grid-template-columns: 1fr;
      gap: 2rem;
   }
}

/* ==========================================
   Floating WhatsApp Button
   ========================================== */
.floating-wa {
   position: fixed;
   bottom: 2rem;
   right: 2rem;
   z-index: 999;
   width: 60px;
   height: 60px;
   background: #25d366;
   color: white;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
   transition: var(--transition);
   animation: pulse 2s infinite;
}

.floating-wa:hover {
   transform: scale(1.1);
   box-shadow: 0 6px 30px rgba(37, 211, 102, .5);
}

.floating-wa svg {
   fill: white;
}

.wa-tooltip {
   position: absolute;
   right: 70px;
   background: var(--bg-dark);
   color: white;
   padding: 0.5rem 1rem;
   border-radius: 8px;
   font-size: 0.85rem;
   font-weight: 500;
   white-space: nowrap;
   opacity: 0;
   visibility: hidden;
   transition: var(--transition);
}

.floating-wa:hover .wa-tooltip {
   opacity: 1;
   visibility: visible;
}

@keyframes pulse {

   0%,
   100% {
      box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
   }

   50% {
      box-shadow: 0 4px 30px rgba(37, 211, 102, .6);
   }
}

/* ==========================================
   Responsive
   ========================================== */
@media (max-width: 640px) {
   .hero-buttons {
      flex-direction: column;
      align-items: center;
   }

   .skrining-buttons {
      flex-direction: column;
   }

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

   .edukasi-tabs {
      flex-direction: column;
      align-items: center;
   }

   .tab-btn {
      width: 100%;
      text-align: center;
   }

   .intro-card,
   .skrining-form,
   .content-card,
   .result-card {
      padding: 1.5rem;
   }
}

/* ==========================================
   Additional Skrining Styles
   ========================================== */
/* 4 Column Selector Grid */
.selector-grid-4 {
   grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   max-width: 1100px;
}

/* Child Biodata Form */
.biodata-card-wide {
   max-width: 800px;
}

.form-section {
   margin-bottom: 2rem;
   padding-bottom: 1.5rem;
   border-bottom: 1px solid var(--border);
}

.form-section:last-of-type {
   border-bottom: none;
}

.form-section h4 {
   font-size: 1.1rem;
   color: var(--primary);
   margin-bottom: 1.25rem;
   display: flex;
   align-items: center;
   gap: 0.5rem;
}

.form-group select {
   width: 100%;
   padding: 0.875rem 1rem;
   border: 2px solid var(--border);
   border-radius: var(--radius);
   font-size: 1rem;
   background: white;
   cursor: pointer;
   transition: var(--transition);
}

.form-group select:focus {
   outline: none;
   border-color: var(--primary);
   box-shadow: 0 0 0 3px rgba(99, 102, 241, .1);
}

/* Radio Group */
.radio-group {
   display: flex;
   gap: 1.5rem;
   flex-wrap: wrap;
}

.radio-option {
   display: flex;
   align-items: center;
   gap: 0.5rem;
   cursor: pointer;
   padding: 0.5rem 0;
}

.radio-option input[type="radio"] {
   width: 18px;
   height: 18px;
   accent-color: var(--primary);
   cursor: pointer;
}

/* Yes/No Options for MMYS */
.options-yesno {
   flex-direction: row;
   gap: 1rem;
}

.option-yesno {
   flex: 1;
   min-width: 120px;
   justify-content: center;
   padding: 1.25rem 1.5rem;
}

.option-yesno .option-text {
   font-weight: 600;
}

.option-yesno.selected {
   background: linear-gradient(135deg, rgba(99, 102, 241, .15), rgba(139, 92, 246, .1));
}

/* Child Info in Result */
.child-info {
   background: var(--bg-alt);
   padding: 1rem 1.5rem;
   border-radius: var(--radius);
   margin-bottom: 1.5rem;
   text-align: left;
   font-size: 0.95rem;
   line-height: 1.8;
}

@media (max-width: 768px) {
   .selector-grid-4 {
      grid-template-columns: 1fr;
   }

   .options-yesno {
      flex-direction: column;
   }
}