/*!
 * Soar Solutions Inc. — Main Stylesheet
 * Ocean Breeze Palette: #0077B6 · #00B4D8 · #90E0EF · #CAF0F8
 * Mobile-first, WCAG 2.1 AA compliant
 */

/* ============================================================
   1. CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Brand Colors */
  --color-primary:      #0077B6;
  --color-secondary:    #00B4D8;
  --color-light:        #90E0EF;
  --color-lightest:     #CAF0F8;
  --color-dark:         #023E6E;
  --color-darker:       #012A4A;

  /* Neutral Colors */
  --color-text:         #1e2d3d;
  --color-text-muted:   #5a6a78;
  --color-text-light:   #8899a6;
  --color-white:        #ffffff;
  --color-off-white:    #f4f9fc;
  --color-border:       #d9eef7;
  --color-bg-section:   #f0f8fd;

  /* Functional */
  --color-success:      #2ecc71;
  --color-error:        #e74c3c;
  --color-warning:      #f39c12;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', 'Helvetica Neue', Arial, sans-serif;

  /* Spacing */
  --space-xs:   0.25rem;
  --space-sm:   0.5rem;
  --space-md:   1rem;
  --space-lg:   1.5rem;
  --space-xl:   2rem;
  --space-2xl:  3rem;
  --space-3xl:  4rem;
  --space-4xl:  6rem;

  /* Shadows */
  --shadow-xs:  0 1px 3px rgba(0,119,182,0.08);
  --shadow-sm:  0 2px 8px rgba(0,119,182,0.12);
  --shadow-md:  0 4px 16px rgba(0,119,182,0.16);
  --shadow-lg:  0 8px 32px rgba(0,119,182,0.20);
  --shadow-xl:  0 16px 48px rgba(0,119,182,0.24);

  /* Border Radius */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast:   0.15s ease;
  --transition-base:   0.3s ease;
  --transition-slow:   0.5s ease;

  /* Layout */
  --container-max:     1200px;
  --container-pad:     1rem;
  --nav-height:        72px;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-white);
  overflow-x: hidden;
}

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

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

a:hover,
a:focus {
  color: var(--color-secondary);
}

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

table {
  border-collapse: collapse;
  width: 100%;
}

/* ============================================================
   3. SKIP TO CONTENT (Accessibility)
   ============================================================ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  padding: 0.75rem 1.5rem;
  background: var(--color-primary);
  color: var(--color-white);
  font-weight: 600;
  font-size: 0.875rem;
  z-index: 10000;
  border-radius: 0 0 var(--radius-md) 0;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: 0;
  outline: 3px solid var(--color-lightest);
  outline-offset: 2px;
}

/* ============================================================
   4. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-darker);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2.5vw, 1.375rem); }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

p:last-child { margin-bottom: 0; }

.text-primary  { color: var(--color-primary) !important; }
.text-secondary { color: var(--color-secondary) !important; }
.text-white    { color: var(--color-white) !important; }
.text-muted    { color: var(--color-text-muted) !important; }
.text-center   { text-align: center !important; }
.text-left     { text-align: left !important; }
.text-right    { text-align: right !important; }

.lead {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.8;
  color: var(--color-text-muted);
}

strong, b { font-weight: 700; }
em, i { font-style: italic; }

/* ============================================================
   5. LAYOUT & CONTAINER
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

@media (min-width: 640px)  { :root { --container-pad: 1.5rem; } }
@media (min-width: 1024px) { :root { --container-pad: 2rem; } }

.section {
  padding-block: var(--space-3xl);
}

.section--lg {
  padding-block: var(--space-4xl);
}

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

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

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

.section--dark p {
  color: var(--color-light);
}

.grid {
  display: grid;
  gap: var(--space-xl);
}

.grid--2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

@media (min-width: 768px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

/* ============================================================
   6. SECTION HEADERS
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-header__eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: var(--space-sm);
}

.section-header__title {
  margin-bottom: var(--space-md);
}

.section-header__subtitle {
  max-width: 640px;
  margin-inline: auto;
  font-size: 1.0625rem;
  color: var(--color-text-muted);
}

.section-divider {
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  border-radius: var(--radius-full);
  margin: var(--space-md) auto;
}

/* ============================================================
   7. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8125rem 2rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  min-height: 48px;
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn:focus-visible {
  outline: 3px solid var(--color-secondary);
  outline-offset: 3px;
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: var(--color-white);
  border-color: transparent;
  box-shadow: var(--shadow-md);
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--color-dark), var(--color-primary));
  color: var(--color-white);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

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

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

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

.btn--outline-primary:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn--lg {
  padding: 1rem 2.5rem;
  font-size: 1.0625rem;
}

.btn--sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  min-height: 40px;
}

/* ============================================================
   8. NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--transition-base);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: var(--space-xl);
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo__mark {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.site-logo__mark svg {
  width: 22px;
  height: 22px;
  fill: var(--color-white);
}

.site-logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.site-logo__name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-darker);
  letter-spacing: -0.01em;
}

.site-logo__tagline {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-secondary);
}

.site-logo__img {
  height: 56px;
  width: auto;
  display: block;
  object-fit: contain;
}

.site-logo__img--footer {
  height: 72px;
}

/* Desktop Nav */
.site-nav {
  display: none;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav__link {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.875rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  min-height: 44px;
}

.site-nav__link:hover,
.site-nav__link.active {
  color: var(--color-primary);
  background: var(--color-lightest);
}

.site-nav__link:focus-visible {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

.site-nav__cta {
  margin-left: var(--space-sm);
}

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: var(--radius-md);
  transition: background var(--transition-fast);
  flex-shrink: 0;
}

.nav-toggle:hover {
  background: var(--color-bg-section);
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.nav-toggle__bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-white);
  z-index: 999;
  overflow-y: auto;
  padding: var(--space-xl) var(--container-pad);
}

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

.mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  margin-bottom: var(--space-xl);
}

.mobile-menu__link {
  display: flex;
  align-items: center;
  padding: 1rem var(--space-md);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-text);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  min-height: 56px;
  border-bottom: 1px solid var(--color-border);
}

.mobile-menu__link:hover,
.mobile-menu__link.active {
  color: var(--color-primary);
  background: var(--color-lightest);
}

.mobile-menu__cta {
  display: block;
  text-align: center;
}

@media (min-width: 1024px) {
  .site-nav { display: flex; }
  .nav-toggle { display: none; }
  .mobile-menu { display: none !important; }
}

/* ============================================================
   9. HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  background: linear-gradient(155deg, var(--color-darker) 0%, var(--color-dark) 40%, var(--color-primary) 100%);
  overflow: hidden;
}

.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='%2300B4D8' fill-opacity='0.06'%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");
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--color-white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

/* Floating shapes */
.hero__shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  pointer-events: none;
}

.hero__shape--1 {
  width: 500px;
  height: 500px;
  background: var(--color-secondary);
  top: -150px;
  right: -100px;
}

.hero__shape--2 {
  width: 300px;
  height: 300px;
  background: var(--color-light);
  bottom: 100px;
  left: -80px;
}

.hero__shape--3 {
  width: 200px;
  height: 200px;
  background: var(--color-lightest);
  top: 200px;
  right: 15%;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding-block: var(--space-4xl);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  background: rgba(0,180,216,0.2);
  border: 1px solid rgba(0,180,216,0.4);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-light);
  margin-bottom: var(--space-lg);
}

.hero__eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--color-secondary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-white);
  margin-bottom: var(--space-lg);
}

.hero__title-accent {
  background: linear-gradient(90deg, var(--color-light), var(--color-lightest));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  line-height: 1.8;
  color: rgba(202,240,248,0.85);
  margin-bottom: var(--space-2xl);
  max-width: 600px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-3xl);
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
}

.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero__stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-light);
  letter-spacing: 0.05em;
}

/* ============================================================
   10. ABOUT SECTION
   ============================================================ */
.about__grid {
  display: grid;
  gap: var(--space-3xl);
  align-items: center;
}

@media (min-width: 900px) {
  .about__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
  }
}

.about__image-wrap {
  position: relative;
}

.about__image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.about__image-badge {
  position: absolute;
  bottom: -20px;
  right: -12px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
  min-width: 140px;
}

.about__image-badge-number {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.about__image-badge-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about__content {
  padding-block: var(--space-md);
}

.about__mission {
  background: linear-gradient(135deg, var(--color-lightest), rgba(144,224,239,0.3));
  border-left: 4px solid var(--color-primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--space-lg) var(--space-xl);
  margin-block: var(--space-xl);
  font-style: italic;
  font-size: 1.0625rem;
  color: var(--color-text);
  line-height: 1.8;
}

.about__mission cite {
  display: block;
  font-style: normal;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-top: var(--space-sm);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ============================================================
   11. WHY CHOOSE US / FEATURES
   ============================================================ */
.feature-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
  height: 100%;
}

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

.feature-card__icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--color-lightest), var(--color-light));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  flex-shrink: 0;
}

.feature-card__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--color-primary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card__title {
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--color-darker);
  margin-bottom: var(--space-sm);
}

.feature-card__text {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ============================================================
   12. CAREERS / OPPORTUNITIES SECTION
   ============================================================ */
.career-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.career-card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.career-card__body {
  padding: var(--space-xl);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.career-card__badge {
  display: inline-block;
  padding: 0.25rem 0.875rem;
  background: var(--color-lightest);
  color: var(--color-primary);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
}

.career-card__title {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

.career-card__text {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  flex: 1;
  margin-bottom: var(--space-lg);
}

/* ============================================================
   13. VALUES / CULTURE SECTION
   ============================================================ */
.value-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-2xl) var(--space-xl);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(4px);
  transition: all var(--transition-base);
}

.value-item:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-4px);
}

.value-item__number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(144,224,239,0.3);
  margin-bottom: var(--space-sm);
}

.value-item__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-white) !important;
  margin-bottom: var(--space-sm);
}

.value-item__text {
  font-size: 0.9375rem;
  color: var(--color-light) !important;
  margin-bottom: 0;
}

/* ============================================================
   14. TESTIMONIALS SECTION
   ============================================================ */
.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.testimonial-card__quote-mark {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-xl);
  font-family: var(--font-heading);
  font-size: 5rem;
  line-height: 1;
  color: var(--color-lightest);
  font-weight: 700;
  pointer-events: none;
}

.testimonial-card__text {
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.8;
  flex: 1;
  margin-bottom: var(--space-xl);
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-card__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--color-lightest);
  border: 3px solid var(--color-light);
  flex-shrink: 0;
}

.testimonial-card__name {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--color-darker);
}

.testimonial-card__role {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.testimonial-placeholder {
  text-align: center;
  padding: var(--space-3xl);
  background: var(--color-bg-section);
  border-radius: var(--radius-xl);
  border: 2px dashed var(--color-border);
}

.testimonial-placeholder__icon {
  width: 64px;
  height: 64px;
  background: var(--color-lightest);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
}

.testimonial-placeholder__icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--color-secondary);
}

/* Stars */
.stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--space-md);
}

.star {
  width: 18px;
  height: 18px;
  fill: #f59e0b;
}

/* ============================================================
   15. CONTACT SECTION
   ============================================================ */
.contact__grid {
  display: grid;
  gap: var(--space-3xl);
}

@media (min-width: 900px) {
  .contact__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.contact__info-heading {
  margin-bottom: var(--space-sm);
}

.contact__info-lead {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-2xl);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.contact-item__icon {
  width: 48px;
  height: 48px;
  background: var(--color-lightest);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-primary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-item__label {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: 0.125rem;
}

.contact-item__value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
}

.contact-item__value a {
  color: var(--color-primary);
}

.contact-item__value a:hover {
  color: var(--color-secondary);
}

.contact__map {
  margin-top: var(--space-xl);
}

.contact__map iframe {
  width: 100%;
  height: 280px;
  border-radius: var(--radius-lg);
  border: none;
  box-shadow: var(--shadow-md);
}

/* ============================================================
   16. FORMS
   ============================================================ */
.form-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}

.form-row {
  display: grid;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

@media (min-width: 640px) {
  .form-row--2 {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-bottom: var(--space-md);
}

.form-group:last-child { margin-bottom: 0; }

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

.form-label .required {
  color: var(--color-error);
  margin-left: 0.25rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.8125rem 1rem;
  font-size: 0.9375rem;
  color: var(--color-text);
  background: var(--color-off-white);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  min-height: 48px;
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-secondary);
  background: var(--color-white);
  box-shadow: 0 0 0 3px rgba(0,180,216,0.15);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-text-light);
}

.form-input.is-error,
.form-select.is-error,
.form-textarea.is-error {
  border-color: var(--color-error);
  box-shadow: 0 0 0 3px rgba(231,76,60,0.1);
}

.form-error-msg {
  font-size: 0.8125rem;
  color: var(--color-error);
  margin-top: 0.25rem;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a6a78' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

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

/* File Upload */
.form-file-wrap {
  position: relative;
}

.form-file {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.form-file-label {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: 0.8125rem 1rem;
  background: var(--color-off-white);
  border: 2px dashed var(--color-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  min-height: 56px;
}

.form-file-label:hover {
  border-color: var(--color-secondary);
  background: var(--color-lightest);
}

.form-file-label svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-primary);
  flex-shrink: 0;
}

.form-file-text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.form-file-text span {
  color: var(--color-primary);
  font-weight: 600;
}

/* Checkbox */
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}

.form-check__input {
  width: 20px;
  height: 20px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  appearance: none;
  -webkit-appearance: none;
  background: var(--color-off-white);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 1px;
  transition: all var(--transition-fast);
}

.form-check__input:checked {
  background: var(--color-primary);
  border-color: var(--color-primary);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M13.5 3.5l-7.5 8-3.5-3.5' stroke='white' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.form-check__input:focus-visible {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

.form-check__label {
  font-size: 0.875rem;
  color: var(--color-text);
  line-height: 1.5;
}

.form-check__label a {
  color: var(--color-primary);
  font-weight: 600;
}

/* Honeypot */
.form-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
  tab-index: -1;
}

/* Form Messages */
.form-message {
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  font-weight: 500;
  font-size: 0.9375rem;
  margin-top: var(--space-md);
  display: none;
}

.form-message.is-visible { display: block; }

.form-message--success {
  background: rgba(46,204,113,0.1);
  border: 1px solid rgba(46,204,113,0.3);
  color: #1a7a4a;
}

.form-message--error {
  background: rgba(231,76,60,0.1);
  border: 1px solid rgba(231,76,60,0.3);
  color: #c0392b;
}

/* ============================================================
   17. FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-darker);
  color: rgba(255,255,255,0.75);
  padding-top: var(--space-4xl);
}

.footer__grid {
  display: grid;
  gap: var(--space-2xl);
  padding-bottom: var(--space-3xl);
}

@media (min-width: 640px) {
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer__grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
}

.footer__brand .site-logo__name {
  color: var(--color-white);
}

.footer__brand-text {
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-top: var(--space-md);
  color: rgba(202,240,248,0.7);
  max-width: 280px;
}

.footer__heading {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: var(--space-lg);
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__list-link {
  font-size: 0.9375rem;
  color: rgba(202,240,248,0.65);
  transition: color var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 32px;
}

.footer__list-link:hover {
  color: var(--color-light);
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(202,240,248,0.65);
  margin-bottom: var(--space-md);
}

.footer__contact-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-light);
  flex-shrink: 0;
}

.footer__hours {
  font-size: 0.875rem;
  color: rgba(202,240,248,0.65);
  line-height: 1.8;
}

.footer__social {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
  flex-wrap: wrap;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-light);
  transition: all var(--transition-fast);
}

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

.footer__social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: var(--space-lg) 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.footer__copyright {
  font-size: 0.875rem;
  color: rgba(202,240,248,0.5);
}

.footer__bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer__bottom-link {
  font-size: 0.875rem;
  color: rgba(202,240,248,0.5);
  transition: color var(--transition-fast);
}

.footer__bottom-link:hover {
  color: var(--color-light);
}

/* ============================================================
   18. BACK TO TOP BUTTON
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: var(--color-white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 500;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all var(--transition-base);
  cursor: pointer;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-3px);
}

.back-to-top:focus-visible {
  outline: 3px solid var(--color-secondary);
  outline-offset: 3px;
}

.back-to-top svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ============================================================
   19. INNER PAGE STYLES
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--color-darker) 0%, var(--color-dark) 100%);
  padding-top: calc(var(--nav-height) + var(--space-3xl));
  padding-bottom: var(--space-3xl);
}

.page-hero__eyebrow {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-light);
  margin-bottom: var(--space-sm);
}

.page-hero__title {
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.page-hero__subtitle {
  font-size: 1.0625rem;
  color: var(--color-light);
  max-width: 560px;
}

/* Breadcrumbs */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-top: var(--space-lg);
}

.breadcrumb__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(202,240,248,0.6);
}

.breadcrumb__item:last-child {
  color: var(--color-light);
}

.breadcrumb__link {
  color: rgba(202,240,248,0.6);
  transition: color var(--transition-fast);
}

.breadcrumb__link:hover {
  color: var(--color-light);
}

.breadcrumb__separator {
  color: rgba(202,240,248,0.35);
  font-size: 0.75rem;
}

/* Content pages */
.content-page {
  padding-top: var(--space-3xl);
  padding-bottom: var(--space-4xl);
}

.content-page h2 {
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-sm);
}

.content-page h3 {
  font-size: 1.2rem;
  color: var(--color-darker);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
}

.content-page p,
.content-page li {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.content-page ul,
.content-page ol {
  margin-bottom: var(--space-md);
  padding-left: 1.5rem;
}

.content-page ul li {
  list-style: disc;
}

.content-page ol li {
  list-style: decimal;
}

.content-box {
  max-width: 860px;
  margin-inline: auto;
}

/* Apply page */
.apply-page__intro {
  max-width: 640px;
  margin-bottom: var(--space-3xl);
}

/* ============================================================
   20. 404 PAGE
   ============================================================ */
.error-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-3xl) var(--container-pad);
  background: linear-gradient(155deg, var(--color-lightest) 0%, var(--color-white) 100%);
}

.error-page__code {
  font-family: var(--font-heading);
  font-size: clamp(6rem, 20vw, 12rem);
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-md);
}

.error-page__title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--color-darker);
  margin-bottom: var(--space-md);
}

.error-page__text {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  max-width: 480px;
  margin-bottom: var(--space-2xl);
}

.error-page__links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
  margin-top: var(--space-xl);
}

/* ============================================================
   21. UTILITY CLASSES
   ============================================================ */
.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;
}

.d-none { display: none !important; }
.d-block { display: block !important; }

.mb-0 { margin-bottom: 0 !important; }
.mb-sm { margin-bottom: var(--space-sm) !important; }
.mb-md { margin-bottom: var(--space-md) !important; }
.mb-lg { margin-bottom: var(--space-lg) !important; }
.mb-xl { margin-bottom: var(--space-xl) !important; }
.mb-2xl { margin-bottom: var(--space-2xl) !important; }

.mt-0 { margin-top: 0 !important; }
.mt-auto { margin-top: auto !important; }

.py-xl { padding-block: var(--space-xl) !important; }

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   22. IMAGE PLACEHOLDERS
   ============================================================ */
.img-ph {
  background: linear-gradient(135deg, var(--color-lightest) 0%, var(--color-light) 60%, rgba(0,180,216,0.18) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  position: relative;
  overflow: hidden;
}

.img-ph::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.35) 0%, transparent 60%);
  pointer-events: none;
}

.img-ph__icon {
  width: 44px;
  height: 44px;
  stroke: var(--color-primary);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.45;
  position: relative;
  z-index: 1;
}

.img-ph__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-primary);
  opacity: 0.5;
  margin: 0;
  position: relative;
  z-index: 1;
}

.img-ph--about {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.img-ph--card {
  width: 100%;
  height: 200px;
}

.img-ph--avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 3px solid var(--color-light);
  flex-shrink: 0;
  background: var(--color-lightest);
}

.img-ph--avatar .img-ph__icon {
  width: 24px;
  height: 24px;
}

/* ============================================================
   23. ANIMATIONS
   ============================================================ */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(0.9); }
}

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

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

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

.animate-fade-in {
  animation: fadeIn 0.5s ease forwards;
}

[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="400"] { transition-delay: 0.4s; }
[data-delay="500"] { transition-delay: 0.5s; }

/* ============================================================
   23. PRINT STYLES
   ============================================================ */
@media print {
  .site-header,
  .mobile-menu,
  .hero__actions,
  .back-to-top,
  .site-footer,
  .nav-toggle,
  iframe,
  .btn--primary,
  .btn--outline,
  form button,
  .footer__social {
    display: none !important;
  }

  body {
    font-size: 12pt;
    color: #000;
    background: #fff;
  }

  h1, h2, h3, h4 {
    color: #000;
    page-break-after: avoid;
  }

  p, li {
    page-break-inside: avoid;
  }

  a {
    color: #000;
    text-decoration: underline;
  }

  a[href^="http"]::after {
    content: " (" attr(href) ")";
    font-size: 9pt;
    color: #666;
  }

  .container {
    max-width: 100%;
    padding: 0;
  }

  .section {
    padding-block: 1.5rem;
  }

  .hero {
    background: none;
    color: #000;
    padding-top: 1rem;
    min-height: auto;
  }

  .hero__title,
  .hero__subtitle {
    color: #000;
  }

  .hero::before,
  .hero::after,
  .hero__shape {
    display: none;
  }

  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }
}
