/* ===================================================
   AID Virtual — Global Stylesheet
   =================================================== */

/* ===== Google Fonts Import ===== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* ===== CSS Variables ===== */
:root {
  --primary:        #0A7A8F;
  --primary-dark:   #075F70;
  --primary-light:  #E0F5F8;
  --primary-mid:    #B2E8EF;
  --navy:           #1B3A6B;
  --navy-dark:      #0D2445;
  --accent:         #00BFA5;
  --cta:            #FF6B35;
  --cta-dark:       #E55A25;
  --purple:         #7C3AED;
  --purple-dark:    #6025C5;
  --purple-light:   #EDE9FE;
  --text:           #1A202C;
  --text-light:     #4A5568;
  --text-lighter:   #718096;
  --white:          #FFFFFF;
  --bg:             #F8FAFC;
  --bg-alt:         #EFF6F8;
  --border:         #CBD5E0;
  --border-light:   #E2E8F0;
  --shadow:         0 4px 20px rgba(10, 122, 143, 0.10);
  --shadow-lg:      0 10px 40px rgba(10, 122, 143, 0.15);
  --shadow-card:    0 2px 12px rgba(0, 0, 0, 0.07);
  --radius:         12px;
  --radius-lg:      20px;
  --radius-xl:      32px;
  --radius-full:    9999px;
  --transition:     all 0.3s ease;
  --max-width:      1200px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.3;
  color: var(--text);
}

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

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

ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--cta);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(255, 107, 53, 0.35);
}
.btn-primary:hover {
  background: var(--cta-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.45);
}

.btn-secondary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(10, 122, 143, 0.25);
}
.btn-secondary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10, 122, 143, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.6);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline-dark:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.05rem;
}

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

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(10, 122, 143, 0.10);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--primary);
}

.nav-logo .logo-mark {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--primary), var(--navy));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -1px;
}

.nav-logo .logo-text span {
  color: var(--cta);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-light);
  transition: var(--transition);
}

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: var(--transition);
}
.hamburger:hover { background: var(--bg-alt); }

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

.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 */
.mobile-menu {
  display: none;
  position: fixed;
  top: 116px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  padding: 16px 24px 24px;
  z-index: 999;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

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

.mobile-menu a {
  display: block;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
  margin-bottom: 4px;
}
.mobile-menu a:hover { background: var(--primary-light); color: var(--primary); }
.mobile-menu .mobile-cta {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mobile-menu .btn { width: 100%; justify-content: center; }

/* ===== Hero ===== */
.hero {
  padding-top: 116px;
  position: relative;
  overflow: hidden;
}

.hero-gradient {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 40%, var(--primary) 100%);
}

/* ===== Section Styles ===== */
.section {
  padding: 96px 0;
}

.section-alt {
  background: var(--bg);
}

.section-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
}

.section-navy {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
}

.section-primary .section-header h2,
.section-navy .section-header h2 {
  color: var(--white);
}

.section-primary .section-header p,
.section-navy .section-header p {
  color: rgba(255,255,255,0.8);
}

.eyebrow {
  display: inline-block;
  padding: 6px 16px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.eyebrow-white {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}

.eyebrow-accent {
  background: rgba(0, 191, 165, 0.15);
  color: var(--accent);
}

/* ===== Cards ===== */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-mid);
}

.card-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.card-icon.cta-icon {
  background: rgba(255, 107, 53, 0.12);
}

.card-icon.accent-icon {
  background: rgba(0, 191, 165, 0.12);
}

/* ===== Grid Layouts ===== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }

/* ===== Stats Strip ===== */
.stats-strip {
  background: var(--primary);
  padding: 56px 0;
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  padding: 16px;
}

.stat-item .stat-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item .stat-number span {
  color: var(--accent);
}

.stat-item .stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

/* ===== Badge / Tag ===== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
}

.badge-teal {
  background: var(--primary-light);
  color: var(--primary-dark);
}

.badge-accent {
  background: rgba(0, 191, 165, 0.12);
  color: #007A6A;
}

.badge-cta {
  background: rgba(255, 107, 53, 0.12);
  color: var(--cta-dark);
}

/* ===== Feature List ===== */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-light);
}

.feature-item .check {
  width: 22px;
  height: 22px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--primary);
  font-size: 0.7rem;
}

.check-accent .check {
  background: rgba(0, 191, 165, 0.12);
  color: var(--accent);
}

/* ===== Process Steps ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  counter-reset: steps;
}

.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
  position: relative;
  transition: var(--transition);
}

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

.step-number {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--navy));
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 20px;
}

/* ===== Testimonials ===== */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 5rem;
  color: var(--primary-light);
  position: absolute;
  top: 8px;
  left: 24px;
  line-height: 1;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 20px;
  padding-top: 24px;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  flex-shrink: 0;
}

.author-info .name {
  font-weight: 600;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
}

.author-info .role {
  font-size: 0.8rem;
  color: var(--text-lighter);
}

/* ===== FAQ ===== */
.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 12px;
  transition: var(--transition);
}

.faq-item.open {
  border-color: var(--primary-mid);
  box-shadow: 0 2px 12px rgba(10, 122, 143, 0.08);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: var(--white);
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  transition: var(--transition);
}

.faq-question:hover { background: var(--bg); }
.faq-item.open .faq-question { color: var(--primary); background: var(--primary-light); }

.faq-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  background: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
  color: var(--text-light);
}

.faq-item.open .faq-icon {
  background: var(--primary);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer.open {
  max-height: 500px;
  padding: 0 24px 24px;
}

.faq-answer p {
  color: var(--text-light);
  line-height: 1.8;
  padding-top: 4px;
}

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

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--text);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  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(10, 122, 143, 0.12);
}

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

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

/* ===== Footer ===== */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.85);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand .logo .logo-mark {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  color: white;
  letter-spacing: -1px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
  margin-bottom: 24px;
}

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

.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
}

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

.footer-col ul a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
}

.footer-contact-item .icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
}

.footer-bottom a {
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}
.footer-bottom a:hover { color: var(--accent); }

/* ===== Utility ===== */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.text-cta { color: var(--cta); }
.text-white { color: var(--white); }
.text-muted { color: var(--text-lighter); }

.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }
.wrap { flex-wrap: wrap; }

.divider {
  height: 1px;
  background: var(--border-light);
  margin: 48px 0;
}

/* ===== Page Hero (inner pages) ===== */
.page-hero {
  padding: 116px 0 80px;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--primary) 100%);
  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.025'%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 .container { position: relative; }

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  line-height: 1.8;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.85rem;
}

.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { color: rgba(255,255,255,0.35); }
.breadcrumb .current { color: rgba(255,255,255,0.85); }

/* ===== Scroll Animation ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

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

/* ===== Split Layout (text + visual) ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split.reverse .split-visual { order: -1; }

.split-visual {
  position: relative;
}

.visual-card {
  background: linear-gradient(135deg, var(--primary), var(--navy));
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.visual-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}

.visual-card::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -30px;
  width: 240px;
  height: 240px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}

/* ===== Tags Strip ===== */
.tags-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.tag {
  padding: 7px 16px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-light);
  transition: var(--transition);
}

.tag:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}

/* ===== CTA Banner ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--navy) 100%);
  border-radius: var(--radius-xl);
  padding: 64px 56px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -60px;
  width: 280px;
  height: 280px;
  background: rgba(0, 191, 165, 0.08);
  border-radius: 50%;
}

.cta-banner .container { position: relative; }
.cta-banner h2 { color: var(--white); margin-bottom: 16px; font-size: clamp(1.6rem, 3vw, 2.4rem); }
.cta-banner p { color: rgba(255,255,255,0.8); margin-bottom: 36px; font-size: 1.05rem; }

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

/* ===== Alert / Notice ===== */
.notice {
  padding: 16px 20px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.notice-info {
  background: var(--primary-light);
  border-left: 3px solid var(--primary);
  color: var(--primary-dark);
}

.notice-success {
  background: rgba(0, 191, 165, 0.1);
  border-left: 3px solid var(--accent);
  color: #006655;
}

/* ===== Pricing Card ===== */
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1.5px solid var(--border-light);
  transition: var(--transition);
  position: relative;
}

.pricing-card:hover, .pricing-card.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.pricing-card.featured {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--white) 100%);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cta);
  color: var(--white);
  padding: 4px 16px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* Purple utility classes */
.text-purple { color: var(--purple); }
.btn-purple {
  background: var(--purple);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(124, 58, 237, 0.30);
}
.btn-purple:hover {
  background: var(--purple-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.40);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .section-header { margin-bottom: 48px; }

  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse .split-visual { order: 0; }

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

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

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .cta-banner { padding: 48px 28px; }

  .page-hero { padding: 120px 0 64px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .cta-banner { padding: 40px 20px; }
  .btn-lg { padding: 16px 28px; font-size: 0.95rem; }
}

/* ===== Services Strip ===== */
.services-strip {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
}

.sstrip-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
}

.sstrip-item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 24px;
  height: 44px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: var(--transition);
  color: var(--text-light);
}

.sstrip-item i {
  font-size: 0.85rem;
}

.sstrip-sep {
  width: 1px;
  height: 18px;
  background: var(--border-light);
  flex-shrink: 0;
}

.sstrip-orange { color: #C24A0C; }
.sstrip-orange:hover { background: rgba(255,107,53,0.07); color: #C24A0C; }

.sstrip-teal { color: #007A6A; }
.sstrip-teal:hover { background: rgba(0,191,165,0.07); color: #007A6A; }

.sstrip-purple { color: var(--purple-dark); }
.sstrip-purple:hover { background: var(--purple-light); color: var(--purple-dark); }

/* Social link icon sizing */
.social-link i { font-size: 1rem; }
.footer-contact-item .icon i { font-size: 0.95rem; }

/* AID acronym */
.aid-acronym {
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.6);
  margin-top: -8px;
  margin-bottom: 24px !important;
  text-transform: uppercase;
}
.aid-acronym strong {
  color: var(--accent);
  font-weight: 700;
}

/* ===== Responsive: Services Strip ===== */
@media (max-width: 600px) {
  .sstrip-item span { display: none; }
  .sstrip-item i { font-size: 1rem; }
  .sstrip-item { padding: 0 18px; }
}

/* ===== Web Design: 4-column pricing grid ===== */
.pricing-4-grid {
  grid-template-columns: repeat(4, 1fr) !important;
}
@media (max-width: 1100px) {
  .pricing-4-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 600px) {
  .pricing-4-grid { grid-template-columns: 1fr !important; }
}

/* ===== Web Design: maintenance 2-col grid ===== */
@media (max-width: 600px) {
  .maintenance-grid { grid-template-columns: 1fr !important; }
}
