/*
Theme Name: Cognitive Outcomes
Theme URI: https://cognitiveoutcomes.us
Description: Modern defense & intelligence AI company theme - AI-Powered Classification & Legal Intelligence
Author: Cognitive Outcomes
Author URI: https://cognitiveoutcomes.us
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cognitive-outcomes
Domain Path: /languages
*/

/* =========================================
   VARIABLES & COLOR PALETTE
   ========================================= */

:root {
  --primary-dark: #0b1221;
  --secondary-dark: #111b2e;
  --card-bg: #162036;
  --gold-accent: #c9a84c;
  --gold-hover: #dbb960;
  --gold-text: #d4a84b;
  --body-text: #c0c8d8;
  --heading-text: #ffffff;
  --border-subtle: rgba(201, 168, 76, 0.2);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =========================================
   RESET & GENERAL STYLES
   ========================================= */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--primary-dark);
  color: var(--body-text);
  line-height: 1.6;
  font-size: 16px;
}

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

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

h1, h2, h3, h4, h5, h6 {
  color: var(--heading-text);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(1.875rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: 1.375rem;
}

p {
  margin-bottom: 1rem;
}

button, .btn {
  font-family: inherit;
  cursor: pointer;
  border: none;
  border-radius: 6px;
  transition: var(--transition);
  font-weight: 600;
  font-size: 0.95rem;
}

.btn-primary {
  background-color: var(--gold-accent);
  color: var(--primary-dark);
  padding: 0.875rem 2rem;
  display: inline-block;
}

.btn-primary:hover {
  background-color: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201, 168, 76, 0.25);
}

.btn-secondary {
  background-color: transparent;
  color: var(--gold-accent);
  border: 2px solid var(--gold-accent);
  padding: 0.75rem 1.75rem;
}

.btn-secondary:hover {
  background-color: rgba(201, 168, 76, 0.1);
  border-color: var(--gold-hover);
  color: var(--gold-hover);
}

/* =========================================
   HEADER & NAVIGATION
   ========================================= */

header {
  background-color: var(--primary-dark);
  border-bottom: 1px solid var(--border-subtle);
  position: sticky;
  top: 0;
  z-index: 1000;
  animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 2rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-text);
  letter-spacing: -0.5px;
}

.logo span {
  color: var(--gold-accent);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

nav a {
  color: var(--body-text);
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--gold-accent);
  transition: width 0.3s ease;
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

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

.nav-cta {
  background-color: var(--gold-accent);
  color: var(--primary-dark);
  padding: 0.6rem 1.2rem;
  margin-left: 0.5rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
}

.nav-cta:hover {
  background-color: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(201, 168, 76, 0.3);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--gold-accent);
  font-size: 1.5rem;
  cursor: pointer;
}

/* =========================================
   RESPONSIVE NAVIGATION
   ========================================= */

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--secondary-dark);
    border-bottom: 1px solid var(--border-subtle);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  nav.active {
    max-height: 400px;
  }

  nav ul {
    flex-direction: column;
    gap: 0;
    padding: 1.5rem;
  }

  nav li {
    width: 100%;
    padding: 0.75rem 0;
  }

  nav a {
    display: block;
    width: 100%;
  }

  nav a::after {
    display: none;
  }

  nav li:first-child a::before {
    content: '◆ ';
    color: var(--gold-accent);
    margin-right: 0.5rem;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
    margin-top: 1rem;
  }

  .header-container {
    padding: 1rem 1.5rem;
  }
}

/* =========================================
   HERO SECTION
   ========================================= */

.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
  padding: 5rem 2rem;
  text-align: center;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(22, 32, 54, 0.5) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  max-width: 900px;
  position: relative;
  z-index: 2;
  animation: fadeInUp 0.8s ease-out;
}

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

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--heading-text) 0%, var(--gold-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.hero .subtitle {
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  color: var(--gold-accent);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero .tagline {
  font-size: 1.1rem;
  color: var(--body-text);
  max-width: 700px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

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

/* =========================================
   STATS BAR
   ========================================= */

.stats-bar {
  background-color: var(--card-bg);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 3rem 2rem;
}

.stats-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {
  animation: fadeInScale 0.6s ease-out;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.stat-item .number {
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--gold-accent);
  margin-bottom: 0.5rem;
}

.stat-item .label {
  font-size: 0.9rem;
  color: var(--body-text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.5;
}

/* =========================================
   CONTENT CONTAINER
   ========================================= */

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.content-wrapper {
  padding: 4rem 0;
}

/* =========================================
   SECTION STYLES
   ========================================= */

section {
  padding: 4rem 2rem;
  border-bottom: 1px solid var(--border-subtle);
}

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

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header .subtitle {
  font-size: 1.1rem;
  color: var(--body-text);
  max-width: 600px;
  margin: 0 auto;
}

/* =========================================
   PRODUCTS & CARDS
   ========================================= */

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

.product-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 2.5rem;
  transition: var(--transition);
  animation: fadeInUp 0.6s ease-out;
}

.product-card:hover {
  border-color: var(--gold-accent);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(201, 168, 76, 0.15);
}

.product-card h3 {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.product-card h3::before {
  content: '';
  width: 4px;
  height: 4px;
  background-color: var(--gold-accent);
  border-radius: 50%;
}

.product-card p {
  color: var(--body-text);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.product-card ul {
  list-style: none;
  margin: 1.5rem 0;
}

.product-card li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--body-text);
  font-size: 0.95rem;
}

.product-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold-accent);
  font-weight: bold;
}

.product-tag {
  display: inline-block;
  background-color: rgba(201, 168, 76, 0.1);
  color: var(--gold-accent);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 1rem;
}

/* =========================================
   FEATURE SECTIONS
   ========================================= */

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.feature-item {
  text-align: left;
  animation: fadeInUp 0.6s ease-out;
}

.feature-item h4 {
  color: var(--gold-accent);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.feature-item h4::before {
  content: '';
  width: 8px;
  height: 8px;
  background-color: var(--gold-accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.feature-item p {
  color: var(--body-text);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* =========================================
   HOW IT WORKS
   ========================================= */

.how-it-works {
  background-color: var(--card-bg);
  padding: 4rem 2rem;
  border-radius: 12px;
  max-width: 1400px;
  margin: 0 auto;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.step {
  position: relative;
  text-align: center;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gold-accent) 0%, var(--gold-hover) 100%);
  color: var(--primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}

.step h4 {
  color: var(--heading-text);
  margin-bottom: 0.75rem;
}

.step p {
  color: var(--body-text);
  font-size: 0.9rem;
  line-height: 1.6;
}

.step::after {
  content: '→';
  position: absolute;
  right: -2rem;
  top: 2rem;
  font-size: 2rem;
  color: var(--gold-accent);
  opacity: 0.5;
}

.step:last-child::after {
  display: none;
}

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

/* =========================================
   WHY CHOOSE US
   ========================================= */

.why-choose-us {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.why-choose-us h2 {
  margin-bottom: 2rem;
}

.why-choose-us ul {
  list-style: none;
}

.why-choose-us li {
  padding: 1rem 0;
  padding-left: 2.5rem;
  position: relative;
  color: var(--body-text);
  line-height: 1.7;
}

.why-choose-us li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--gold-accent);
  font-size: 1.2rem;
}

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

/* =========================================
   COMPETITIVE MOAT
   ========================================= */

.moat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.moat-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 2rem;
  transition: var(--transition);
  text-align: center;
}

.moat-item:hover {
  border-color: var(--gold-accent);
  background-color: rgba(201, 168, 76, 0.05);
}

.moat-item h4 {
  color: var(--gold-accent);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.moat-item p {
  color: var(--body-text);
  font-size: 0.9rem;
}

/* =========================================
   FOOTER
   ========================================= */

footer {
  background-color: var(--secondary-dark);
  border-top: 1px solid var(--border-subtle);
  padding: 4rem 2rem 2rem;
  margin-top: 6rem;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-section h4 {
  color: var(--heading-text);
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.75rem;
}

.footer-section a {
  color: var(--body-text);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-section a:hover {
  color: var(--gold-accent);
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  color: var(--body-text);
  font-size: 0.85rem;
}

.footer-social {
  display: flex;
  gap: 1.5rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(201, 168, 76, 0.1);
  border-radius: 6px;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background-color: var(--gold-accent);
  color: var(--primary-dark);
}

/* =========================================
   CONTACT FORM
   ========================================= */

.contact-form {
  max-width: 600px;
  margin: 3rem auto;
  background-color: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 2.5rem;
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  color: var(--heading-text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-accent);
  background-color: rgba(201, 168, 76, 0.05);
}

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

.contact-form button {
  width: 100%;
  padding: 1rem;
  background-color: var(--gold-accent);
  color: var(--primary-dark);
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
}

.contact-form button:hover {
  background-color: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201, 168, 76, 0.25);
}

/* =========================================
   PAGE TEMPLATES
   ========================================= */

.page-header {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
  padding: 3rem 2rem;
  text-align: center;
  border-bottom: 1px solid var(--border-subtle);
}

.page-header h1 {
  margin-bottom: 0.75rem;
}

.page-header .subtitle {
  color: var(--gold-accent);
  font-size: 1.1rem;
}

.page-content {
  max-width: 1000px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.about-section {
  margin-bottom: 3.5rem;
}

.about-section h2 {
  margin-bottom: 1.5rem;
  color: var(--gold-accent);
}

.about-section p {
  color: var(--body-text);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* =========================================
   PLATFORM / TECHNOLOGY SECTION
   ========================================= */

.architecture-flow {
  background-color: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 3rem 2rem;
  margin: 2.5rem 0;
}

.flow-diagram {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  text-align: center;
  margin-top: 2rem;
}

.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.flow-step-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--gold-accent) 0%, var(--gold-hover) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.25);
}

.flow-step h4 {
  color: var(--heading-text);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.flow-step p {
  font-size: 0.85rem;
  color: var(--body-text);
}

.flow-step::after {
  content: '→';
  position: absolute;
  right: -2.5rem;
  top: 3rem;
  font-size: 2rem;
  color: var(--gold-accent);
  opacity: 0.4;
}

.flow-step:last-child::after {
  display: none;
}

@media (max-width: 768px) {
  .flow-step::after {
    display: none;
  }
}

.tech-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.tech-feature {
  background-color: rgba(201, 168, 76, 0.05);
  border-left: 4px solid var(--gold-accent);
  padding: 1.5rem;
  border-radius: 6px;
}

.tech-feature h4 {
  color: var(--gold-accent);
  margin-bottom: 0.75rem;
}

.tech-feature p {
  color: var(--body-text);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* =========================================
   404 PAGE
   ========================================= */

.page-404 {
  text-align: center;
  padding: 6rem 2rem;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-404 h1 {
  font-size: 5rem;
  color: var(--gold-accent);
  margin-bottom: 1rem;
}

.page-404 p {
  font-size: 1.25rem;
  color: var(--body-text);
  margin-bottom: 2.5rem;
}

/* =========================================
   SCROLL ANIMATIONS
   ========================================= */

.fade-in {
  opacity: 1;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.fade-in-delay-1 { animation-delay: 0.1s; }
.fade-in-delay-2 { animation-delay: 0.2s; }
.fade-in-delay-3 { animation-delay: 0.3s; }
.fade-in-delay-4 { animation-delay: 0.4s; }

/* =========================================
   ACCESSIBILITY
   ========================================= */

.skip-to-content {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--gold-accent);
  color: var(--primary-dark);
  padding: 8px 16px;
  text-decoration: none;
  z-index: 100;
}

.skip-to-content:focus {
  top: 0;
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */

@media (max-width: 768px) {
  .hero {
    padding: 3rem 1.5rem;
    min-height: 500px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  section {
    padding: 3rem 1.5rem;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .products-grid,
  .features-grid,
  .moat-grid {
    gap: 1.5rem;
  }

  .product-card {
    padding: 1.75rem;
  }

  .why-choose-us {
    gap: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

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

  .contact-form {
    padding: 1.5rem;
  }

  .stats-container {
    gap: 1.5rem;
  }

  .page-header {
    padding: 2rem 1.5rem;
  }

  .page-content {
    margin: 2.5rem auto;
    padding: 0 1.5rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.35rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 2.5rem 1rem;
    min-height: 400px;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .hero .subtitle {
    font-size: 1rem;
  }

  .header-container {
    padding: 1rem;
  }

  nav ul {
    gap: 1rem;
  }

  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-card {
    padding: 1.5rem;
  }

  section {
    padding: 2rem 1rem;
  }

  .footer-section h4 {
    font-size: 0.85rem;
  }

  .page-404 {
    padding: 4rem 1rem;
  }

  .page-404 h1 {
    font-size: 3rem;
  }

  .why-choose-us li {
    padding-left: 2rem;
  }
}

/* =========================================
   UTILITY CLASSES
   ========================================= */

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

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

.text-light {
  color: var(--body-text);
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.gap-1 { gap: 1rem; }
.gap-2 { gap: 2rem; }
.gap-3 { gap: 3rem; }

.border-gold {
  border: 1px solid var(--border-subtle);
}

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

.rounded {
  border-radius: 8px;
}

.rounded-lg {
  border-radius: 12px;
}

.shadow {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.shadow-lg {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
