/* Avitar - Custom Styles */

/* CSS Variables */
:root {
  --primary: #3a5da5;
  --primary-dark: #24417C;
  --primary-muted: #355575;
  --dark-navy: #102136;
  --light-gray: #E7EBEE;
  --lighter-gray: #F3F5F7;
  --off-white: #F7FAFD;
  --peach: #FFE8DA;
  --white: #FFFFFF;
}

/* Base */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--dark-navy);
  background: var(--white);
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

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

/* Header / Navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: white;
  border-bottom: 1px solid #e8edf4;
  box-shadow: 0 2px 12px rgba(16, 33, 54, 0.06);
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(16, 33, 54, 0.12);
}

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

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-mark {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-mark svg {
  width: 24px;
  height: 24px;
  fill: white;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--dark-navy);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}

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

.nav-cta {
  background: var(--primary);
  color: white !important;
  padding: 0.6rem 1.25rem;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: var(--primary-dark) !important;
  color: white !important;
}

.nav-login {
  color: var(--primary) !important;
  font-size: 0.9rem !important;
  border: 1.5px solid var(--primary) !important;
  padding: 0.45rem 1.1rem !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
  transition: background 0.2s, color 0.2s !important;
}

.nav-login:hover {
  background: var(--primary) !important;
  color: white !important;
}

/* Mobile Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark-navy);
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--dark-navy);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

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

.mobile-menu a {
  color: white;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 600;
  transition: color 0.2s;
}

.mobile-menu a:hover {
  color: var(--primary);
}

.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  color: white;
  font-size: 1.75rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--dark-navy) 0%, var(--primary-dark) 50%, var(--primary) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 2rem 4rem;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  font-size: clamp(2rem, 3.5vw + 1rem, 3.5rem);
  color: white;
  margin: 0 0 1.25rem;
  line-height: 1.15;
}

.hero-text h1 span {
  color: #7eb3ff;
}

.hero-text p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  margin: 0 0 2rem;
  max-width: 480px;
}

.hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,0.9);
  font-size: 0.85rem;
  font-weight: 500;
}

.hero-trust::before {
  content: '✓';
  background: #4ade80;
  color: white;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--primary);
  color: white;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

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

.btn-outline {
  background: transparent;
  color: white;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-outline:hover {
  border-color: white;
  background: rgba(255,255,255,0.1);
  color: white;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-dashboard {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 1.5rem;
  width: 100%;
  max-width: 460px;
}

.dashboard-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.dashboard-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dashboard-title {
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  font-weight: 600;
  margin-left: 0.25rem;
}

.dashboard-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.dashboard-stat {
  background: rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 0.875rem 0.75rem;
  text-align: center;
}

.dashboard-stat-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  display: block;
}

.dashboard-stat-label {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.6);
  display: block;
  margin-top: 0.2rem;
}

.dashboard-progress-item {
  margin-bottom: 0.75rem;
}

.dashboard-progress-label {
  display: flex;
  justify-content: space-between;
  color: rgba(255,255,255,0.8);
  font-size: 0.8rem;
  margin-bottom: 0.35rem;
}

.dashboard-progress-bar {
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  overflow: hidden;
}

.dashboard-progress-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, #7eb3ff, var(--primary));
  transition: width 1.5s ease;
}

.dashboard-checklist {
  margin-top: 1rem;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0;
  color: rgba(255,255,255,0.8);
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

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

.check-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
}

.check-done {
  background: #4ade80;
  color: white;
}

.check-pending {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.5);
}

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

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--peach);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.35rem 0.875rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.75rem, 2.5vw + 0.5rem, 2.75rem);
  color: var(--dark-navy);
  margin: 0 0 1rem;
}

.section-title.light {
  color: white;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--primary-muted);
  max-width: 600px;
  line-height: 1.7;
}

.section-subtitle.light {
  color: rgba(255,255,255,0.75);
}

/* Challenge Section */
.challenge-section {
  background: var(--off-white);
}

.challenge-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

.challenge-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.challenge-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid var(--light-gray);
  transition: box-shadow 0.2s, transform 0.2s;
}

.challenge-card:hover {
  box-shadow: 0 8px 30px rgba(58, 93, 165, 0.12);
  transform: translateY(-2px);
}

.challenge-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--peach);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.875rem;
  font-size: 1.2rem;
}

.challenge-card h4 {
  font-size: 0.9rem;
  color: var(--dark-navy);
  margin: 0 0 0.35rem;
  font-weight: 600;
}

.challenge-card p {
  font-size: 0.82rem;
  color: var(--primary-muted);
  margin: 0;
  line-height: 1.5;
}

.challenge-quote {
  background: var(--dark-navy);
  color: white;
  border-radius: 12px;
  padding: 2rem;
  font-size: 1.05rem;
  line-height: 1.7;
  font-style: italic;
  position: relative;
}

.challenge-quote::before {
  content: '"';
  font-size: 5rem;
  color: var(--primary);
  position: absolute;
  top: -1rem;
  left: 1.5rem;
  line-height: 1;
  font-style: normal;
}

/* Solution Section */
.solution-section {
  background: linear-gradient(135deg, var(--dark-navy) 0%, var(--primary-dark) 100%);
}

.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

.solution-benefits {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.solution-benefit {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
}

.benefit-text h4 {
  color: white;
  font-size: 1rem;
  margin: 0 0 0.3rem;
}

.benefit-text p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.55;
}

/* Features Section */
.features-section {
  background: white;
}

.features-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

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

.feature-card {
  background: var(--off-white);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  border: 1px solid var(--light-gray);
  transition: background 0.25s, color 0.25s, box-shadow 0.25s, transform 0.25s;
  cursor: default;
}

.feature-card:hover {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 12px 40px rgba(58, 93, 165, 0.3);
  transform: translateY(-4px);
}

.feature-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  transition: background 0.25s;
}

.feature-card:hover .feature-card-icon {
  background: rgba(255,255,255,0.2);
}

.feature-card h3 {
  font-size: 1.05rem;
  color: var(--dark-navy);
  margin: 0 0 0.6rem;
  transition: color 0.25s;
}

.feature-card:hover h3 {
  color: white;
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--primary-muted);
  margin: 0;
  line-height: 1.6;
  transition: color 0.25s;
}

.feature-card:hover p {
  color: rgba(255,255,255,0.8);
}

/* Stats Section */
.stats-section {
  background: var(--lighter-gray);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 2.5rem 1.5rem;
  background: white;
  border-radius: 16px;
  border: 1px solid var(--light-gray);
  transition: box-shadow 0.2s, transform 0.2s;
}

.stat-item:hover {
  box-shadow: 0 8px 30px rgba(58, 93, 165, 0.12);
  transform: translateY(-2px);
}

.stat-number {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--primary);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark-navy);
  display: block;
  margin-bottom: 0.4rem;
}

.stat-desc {
  font-size: 0.85rem;
  color: var(--primary-muted);
}

/* Testimonials */
.testimonials-section {
  background: var(--off-white);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 3rem;
}

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

.testimonial-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--light-gray);
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  box-shadow: 0 12px 40px rgba(58, 93, 165, 0.1);
  transform: translateY(-3px);
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--primary-muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: white;
  flex-shrink: 0;
}

.avatar-blue { background: var(--primary); }
.avatar-dark { background: var(--dark-navy); }
.avatar-teal { background: #0d9488; }

.testimonial-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark-navy);
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--primary-muted);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark-navy) 100%);
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
}

.cta-section::after {
  content: '';
  position: absolute;
  right: 50px;
  top: -50px;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}

.cta-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: clamp(1.75rem, 2.5vw + 0.5rem, 2.5rem);
  color: white;
  margin: 0 0 1rem;
}

.cta-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  margin: 0;
  max-width: 520px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  flex-direction: column;
  align-items: center;
  min-width: 200px;
}

.btn-white {
  background: white;
  color: var(--primary);
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-block;
  text-align: center;
  width: 100%;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  color: var(--primary-dark);
}

.cta-phone {
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  text-align: center;
}

.cta-phone a {
  color: white;
  font-weight: 600;
  text-decoration: none;
}

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

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 1rem 0 1.5rem;
  max-width: 300px;
  color: rgba(255,255,255,0.65);
}

.footer-logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-logo-mark {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-col h4 {
  color: white;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0 0 1.25rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: white;
}

.footer-contact-item {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.875rem;
}

.footer-contact-item .icon {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact-item a:hover {
  color: white;
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}

.footer-bottom a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}

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

/* About Page Specific */
.page-hero {
  min-height: 420px;
  background: linear-gradient(135deg, var(--dark-navy) 0%, var(--primary-dark) 100%);
  display: flex;
  align-items: center;
  padding: 8rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(2rem, 3vw + 1rem, 3.25rem);
  color: white;
  margin: 0 0 1rem;
}

.page-hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  margin: 0;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Vision/Mission Cards */
.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.vision-card {
  border-radius: 16px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.vision-card.card-blue {
  background: var(--primary);
  color: white;
}

.vision-card.card-light {
  background: var(--off-white);
  border: 1px solid var(--light-gray);
}

.vision-card.card-dark {
  background: var(--dark-navy);
  color: white;
}

.vision-card-icon {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
  display: block;
}

.vision-card h3 {
  font-size: 1.25rem;
  margin: 0 0 0.875rem;
}

.vision-card.card-blue h3,
.vision-card.card-dark h3 {
  color: white;
}

.vision-card.card-light h3 {
  color: var(--dark-navy);
}

.vision-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.vision-card.card-blue p,
.vision-card.card-dark p {
  color: rgba(255,255,255,0.8);
}

.vision-card.card-light p {
  color: var(--primary-muted);
}

.vision-card-wide {
  grid-column: 1 / -1;
}

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

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

.contact-info-card {
  background: var(--off-white);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid var(--light-gray);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: box-shadow 0.2s;
}

.contact-info-card:hover {
  box-shadow: 0 4px 20px rgba(58, 93, 165, 0.1);
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: white;
  flex-shrink: 0;
}

.contact-info-details h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
  font-weight: 700;
  margin: 0 0 0.4rem;
}

.contact-info-details p,
.contact-info-details a {
  font-size: 0.95rem;
  color: var(--primary-muted);
  margin: 0;
  text-decoration: none;
  line-height: 1.6;
}

.contact-info-details a:hover {
  color: var(--primary);
}

/* Contact Form */
.contact-form-panel {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid var(--light-gray);
  box-shadow: 0 4px 20px rgba(16, 33, 54, 0.06);
}

.contact-form-panel h2 {
  font-size: 1.5rem;
  margin: 0 0 0.5rem;
}

.contact-form-panel > p {
  color: var(--primary-muted);
  font-size: 0.95rem;
  margin: 0 0 2rem;
}

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

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-navy);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--dark-navy);
  background: var(--off-white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(58, 93, 165, 0.1);
  background: white;
}

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

.form-submit {
  width: 100%;
  background: var(--primary);
  color: white;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  font-family: inherit;
}

.form-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.form-success {
  display: none;
  background: #dcfce7;
  border: 1px solid #86efac;
  border-radius: 8px;
  padding: 1rem 1.25rem;
  color: #166534;
  font-size: 0.9rem;
  margin-top: 1rem;
  align-items: center;
  gap: 0.5rem;
}

.form-success.show {
  display: flex;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text p { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-visual { display: none; }

  .challenge-grid,
  .solution-grid,
  .vision-grid {
    grid-template-columns: 1fr;
  }

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

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

  .cta-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-content p { margin: 0 auto; }

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

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

  .hero {
    padding: 5rem 1.5rem 3rem;
  }

  .section {
    padding: 3.5rem 1.5rem;
  }

  .challenge-cards {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

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

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

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

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-up {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }

/* Utility */
.text-center { text-align: center; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
