/* ============================================
   CULTURENSE LLC - MAIN STYLESHEET
   culturense.net
   ============================================ */

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

/* --- CSS Variables --- */
:root {
  /* Primary: Dark Charcoal (logo background) */
  --primary: #2d3035;
  --primary-light: #3a3f47;
  --primary-dark: #1e2126;

  /* Accent: Gold / Copper (logo text & icon) */
  --accent: #c8922a;
  --accent-light: #e8b84b;
  --accent-dark: #a0721e;
  --copper: #b87333;
  --gold-bright: #f0c060;

  /* Status colors */
  --success: #28a745;
  --warning: #ffc107;
  --danger: #dc3545;
  --info: #17a2b8;

  /* Neutrals */
  --white: #ffffff;
  --light: #f5f3ef;
  --light-gray: #ede9e2;
  --mid-gray: #c8c0b0;
  --gray: #7a7060;
  --dark-gray: #2d3035;
  --dark: #1e2126;

  /* Text */
  --text: #2d2a24;
  --text-light: #6b6358;

  /* Borders & Shadows */
  --border: #e0d8cc;
  --shadow-sm: 0 2px 8px rgba(45,35,20,0.10);
  --shadow: 0 4px 20px rgba(45,35,20,0.15);
  --shadow-lg: 0 8px 40px rgba(45,35,20,0.20);

  /* Shape & Motion */
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --transition: all 0.3s ease;

  /* Fonts */
  --font-main: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  color: var(--text);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary-dark);
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: var(--transition);
}

a:hover { color: var(--accent); }

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

ul { list-style: none; }

/* --- Utility Classes --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-sm {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.text-white { color: var(--white); }
.text-gray { color: var(--gray); }
.text-light { color: var(--text-light); }

.bg-primary { background-color: var(--primary); }
.bg-light { background-color: var(--light); }
.bg-white { background-color: var(--white); }
.bg-dark { background-color: var(--dark); }

.fw-300 { font-weight: 300; }
.fw-400 { font-weight: 400; }
.fw-500 { font-weight: 500; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }

.d-flex { display: flex; }
.d-grid { display: grid; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.gap-4 { gap: 32px; }

.w-100 { width: 100%; }
.hidden { display: none; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--accent-light);
  border-color: var(--primary-light);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  border-color: var(--accent);
  color: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--copper) 100%);
  color: var(--primary-dark);
  border-color: var(--accent);
  font-weight: 700;
}
.btn-accent:hover {
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
  border-color: var(--accent-light);
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,146,42,0.4);
}

.btn-outline {
  background-color: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-outline:hover {
  background: linear-gradient(135deg, var(--accent) 0%, var(--copper) 100%);
  color: var(--primary-dark);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.btn-outline-white {
  background-color: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-white:hover {
  background-color: rgba(255,255,255,0.12);
  color: var(--accent-light);
  border-color: var(--accent-light);
  transform: translateY(-2px);
}

.btn-white {
  background-color: var(--white);
  color: var(--primary-dark);
  border-color: var(--white);
}
.btn-white:hover {
  background-color: var(--accent-light);
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-lg {
  padding: 16px 40px;
  font-size: 17px;
  border-radius: var(--radius);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 13px;
}

.btn-block {
  display: flex;
  width: 100%;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--primary-dark);
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
  transition: var(--transition);
  border-bottom: 1px solid rgba(200,146,42,0.2);
}

.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  background: rgba(30,33,38,0.98);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.navbar-logo {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 18px;
  font-family: var(--font-heading);
}

.navbar-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  max-width: 160px;
}

.navbar-brand-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--primary-dark);
}

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

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 8px 14px;
  color: rgba(255,255,255,0.80);
  font-weight: 500;
  font-size: 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--accent-light);
  background-color: rgba(200,146,42,0.12);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent-light);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 74px;
  left: 0;
  right: 0;
  background: var(--primary-dark);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  padding: 20px 24px;
  z-index: 999;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid rgba(200,146,42,0.2);
}

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

.mobile-menu .nav-link {
  padding: 12px 16px;
  font-size: 15px;
  border-radius: var(--radius-sm);
}

.mobile-menu .btn {
  margin-top: 8px;
}

/* --- Hero Section --- */
.hero {
  padding: 140px 0 80px;
  background: url('../images/hero-bg.png') center center / cover no-repeat;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,33,38,0.82) 0%, rgba(30,33,38,0.60) 50%, rgba(30,33,38,0.40) 100%);
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--white));
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,160,32,0.2);
  border: 1px solid rgba(232,160,32,0.4);
  color: var(--accent-light);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(32px, 4vw, 52px);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
}

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

.hero-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(200,146,42,0.3);
}

.hero-stat-number {
  font-size: 28px;
  font-weight: 800;
  color: var(--accent-light);
  font-family: var(--font-heading);
}

.hero-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-top: 2px;
}

.hero-card {
  background: rgba(30,33,38,0.75);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(200,146,42,0.35);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.hero-card-title {
  color: var(--accent-light);
  font-size: 18px;
  margin-bottom: 20px;
  font-family: var(--font-heading);
}

.hero-card-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(200,146,42,0.15);
  color: rgba(255,255,255,0.85);
  font-size: 14px;
}

.hero-card-item:last-child { border-bottom: none; }

.hero-card-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, rgba(200,146,42,0.3), rgba(184,115,51,0.2));
  border: 1px solid rgba(200,146,42,0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

/* --- Section Styles --- */
.section {
  padding: 80px 0;
}

.section-sm {
  padding: 48px 0;
}

.section-lg {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  background: rgba(200,146,42,0.12);
  color: var(--accent-dark);
  border: 1px solid rgba(200,146,42,0.3);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(26px, 3vw, 38px);
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- Cards --- */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  overflow: hidden;
}

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

.card-body {
  padding: 28px;
}

.card-header {
  padding: 20px 28px;
  border-bottom: 1px solid var(--border);
  background: var(--light);
}

.card-footer {
  padding: 16px 28px;
  border-top: 1px solid var(--border);
  background: var(--light);
}

/* --- Feature Cards --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-dark), var(--accent-light), var(--copper));
  transform: scaleX(0);
  transition: var(--transition);
}

.feature-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(200,146,42,0.15), rgba(184,115,51,0.08));
  border: 1px solid rgba(200,146,42,0.25);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}

.feature-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

/* --- Steps Section --- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-dark), var(--accent-light), var(--copper));
  z-index: 0;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--copper) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: var(--primary-dark);
  margin: 0 auto 20px;
  font-family: var(--font-heading);
  box-shadow: 0 4px 16px rgba(200,146,42,0.4);
  border: 4px solid var(--white);
}

.step-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

/* --- Benefits Section --- */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.benefit-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--copper) 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  color: var(--primary-dark);
  box-shadow: 0 3px 10px rgba(200,146,42,0.3);
}

.benefit-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 4px;
}

.benefit-content p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

.benefits-image {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  color: var(--white);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(200,146,42,0.2);
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}

.benefits-image::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(200,146,42,0.25) 0%, transparent 70%);
  border-radius: 50%;
}

.earnings-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.earnings-label {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 6px;
}

.earnings-value {
  font-size: 36px;
  font-weight: 800;
  color: var(--accent-light);
  font-family: var(--font-heading);
}

.earnings-note {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

/* --- CTA Section --- */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(200,146,42,0.2);
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200,146,42,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(184,115,51,0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-title {
  font-size: clamp(28px, 3vw, 42px);
  color: var(--white);
  margin-bottom: 16px;
}

.cta-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Footer --- */
.footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.8);
  padding: 64px 0 0;
  border-top: 2px solid rgba(200,146,42,0.3);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 16px;
}

.footer-logo-img {
  height: 70px;
  width: auto;
  object-fit: contain;
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
}

.footer-brand-name span { color: var(--accent); }

.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  transition: var(--transition);
}

.social-link:hover {
  background: linear-gradient(135deg, var(--accent), var(--copper));
  color: var(--primary-dark);
}

.footer-heading {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.footer-link:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copyright {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-link {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}

.footer-bottom-link:hover { color: var(--accent); }

/* --- Forms --- */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.form-label .required {
  color: var(--danger);
  margin-left: 3px;
}

.form-control {
  width: 100%;
  padding: 11px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200,146,42,0.15);
}

.form-control::placeholder {
  color: var(--mid-gray);
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236c757d' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

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

.form-row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.form-check-input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--primary);
  flex-shrink: 0;
}

.form-check-label {
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
  line-height: 1.5;
}

.form-hint {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 4px;
}

.form-error {
  font-size: 12px;
  color: var(--danger);
  margin-top: 4px;
}

/* --- Alerts --- */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
}

.alert-info {
  background: rgba(23,162,184,0.1);
  border: 1px solid rgba(23,162,184,0.3);
  color: #0c6674;
}

.alert-success {
  background: rgba(40,167,69,0.1);
  border: 1px solid rgba(40,167,69,0.3);
  color: #155724;
}

.alert-warning {
  background: rgba(255,193,7,0.1);
  border: 1px solid rgba(255,193,7,0.3);
  color: #856404;
}

.alert-danger {
  background: rgba(220,53,69,0.1);
  border: 1px solid rgba(220,53,69,0.3);
  color: #721c24;
}

/* --- Badges --- */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
}

.badge-primary { background: rgba(45,48,53,0.1); color: var(--primary-dark); }
.badge-accent { background: rgba(232,160,32,0.15); color: var(--accent-dark); }
.badge-success { background: rgba(40,167,69,0.1); color: var(--success); }
.badge-warning { background: rgba(255,193,7,0.15); color: #856404; }
.badge-danger { background: rgba(220,53,69,0.1); color: var(--danger); }
.badge-gray { background: var(--light-gray); color: var(--gray); }

/* --- Progress Bar --- */
.progress {
  height: 8px;
  background: var(--light-gray);
  border-radius: 50px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-dark), var(--accent-light), var(--copper));
  border-radius: 50px;
  transition: width 0.5s ease;
}

/* --- Divider --- */
.divider {
  height: 1px;
  background: var(--border);
  margin: 24px 0;
}

/* --- Page Header --- */
.page-header {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  padding: 100px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid rgba(200,146,42,0.25);
}

.page-header::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232,160,32,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.page-header-title {
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--white);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.page-header-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.breadcrumb-item {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

.breadcrumb-item a {
  color: rgba(255,255,255,0.7);
}

.breadcrumb-item a:hover { color: var(--accent-light); }

.breadcrumb-sep {
  color: rgba(255,255,255,0.4);
  font-size: 12px;
}

/* --- Checklist Styles --- */
.checklist-phase {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-bottom: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.checklist-phase-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: var(--light);
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
}

.checklist-phase-header:hover {
  background: var(--light-gray);
}

.checklist-phase-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-dark);
}

.phase-number {
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.phase-progress-text {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 400;
}

.checklist-phase-body {
  padding: 20px 24px;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--light-gray);
  transition: var(--transition);
}

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

.checklist-item.completed .checklist-item-text {
  text-decoration: line-through;
  color: var(--text-light);
}

.checklist-checkbox {
  width: 20px;
  height: 20px;
  border: 2px solid var(--mid-gray);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
  transition: var(--transition);
}

.checklist-checkbox.checked {
  background: var(--success);
  border-color: var(--success);
  color: var(--white);
}

.checklist-item-text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}

.checklist-item-desc {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 2px;
}

/* --- Dashboard Styles --- */
.dashboard-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
}

.sidebar {
  background: var(--primary-dark);
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 260px;
  overflow-y: auto;
  z-index: 100;
}

.sidebar-header {
  padding: 24px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.sidebar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sidebar-logo {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 16px;
}

.sidebar-logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.sidebar-brand-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  color: var(--white);
}

.sidebar-brand-name span { color: var(--accent-light); }

.sidebar-user {
  padding: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.sidebar-user-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 10px;
}

.sidebar-user-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

.sidebar-user-role {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}

.sidebar-nav {
  padding: 16px 12px;
}

.sidebar-nav-section {
  margin-bottom: 24px;
}

.sidebar-nav-label {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 0 8px;
  margin-bottom: 8px;
}

.sidebar-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  margin-bottom: 2px;
}

.sidebar-nav-item:hover {
  background: rgba(200,146,42,0.15);
  color: var(--accent-light);
}

.sidebar-nav-item.active {
  background: linear-gradient(135deg, rgba(200,146,42,0.25), rgba(184,115,51,0.15));
  color: var(--accent-light);
  border-left: 3px solid var(--accent);
}

.sidebar-nav-item .nav-icon {
  font-size: 16px;
  width: 20px;
  text-align: center;
}

.sidebar-nav-item .nav-badge {
  margin-left: auto;
  background: var(--accent);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 50px;
}

.main-content {
  margin-left: 260px;
  padding: 0;
  background: var(--light);
  min-height: 100vh;
}

.topbar {
  background: var(--white);
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 50;
}

.topbar-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-dark);
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.topbar-avatar {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
}

.dashboard-body {
  padding: 32px;
}

/* --- Stats Cards --- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 16px;
}

.stat-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.stat-icon-blue { background: rgba(26,60,94,0.1); }
.stat-icon-gold { background: rgba(232,160,32,0.15); }
.stat-icon-green { background: rgba(40,167,69,0.1); }
.stat-icon-red { background: rgba(220,53,69,0.1); }

.stat-value {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary-dark);
  font-family: var(--font-heading);
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 4px;
}

.stat-change {
  font-size: 12px;
  font-weight: 600;
  margin-top: 4px;
}

.stat-change.up { color: var(--success); }
.stat-change.down { color: var(--danger); }

/* --- Table Styles --- */
.table-wrapper {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  overflow: hidden;
}

.table-header {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}

.table-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-dark);
}

table {
  width: 100%;
  border-collapse: collapse;
}

th {
  padding: 12px 20px;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: var(--light);
  border-bottom: 1px solid var(--border);
}

td {
  padding: 14px 20px;
  font-size: 14px;
  color: var(--text);
  border-bottom: 1px solid var(--light-gray);
}

tr:last-child td { border-bottom: none; }

tr:hover td { background: rgba(26,60,94,0.02); }

/* --- Multi-step Form --- */
.form-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.form-step {
  display: flex;
  align-items: center;
  gap: 0;
}

.step-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
}

.step-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--mid-gray);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--gray);
  transition: var(--transition);
  z-index: 1;
}

.step-dot.active {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
}

.step-dot.completed {
  border-color: var(--success);
  background: var(--success);
  color: var(--white);
}

.step-label {
  font-size: 11px;
  color: var(--text-light);
  white-space: nowrap;
  font-weight: 500;
}

.step-label.active { color: var(--primary); font-weight: 600; }
.step-label.completed { color: var(--success); }

.step-connector {
  width: 60px;
  height: 2px;
  background: var(--mid-gray);
  margin: 0 4px;
  margin-bottom: 22px;
  transition: var(--transition);
}

.step-connector.completed { background: var(--success); }

.form-section {
  display: none;
}

.form-section.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

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

.form-section-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.form-section-subtitle {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 28px;
}

.form-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-content { grid-template-columns: 1fr; }
  .hero-card { display: none; }
}

@media (max-width: 768px) {
  .navbar-nav { display: none; }
  .navbar-actions .btn:not(.btn-sm) { display: none; }
  .hamburger { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-row-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .dashboard-layout { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .main-content { margin-left: 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .cta-actions { flex-direction: column; align-items: center; }
  .form-steps { justify-content: flex-start; }
  .step-connector { width: 30px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .stats-grid { grid-template-columns: 1fr; }
  .hero { padding: 120px 0 60px; }
  .section { padding: 56px 0; }
  .btn-lg { padding: 14px 28px; font-size: 15px; }
}
/* ============================================
   ADMIN LAYOUT STYLES (for files.php)
   ============================================ */

.admin-layout {
  display: flex;
  min-height: 100vh;
  background: var(--light);
}

.admin-sidebar {
  width: 260px;
  background: var(--primary-dark);
  color: var(--white);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

.admin-sidebar .sidebar-header {
  padding: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  gap: 12px;
}

.admin-sidebar .sidebar-header img {
  width: 40px;
  height: 40px;
}

.admin-sidebar .sidebar-nav {
  flex: 1;
  padding: 16px 12px;
  overflow-y: auto;
}

.admin-sidebar .sidebar-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  border-radius: 8px;
  margin-bottom: 4px;
  transition: all 0.2s;
  font-size: 14px;
}

.admin-sidebar .sidebar-link:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

.admin-sidebar .sidebar-link.active {
  background: var(--accent);
  color: var(--primary-dark);
  font-weight: 600;
}

.admin-sidebar .sidebar-link span {
  font-size: 18px;
}

.admin-sidebar .sidebar-footer {
  padding: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.admin-content {
  flex: 1;
  overflow-y: auto;
}

@media (max-width: 768px) {
  .admin-layout {
    flex-direction: column;
  }
  .admin-sidebar {
    width: 100%;
  }
}
