/* ============================================
   Veritas AI Solutions - Main Stylesheet
   Truth in Technology. Excellence in Education.
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Primary */
  --navy: #1B3A5C;
  --navy-dark: #142d47;
  --blue: #2E75B6;
  --blue-light: #3a85c9;

  /* Accent */
  --gold: #CC8800;
  --gold-light: #e6a31e;
  --gold-dark: #a66e00;

  /* Neutrals */
  --white: #FFFFFF;
  --off-white: #F5F7FA;
  --light-gray: #E8ECF1;
  --medium-gray: #666666;
  --dark-gray: #333333;
  --black: #111111;

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-accent: 'Georgia', 'Times New Roman', serif;

  /* Spacing */
  --section-padding: 5rem 0;
  --container-max: 1200px;
  --container-padding: 0 1.5rem;

  /* Transitions */
  --transition: all 0.3s ease;
}

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

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

body {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--dark-gray);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

ul, ol {
  list-style: none;
}

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

h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
  color: var(--dark-gray);
}

.text-accent {
  font-family: var(--font-accent);
  font-style: italic;
}

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

.text-navy {
  color: var(--navy);
}

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

/* ---------- Layout ---------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-padding);
}

.section {
  padding: var(--section-padding);
}

.section-light {
  background-color: var(--off-white);
}

.section-navy {
  background-color: var(--navy);
  color: var(--white);
}

.section-navy h2,
.section-navy h3,
.section-navy h4 {
  color: var(--white);
}

.section-navy p {
  color: rgba(255, 255, 255, 0.9);
}

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

.section-header p {
  font-size: 1.125rem;
  color: var(--medium-gray);
  margin-top: 1rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  border-radius: 6px;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  gap: 0.5rem;
}

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

.btn-primary:hover {
  background-color: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(204, 136, 0, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-secondary:hover {
  background-color: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-white {
  background-color: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn-white:hover {
  background-color: var(--off-white);
  border-color: var(--off-white);
  color: var(--navy);
  transform: translateY(-1px);
}

.btn-outline-white {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline-white:hover {
  background-color: var(--white);
  color: var(--navy);
  transform: translateY(-1px);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.btn-group.centered {
  justify-content: center;
}

/* ---------- Header / Navigation ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--light-gray);
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--navy);
  font-weight: 700;
  font-size: 1.25rem;
}

.logo svg {
  width: 40px;
  height: 40px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text .company-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
}

.logo-text .tagline {
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--medium-gray);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

.nav-desktop a {
  color: var(--dark-gray);
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  padding: 0.5rem 0;
  position: relative;
}

.nav-desktop a:hover {
  color: var(--navy);
}

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

.nav-desktop a:hover::after {
  width: 100%;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-dropdown > a::after {
  display: none;
}

.dropdown-arrow {
  width: 12px;
  height: 12px;
  transition: var(--transition);
}

.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  margin-top: 0.5rem;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}

.dropdown-menu a {
  display: block;
  padding: 0.625rem 1rem;
  border-radius: 6px;
  font-size: 0.875rem;
}

.dropdown-menu a::after {
  display: none;
}

.dropdown-menu a:hover {
  background-color: var(--off-white);
  color: var(--navy);
}

.nav-cta {
  margin-left: 0.5rem;
}

.nav-cta .btn {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

/* Mobile Menu */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--navy);
  margin: 5px 0;
  transition: var(--transition);
}

.nav-mobile {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  padding: 2rem 1.5rem;
  overflow-y: auto;
}

.nav-mobile.active {
  display: block;
}

.nav-mobile a {
  display: block;
  padding: 0.875rem 0;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--dark-gray);
  border-bottom: 1px solid var(--light-gray);
}

.nav-mobile a:hover {
  color: var(--navy);
}

.nav-mobile .mobile-dropdown-items {
  padding-left: 1.5rem;
}

.nav-mobile .mobile-dropdown-items a {
  font-size: 1rem;
  font-weight: 400;
}

.nav-mobile .btn {
  width: 100%;
  margin-top: 1.5rem;
}

/* ---------- Hero Section ---------- */
.hero {
  padding: 10rem 0 6rem;
  background: linear-gradient(135deg, var(--navy) 0%, #1e4a73 50%, var(--blue) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 70%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(46, 117, 182, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: var(--white);
  max-width: 800px;
  margin-bottom: 1.5rem;
}

.hero .subtitle {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ---------- Trust Bar ---------- */
.trust-bar {
  background-color: var(--white);
  border-bottom: 1px solid var(--light-gray);
  padding: 1.5rem 0;
}

.trust-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--navy);
}

.trust-item svg {
  width: 24px;
  height: 24px;
  color: var(--gold);
  flex-shrink: 0;
}

.trust-divider {
  width: 1px;
  height: 24px;
  background-color: var(--light-gray);
}

/* ---------- Challenge Section ---------- */
.challenge {
  padding: var(--section-padding);
}

.challenge-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.challenge-content p {
  font-size: 1.125rem;
  color: var(--medium-gray);
  line-height: 1.8;
}

.challenge-content .highlight {
  display: block;
  margin-top: 1.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  font-family: var(--font-accent);
  font-style: italic;
}

/* ---------- Pillars / Solution Section ---------- */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.pillar-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid var(--light-gray);
  transition: var(--transition);
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(27, 58, 92, 0.1);
  border-color: transparent;
}

.pillar-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pillar-icon svg {
  width: 32px;
  height: 32px;
  color: var(--white);
}

.pillar-card h3 {
  margin-bottom: 1rem;
}

.pillar-card p {
  color: var(--medium-gray);
  font-size: 0.9375rem;
}

.pillar-card .pillar-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 1.25rem;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--gold);
}

.pillar-card .pillar-link:hover {
  color: var(--gold-dark);
  gap: 0.625rem;
}

/* ---------- Services Overview ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  padding: 2.5rem 2rem;
  border-radius: 12px;
  transition: var(--transition);
}

.service-card .label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.service-card h3 {
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--medium-gray);
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
}

.service-card .service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--blue);
}

.service-card .service-link:hover {
  color: var(--navy);
  gap: 0.625rem;
}

/* ---------- Credibility Section ---------- */
.cred-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.cred-card {
  text-align: center;
  padding: 2rem 1.5rem;
}

.cred-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.cred-label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.375rem;
}

.cred-desc {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ---------- CTA Section ---------- */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  padding: 5rem 0;
  text-align: center;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* ---------- Footer ---------- */
.footer {
  background-color: var(--navy-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 0 2rem;
}

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

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-brand .logo svg {
  width: 36px;
  height: 36px;
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.footer h4 {
  color: var(--white);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.footer-links a {
  display: block;
  padding: 0.25rem 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

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

.footer-contact p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.25rem;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.6);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.4);
}

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

/* ---------- Newsletter Signup ---------- */
.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.625rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-family: var(--font-primary);
  font-size: 0.875rem;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-form button {
  padding: 0.625rem 1rem;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background: var(--gold-dark);
}

/* ---------- Page-Specific: Inner Page Hero ---------- */
.page-hero {
  padding: 9rem 0 4rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: var(--white);
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  max-width: 640px;
}

/* ---------- About Page ---------- */
.story-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(27, 58, 92, 0.15);
}

.story-image img {
  width: 100%;
  height: auto;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.value-card {
  text-align: center;
  padding: 2rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--light-gray);
  transition: var(--transition);
}

.value-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.value-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  color: var(--gold);
}

.value-card h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.8125rem;
  color: var(--medium-gray);
}

.founder-section {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 3rem;
}

.founder-photo {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(27, 58, 92, 0.1);
}

.founder-photo img {
  width: 100%;
  height: auto;
}

.founder-info h3 {
  margin-bottom: 0.25rem;
}

.founder-title {
  color: var(--gold);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

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

.eco-card {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--light-gray);
}

.eco-card h4 {
  margin-bottom: 0.5rem;
}

.eco-card p {
  font-size: 0.875rem;
  color: var(--medium-gray);
}

/* ---------- Consulting Page ---------- */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.approach-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--light-gray);
}

.approach-item svg {
  width: 24px;
  height: 24px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.approach-item h4 {
  font-size: 1rem;
  margin-bottom: 0.375rem;
}

.approach-item p {
  font-size: 0.875rem;
  color: var(--medium-gray);
  margin-bottom: 0;
}

.consulting-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.consulting-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid var(--light-gray);
  transition: var(--transition);
}

.consulting-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(27, 58, 92, 0.08);
}

.consulting-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.consulting-card p {
  font-size: 0.9375rem;
  color: var(--medium-gray);
  margin-bottom: 1.25rem;
}

.consulting-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}

/* ---------- TGA Page ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--light-gray);
}

.feature-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  color: var(--white);
}

.feature-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.9375rem;
  color: var(--medium-gray);
  margin-bottom: 0;
}

.subjects-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.subject-card {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--light-gray);
}

.subject-card h4 {
  font-size: 0.9375rem;
  margin-bottom: 0.375rem;
}

.subject-card p {
  font-size: 0.8125rem;
  color: var(--medium-gray);
  margin-bottom: 0;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.pricing-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  border: 1px solid var(--light-gray);
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.pricing-card.featured {
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(204, 136, 0, 0.15);
  transform: scale(1.03);
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  padding: 0.25rem 1rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.pricing-card .price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.pricing-card .price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--medium-gray);
}

.pricing-card .annual {
  font-size: 0.875rem;
  color: var(--gold);
  font-weight: 600;
  margin-top: 0.25rem;
}

.pricing-card .pricing-desc {
  font-size: 0.875rem;
  color: var(--medium-gray);
  margin: 1rem 0 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--light-gray);
}

.pricing-features {
  text-align: left;
  margin-bottom: 2rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0;
  font-size: 0.875rem;
  color: var(--dark-gray);
}

.pricing-features svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ---------- International Page ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.stat-card {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

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

.partner-card {
  padding: 2rem;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--light-gray);
  text-align: center;
}

.partner-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.partner-card p {
  font-size: 0.9375rem;
  color: var(--medium-gray);
  margin-bottom: 0;
}

/* ---------- Contact Page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.contact-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.375rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  font-family: var(--font-primary);
  font-size: 0.9375rem;
  color: var(--dark-gray);
  margin-bottom: 1.25rem;
  transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(46, 117, 182, 0.1);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--off-white);
  border-radius: 10px;
}

.contact-info-card svg {
  width: 24px;
  height: 24px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.contact-info-card h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.contact-info-card p {
  font-size: 0.875rem;
  color: var(--medium-gray);
  margin-bottom: 0;
}

/* ---------- Responsive Design ---------- */

/* Tablet */
@media (max-width: 1024px) {
  .pillars-grid,
  .services-grid,
  .consulting-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .subjects-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .story-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .founder-section {
    grid-template-columns: 200px 1fr;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --section-padding: 3.5rem 0;
  }

  .nav-desktop,
  .nav-cta {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .hero {
    padding: 8rem 0 4rem;
  }

  .trust-bar-inner {
    flex-direction: column;
    gap: 0.75rem;
  }

  .trust-divider {
    display: none;
  }

  .pillars-grid,
  .services-grid,
  .features-grid,
  .consulting-services-grid,
  .pricing-grid,
  .partnership-grid,
  .ecosystem-visual {
    grid-template-columns: 1fr;
  }

  .cred-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

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

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

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

  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .btn-group {
    flex-direction: column;
  }

  .btn-group .btn {
    width: 100%;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .founder-section {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .founder-photo {
    max-width: 200px;
    margin: 0 auto;
  }

  .approach-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured::before {
    top: -10px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero {
    padding: 7rem 0 3rem;
  }

  .cred-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .subjects-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }
}
