﻿/* custom.css — Kora Energy | korapower.org */

/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;700;800&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --accent: #F59E0B;
  --accent-hover: #D97706;
  --dark-bg: #0F172A;
  --dark-card: #1E293B;
  --dark-border: #334155;
  --text-light: #94A3B8;
  --text-mid: #64748B;
  --text-dark: #1A1A2E;
  --border-light: #E2E8F0;
  --bg-light: #F1F5F9;
  --white: #FFFFFF;
}

/* ===== BASE OVERRIDES ===== */
body {
  font-family: 'Inter', sans-serif;
  color: #1A1A2E;
}

/* ===== NAVIGATION ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent !important;
  backdrop-filter: none !important;
  box-shadow: none !important;
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease !important;
}
nav.scrolled {
  background: rgba(15, 23, 42, 0.95) !important;
  backdrop-filter: blur(10px) !important;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3) !important;
}
/* Nav scrolled state: dark bg = white text stays visible */
nav.scrolled .nav-links a { color: #E2E8F0; }
nav.scrolled .nav-links a:hover, nav.scrolled .nav-links a.active { color: #FFFFFF; }
nav.scrolled .logo { color: #FFFFFF; }


.logo {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: #FFFFFF;
  gap: 8px;
}
.logo .logo-bolt {
  color: #F59E0B;
  font-size: 1.25rem;
}
.logo span {
  color: #FFFFFF;
}
.logo-power {
  color: #22C55E;
  font-weight: 800;
}
.logo span.logo-power {
  color: #22C55E;
}
footer .logo {
  color: #FFFFFF;
}
footer .logo span {
  color: #FFFFFF;
}
footer .logo .logo-power {
  color: #22C55E;
}
.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #FFFFFF !important;
  border: none;
  border-radius: 0;
  padding: 8px 4px;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #F59E0B;
  transition: width 0.25s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: #F59E0B;
  border: none;
  background: none;
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-reserve-btn {
  background: #F59E0B;
  color: #0F172A;
  border-radius: 9999px;
  padding: 0.5rem 1.25rem;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  border: none;
  transition: background 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}
.nav-reserve-btn:hover {
  background: #D97706;
  transform: translateY(-1px);
  color: #0F172A;
}

/* ===== HERO ===== */
.hero {
  max-width: none;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: #0F172A url('../images/hero-bg.jpg') center center / cover no-repeat;
  position: relative;
  min-height: 100vh;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15,23,42,0.6);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 2rem;
  margin-top: 0;
}
.hero h1 {
  font-family: 'Inter', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
  line-height: 1.1;
}
.hero p {
  font-size: 1.125rem;
  color: #94A3B8;
  margin-bottom: 2rem;
  position: relative;
  min-height: auto;
}
.hero-sub {
  color: #94A3B8;
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
/* Override template text-cycling for hero */
.hero p .text-option {
  display: none;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,158,11,0.15);
  border: 1px solid rgba(245,158,11,0.3);
  color: #F59E0B;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-trust {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  border-top: 1px solid rgba(51,65,85,0.5);
  padding-top: 2rem;
  margin-top: 2rem;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #94A3B8;
  font-size: 0.875rem;
  font-weight: 500;
}
.hero-trust-item i {
  color: #F59E0B;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: #0F172A;
  padding: 7rem 0 4rem;
  text-align: center;
}
.page-hero h1 {
  font-family: 'Inter', sans-serif;
  font-size: 2.75rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.page-hero p {
  color: #94A3B8;
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
.page-hero-short {
  padding: 5rem 0 3rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.875rem 2rem;
  border-radius: 9999px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
  line-height: 1;
}
.btn-primary {
  background: #F59E0B;
  color: #0F172A;
}
.btn-primary:hover {
  background: #D97706;
  transform: translateY(-2px);
  color: #0F172A;
}
.btn-ghost {
  background: transparent;
  color: #F59E0B;
  border: 2px solid #F59E0B;
}
.btn-ghost:hover {
  background: #F59E0B;
  color: #0F172A;
}
.btn-ghost-light {
  background: transparent;
  color: #94A3B8;
  border: 1px solid #475569;
}
.btn-ghost-light:hover {
  color: #FFFFFF;
  border-color: #94A3B8;
}
.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

/* Override template CTA button */
.cta-btn {
  background: #F59E0B;
  color: #0F172A;
  border-radius: 9999px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}
.cta-btn:hover {
  background: #D97706;
  box-shadow: 0 10px 20px rgba(245,158,11,0.3);
  color: #0F172A;
}
.submit-btn {
  background: #F59E0B;
  color: #0F172A;
  border-radius: 9999px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  border: none;
}
.submit-btn:hover {
  background: #D97706;
  color: #0F172A;
}

/* ===== SECTION WRAPPERS ===== */
.section-full {
  width: 100%;
  padding: 5rem 0;
}
.section-full.bg-dark {
  background: #0F172A;
}
.section-full.bg-dark-alt {
  background: #1E293B;
}
.section-full.bg-light {
  background: #F1F5F9;
}
.section-full.bg-white {
  background: #FFFFFF;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section-title {
  font-family: 'Inter', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.section-title.white {
  color: #FFFFFF;
}
.section-subtitle {
  color: #64748B;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 600px;
}
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header .section-subtitle {
  margin: 0.75rem auto 0;
}

/* ===== CARDS ===== */
.card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}
.dark-card {
  background: #1E293B;
  border: 1px solid #334155;
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.dark-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  transform: translateY(-4px);
}
.icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(245,158,11,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.icon-circle i {
  color: #F59E0B;
  font-size: 1.25rem;
}

/* ===== STATS ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.stat-item {
  text-align: center;
  padding: 2rem;
}
.stat-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 3.5rem;
  font-weight: 800;
  color: #F59E0B;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===== FEATURE CARDS ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.feature-card {
  background: #1E293B;
  border: 1px solid #334155;
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.feature-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  transform: translateY(-4px);
}
.feature-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.375rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 0.75rem;
}
.feature-card p {
  color: #94A3B8;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

/* ===== STEPS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}
.step-item {
  text-align: center;
  padding: 2rem;
  position: relative;
}
.step-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(245,158,11,0.15);
  border: 2px solid #F59E0B;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.step-dot i {
  color: #F59E0B;
  font-size: 1.375rem;
}
.step-item h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1A1A2E;
  margin-bottom: 0.75rem;
}
.step-item p {
  color: #64748B;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  text-align: center;
  padding: 5rem 0;
}
.cta-banner h2 {
  font-family: 'Inter', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1rem;
}
.cta-banner p {
  color: #94A3B8;
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

/* ===== PRESS STRIP ===== */
.press-strip {
  padding: 2.5rem 0;
  background: #FFFFFF;
  border-bottom: 1px solid #E2E8F0;
}
.press-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #64748B;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.press-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.press-logo-item {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #94A3B8;
  letter-spacing: 0.05em;
  opacity: 0.5;
  transition: opacity 0.2s ease;
}
.press-logo-item:hover {
  opacity: 0.8;
}

/* ===== PRODUCT DETAIL ===== */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.product-detail.reverse {
  direction: rtl;
}
.product-detail.reverse > * {
  direction: ltr;
}
.product-img {
  border-radius: 12px;
  width: 100%;
  aspect-ratio: 5/4;
  object-fit: cover;
  background: #1E293B;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-img-placeholder {
  border-radius: 12px;
  background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
  aspect-ratio: 5/4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-img-placeholder i {
  font-size: 5rem;
  color: #F59E0B;
  opacity: 0.4;
}
.product-content h2 {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 1rem;
  text-align: left;
}
.product-content h2::after {
  display: none;
}
.product-content p {
  color: #64748B;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #1A1A2E;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.feature-list li i {
  color: #F59E0B;
  font-size: 0.875rem;
  margin-top: 4px;
  flex-shrink: 0;
}
.product-badge {
  display: inline-block;
  background: rgba(245,158,11,0.12);
  color: #F59E0B;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.3rem 0.875rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
}

/* ===== SPEC TABLE ===== */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 12px;
  overflow: hidden;
}
.spec-table thead tr {
  background: #1E293B;
  color: #FFFFFF;
}
.spec-table thead th {
  padding: 1rem 1.5rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}
.spec-table tbody tr:nth-child(odd) {
  background: #F8FAFC;
}
.spec-table tbody tr:nth-child(even) {
  background: #FFFFFF;
}
.spec-table tbody td {
  padding: 1rem 1.5rem;
  color: #1A1A2E;
  font-size: 0.9375rem;
  border-bottom: 1px solid #E2E8F0;
}
.spec-table tbody td:first-child {
  color: #64748B;
  font-weight: 500;
}

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}
.pricing-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.pricing-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}
.pricing-card.featured {
  background: #0F172A;
  border: 2px solid #F59E0B;
  box-shadow: 0 20px 60px rgba(245,158,11,0.15);
  transform: scale(1.02);
}
.pricing-card.featured:hover {
  transform: scale(1.02) translateY(-4px);
}
.pricing-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(245,158,11,0.12);
  color: #F59E0B;
}
.pricing-card.featured .pricing-badge {
  background: #F59E0B;
  color: #0F172A;
}
.pricing-name {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 0.5rem;
}
.pricing-card.featured .pricing-name {
  color: #FFFFFF;
}
.pricing-price {
  font-family: 'JetBrains Mono', monospace;
  font-size: 2.5rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 0.5rem;
  line-height: 1;
}
.pricing-card.featured .pricing-price {
  color: #F59E0B;
}
.pricing-desc {
  color: #64748B;
  font-size: 0.9375rem;
  margin-bottom: 2rem;
  line-height: 1.5;
}
.pricing-card.featured .pricing-desc {
  color: #94A3B8;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  flex: 1;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #1A1A2E;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.pricing-card.featured .pricing-features li {
  color: #FFFFFF;
}
.pricing-features li i {
  color: #F59E0B;
  font-size: 0.875rem;
  margin-top: 4px;
  flex-shrink: 0;
}
.pricing-divider {
  height: 1px;
  background: #E2E8F0;
  margin-bottom: 2rem;
}
.pricing-card.featured .pricing-divider {
  background: #334155;
}
.pricing-card .btn {
  width: 100%;
  text-align: center;
  margin-top: auto;
}

/* ===== ADDONS ===== */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.addon-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
}
.addon-icon {
  width: 56px;
  height: 56px;
  background: rgba(245,158,11,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.addon-icon i {
  font-size: 1.5rem;
  color: #F59E0B;
}
.addon-name {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #0F172A;
  margin-bottom: 0.5rem;
}
.addon-price {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.375rem;
  font-weight: 700;
  color: #F59E0B;
  margin-bottom: 1rem;
}
.addon-link {
  color: #F59E0B;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
}
.addon-link:hover {
  color: #D97706;
  text-decoration: underline;
}

/* ===== FAQ / ACCORDION ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  background: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #0F172A;
  transition: background 0.2s ease;
  list-style: none;
  -webkit-tap-highlight-color: transparent;
}
.faq-question:hover {
  background: #F8FAFC;
}
.faq-question i {
  color: #F59E0B;
  font-size: 0.875rem;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-question i {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #FFFFFF;
  padding: 0 1.5rem;
  color: #64748B;
  font-size: 0.9375rem;
  line-height: 1.7;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 1.5rem 1.25rem;
}

/* ===== TEAM ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.advisor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.team-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.team-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}
.team-avatar {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: #1E293B;
}
.team-avatar-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-avatar-placeholder i {
  font-size: 3rem;
  color: #334155;
}
.team-info {
  padding: 1.5rem;
}
.team-name {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #1A1A2E;
  margin-bottom: 0.25rem;
}
.team-title {
  color: #64748B;
  font-size: 0.9375rem;
  margin-bottom: 0.5rem;
}
.team-location {
  color: #94A3B8;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 0.75rem;
}
.team-linkedin {
  color: #F59E0B;
  font-size: 1.125rem;
  text-decoration: none;
  transition: color 0.2s ease;
}
.team-linkedin:hover {
  color: #D97706;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-content h2 {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 1.25rem;
  text-align: left;
}
.about-content h2::after {
  display: none;
}
.about-content p {
  color: #64748B;
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-size: 1rem;
}
.quote-block {
  border-left: 3px solid #F59E0B;
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  background: #F8FAFC;
  border-radius: 0 8px 8px 0;
}
.quote-block p {
  font-style: italic;
  color: #1A1A2E;
  font-size: 1.0625rem;
  margin-bottom: 0.5rem !important;
}
.quote-block cite {
  font-style: normal;
  font-size: 0.875rem;
  color: #64748B;
  font-weight: 600;
}
.about-img {
  border-radius: 12px;
  width: 100%;
  aspect-ratio: 5/4;
  object-fit: cover;
}
.about-img-placeholder {
  border-radius: 12px;
  background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
  aspect-ratio: 5/4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-img-placeholder i {
  font-size: 5rem;
  color: #F59E0B;
  opacity: 0.3;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-form-wrapper h2 {
  font-family: 'Inter', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 2rem;
  text-align: left;
}
.contact-form-wrapper h2::after {
  display: none;
}
.contact-details {
  background: #F1F5F9;
  border-radius: 12px;
  padding: 2rem;
}
.contact-details h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #0F172A;
  margin-bottom: 1.5rem;
}
.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
  color: #64748B;
  font-size: 0.9375rem;
  line-height: 1.5;
}
.contact-detail-item i {
  color: #F59E0B;
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
  width: 20px;
}
.contact-detail-item a {
  color: #64748B;
  text-decoration: none;
}
.contact-detail-item a:hover {
  color: #F59E0B;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.form-field.full {
  grid-column: 1 / -1;
}
.form-field label {
  font-weight: 500;
  color: #1A1A2E;
  font-size: 0.9375rem;
}
.form-field input,
.form-field select,
.form-field textarea {
  padding: 0.875rem 1rem;
  border: 2px solid #E2E8F0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  color: #1A1A2E;
  transition: border-color 0.2s ease;
  background: #FFFFFF;
  resize: vertical;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #F59E0B;
}
.form-field textarea {
  min-height: 120px;
}

/* ===== BLOG ===== */
.blog-featured {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 3rem;
  align-items: center;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  overflow: hidden;
}
.blog-featured-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-featured-img i {
  font-size: 5rem;
  color: #F59E0B;
  opacity: 0.3;
}
.blog-featured-content {
  padding: 2.5rem;
}
.blog-cat {
  display: inline-block;
  background: rgba(245,158,11,0.12);
  color: #F59E0B;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.blog-featured-content h2 {
  font-family: 'Inter', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 1rem;
  line-height: 1.3;
  text-align: left;
}
.blog-featured-content h2::after {
  display: none;
}
.blog-featured-content p {
  color: #64748B;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.blog-read-more {
  color: #F59E0B;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}
.blog-read-more:hover {
  color: #D97706;
  gap: 10px;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.blog-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.blog-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}
.blog-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-card-img i {
  font-size: 2.5rem;
  color: #F59E0B;
  opacity: 0.3;
}
.blog-card-body {
  padding: 1.5rem;
}
.blog-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: #0F172A;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}
.blog-card p {
  color: #64748B;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.blog-meta {
  color: #94A3B8;
  font-size: 0.8125rem;
  margin-bottom: 0.75rem;
}
.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 480px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.newsletter-form input {
  flex: 1;
  padding: 0.875rem 1.25rem;
  border: 2px solid #334155;
  border-radius: 9999px;
  background: rgba(255,255,255,0.05);
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  min-width: 0;
}
.newsletter-form input::placeholder {
  color: #64748B;
}
.newsletter-form input:focus {
  outline: none;
  border-color: #F59E0B;
}

/* ===== INVESTOR STRIP ===== */
.investor-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 2rem 0;
}
.investor-item {
  text-align: center;
  color: #64748B;
}
.investor-name {
  font-family: 'Inter', sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: #94A3B8;
  opacity: 0.6;
  letter-spacing: 0.02em;
}
.investor-desc {
  font-size: 0.875rem;
  color: #94A3B8;
  margin-top: 0.25rem;
}

/* ===== FOOTER ===== */
footer {
  background: #0F172A;
  padding: 5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-brand p {
  color: #94A3B8;
  font-size: 0.9375rem;
  line-height: 1.7;
  margin: 1rem 0 1.5rem;
}
.footer-socials {
  display: flex;
  gap: 1rem;
}
.footer-socials a {
  width: 36px;
  height: 36px;
  border: 1px solid #334155;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94A3B8;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.footer-socials a:hover {
  border-color: #F59E0B;
  color: #F59E0B;
}
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 1.25rem;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin-bottom: 0.75rem;
}
.footer-col ul li a {
  color: #94A3B8;
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}
.footer-col ul li a:hover {
  color: #F59E0B;
}
.footer-bottom {
  border-top: 1px solid #334155;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copyright {
  color: #64748B;
  font-size: 0.8125rem;
}
.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}
.footer-legal-links a {
  color: #64748B;
  text-decoration: none;
  font-size: 0.8125rem;
  transition: color 0.2s ease;
}
.footer-legal-links a:hover {
  color: #F59E0B;
}
/* Override template footer */
.footer-content {
  display: none;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1E293B;
  border-top: 1px solid #334155;
  padding: 1.25rem 2rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cookie-banner p {
  color: #94A3B8;
  font-size: 0.9375rem;
  margin: 0;
  flex: 1;
  min-width: 200px;
}
.cookie-banner a {
  color: #F59E0B;
  text-decoration: underline;
}
.cookie-banner a:hover {
  color: #D97706;
}
.cookie-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* ===== FOCUS STATES ===== */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid #F59E0B;
  outline-offset: 2px;
}

/* ===== H2 OVERRIDE ===== */
h2 {
  color: #0F172A;
}
.bg-dark h2,
.section-full.bg-dark h2,
.section-full.bg-dark-alt h2 {
  color: #FFFFFF;
}
h2::after {
  background: #F59E0B;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-grid,
  .steps-grid,
  .pricing-grid,
  .addons-grid,
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .advisor-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-detail,
  .about-grid,
  .contact-grid,
  .blog-featured {
    grid-template-columns: 1fr;
  }
  .product-detail.reverse {
    direction: ltr;
  }
  .blog-featured-content {
    padding: 1.5rem;
  }
}
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }
  .page-hero h1 {
    font-size: 2rem;
  }
  .section-title {
    font-size: 1.75rem;
  }
  .features-grid,
  .steps-grid,
  .pricing-grid,
  .addons-grid,
  .values-grid,
  .team-grid,
  .advisor-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .pricing-card.featured {
    transform: scale(1);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-form input {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.875rem;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }
}
/* Fix 1: Article page max-width */
.article-layout, .article-container, .article-content, .blog-article, .post-content { max-width: 800px; margin: 0 auto; padding: 40px 20px 60px; }

/* Fix 2: Article text color */
.article-body p, .article-content p, .post-content p, .blog-article p { color: #444; font-size: 16px; line-height: 1.8; margin-bottom: 20px; }
.article-body h2, .article-content h2, .post-content h2 { color: #222; font-size: 24px; margin-top: 36px; margin-bottom: 16px; }
.article-body h3, .article-content h3, .post-content h3 { color: #333; font-size: 20px; margin-top: 28px; margin-bottom: 12px; }
.article-body ul, .article-body ol, .article-content ul, .article-content ol { color: #444; margin-bottom: 20px; padding-left: 24px; }
.article-body li, .article-content li { margin-bottom: 8px; line-height: 1.7; }

/* Fix footer nav circles */
footer ul li a, footer ul li a:hover {
    background-color: transparent !important;
    width: auto !important;
    height: auto !important;
    border-radius: 0 !important;
    display: inline !important;
}
footer ul { float: none !important; position: static !important; }
footer ul li { float: none !important; display: block !important; margin: 8px 0 !important; }

/* ===== CEO FEATURED CARD ===== */
.ceo-featured-card {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 40px;
  max-width: 760px;
  margin: 0 auto;
}
.ceo-featured-info .ceo-featured-name {
  font-family: 'Inter', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 4px;
}
.ceo-featured-info .ceo-featured-title {
  font-size: 1rem;
  font-weight: 600;
  color: #F59E0B;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.ceo-featured-info .ceo-featured-bio p {
  color: #475569;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}
.ceo-featured-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.ceo-featured-meta span {
  color: #94A3B8;
  font-size: 14px;
}
.ceo-featured-meta span i {
  margin-right: 6px;
  color: #F59E0B;
}

/* ===== TEAM CARD ZONES ===== */
.team-avatar-zone {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.team-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.team-name-zone {
  padding: 16px 20px 4px;
  font-family: 'Inter', sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: #1A1A2E;
  height: 48px;
  overflow: hidden;
}
.team-title-zone {
  padding: 0 20px 12px;
  font-size: 0.875rem;
  color: #64748B;
  height: 40px;
  overflow: hidden;
}
.team-footer-zone {
  padding: 0 20px 20px;
  margin-top: auto;
}
