/* ═══ CORPORATE PAGE CSS ═══ */
:root {
  --primary: #0891B2;
  --primary-dark: #0E7490;
  --accent: #22C55E;
  --text-dark: #0F172A;
  --text: #334155;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --border: #E2E8F0;
  --bg: #F8FAFC;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 100px;
  --font: 'Figtree', 'Noto Sans', sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--bg); line-height: 1.6; }

/* NAV */
.corp-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 40px;
  background: rgba(255,255,255,0.85); backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
}
.corp-nav.scrolled { border-bottom-color: var(--border); box-shadow: 0 2px 20px rgba(0,0,0,0.06); }
.corp-nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.corp-nav-brand { font-weight: 800; font-size: 20px; color: var(--text-dark); }
.corp-nav-brand span { color: var(--primary); }
.corp-nav-links { display: flex; align-items: center; gap: 28px; }
.corp-nav-links a { font-size: 14px; font-weight: 600; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.corp-nav-links a:hover { color: var(--primary); }
.corp-nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
  color: white !important; padding: 10px 22px !important;
  border-radius: var(--radius-full) !important; font-weight: 700 !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
}
.corp-nav-cta:hover { transform: translateY(-2px) !important; box-shadow: 0 4px 16px rgba(8,145,178,0.3) !important; }
.corp-hamburger {
  display: none; background: none; border: none; cursor: pointer;
  width: 36px; height: 36px; color: var(--text-dark);
}
.corp-hamburger svg { width: 24px; height: 24px; }
.corp-mobile-menu {
  display: none; position: fixed; top: 65px; left: 0; right: 0; z-index: 99;
  background: white; padding: 20px; flex-direction: column; gap: 12px;
  border-bottom: 1px solid var(--border); box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.corp-mobile-menu.active { display: flex; }
.corp-mobile-menu a { font-size: 15px; font-weight: 600; color: var(--text); text-decoration: none; padding: 10px; border-radius: var(--radius-md); }
.corp-mobile-menu a:hover { background: rgba(8,145,178,0.05); color: var(--primary); }

/* HERO */
.corp-hero {
  position: relative; min-height: 90vh; display: flex; align-items: center; justify-content: center;
  padding: 120px 40px 80px; overflow: hidden;
}
.corp-hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0F172A 0%, #1E3A5F 40%, #0E7490 100%);
}
.corp-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(8,145,178,0.3) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(34,197,94,0.15) 0%, transparent 50%);
}
.corp-hero-content { position: relative; z-index: 1; text-align: center; max-width: 760px; }
.corp-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-full); padding: 8px 20px;
  color: rgba(255,255,255,0.8); font-size: 13px; font-weight: 600;
  margin-bottom: 24px; backdrop-filter: blur(8px);
}
.corp-hero h1 {
  font-size: clamp(32px, 5vw, 56px); font-weight: 800; color: white;
  line-height: 1.15; margin-bottom: 20px;
}
.corp-hero h1 span { color: #22D3EE; }
.corp-hero > .corp-hero-content > p {
  font-size: 17px; color: rgba(255,255,255,0.75); line-height: 1.7;
  max-width: 560px; margin: 0 auto 32px;
}
.corp-hero-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.corp-btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white; padding: 16px 36px; border-radius: var(--radius-full);
  font-size: 16px; font-weight: 700; text-decoration: none; border: none; cursor: pointer;
  transition: all 0.3s; box-shadow: 0 4px 20px rgba(8,145,178,0.3);
}
.corp-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(8,145,178,0.4); }
.corp-btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1); border: 1.5px solid rgba(255,255,255,0.25);
  color: white; padding: 16px 32px; border-radius: var(--radius-full);
  font-size: 16px; font-weight: 600; text-decoration: none;
  transition: all 0.3s; backdrop-filter: blur(8px);
}
.corp-btn-secondary:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }
.corp-hero-stats {
  display: flex; justify-content: center; align-items: center; gap: 32px;
  padding: 24px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); backdrop-filter: blur(8px);
}
.corp-stat { text-align: center; }
.corp-stat strong { display: block; font-size: 24px; font-weight: 800; color: white; }
.corp-stat span { font-size: 12px; color: rgba(255,255,255,0.6); font-weight: 500; }
.corp-stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }

/* TRUST BAR */
.corp-trust-bar {
  display: flex; justify-content: center; gap: 40px; flex-wrap: wrap;
  padding: 32px 40px; background: white; border-bottom: 1px solid var(--border);
}
.corp-trust-item { display: flex; align-items: center; gap: 12px; color: var(--primary); }
.corp-trust-item strong { display: block; font-size: 14px; font-weight: 700; color: var(--text-dark); }
.corp-trust-item span { font-size: 12px; color: var(--text-muted); }

/* Hero image */
.corp-hero-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.15; mix-blend-mode: luminosity;
}

/* HMO STRIP */
.corp-hmo-strip {
  padding: 28px 40px; background: var(--bg);
  border-bottom: 1px solid var(--border); text-align: center;
}
.corp-hmo-label {
  font-size: 12px; font-weight: 700; color: var(--text-light);
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px;
}
.corp-hmo-logos {
  display: flex; align-items: center; justify-content: center;
  gap: 24px; flex-wrap: wrap;
}
.corp-hmo-logo {
  height: 40px; width: auto; border-radius: 8px;
  object-fit: contain; filter: grayscale(30%);
  transition: filter 0.2s; background: white;
  padding: 4px 8px; border: 1px solid var(--border);
}
.corp-hmo-logo:hover { filter: grayscale(0%); }
.corp-hmo-text {
  font-size: 13px; font-weight: 600; color: var(--text-muted);
  padding: 8px 16px; background: rgba(8,145,178,0.05);
  border-radius: var(--radius-full); border: 1px solid rgba(8,145,178,0.1);
}

/* SECTION HEADERS */
.corp-section-header { text-align: center; margin-bottom: 48px; }
.corp-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700; color: var(--primary);
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 12px;
}
.corp-section-header h2 {
  font-size: clamp(26px, 3.5vw, 38px); font-weight: 800; color: var(--text-dark);
  line-height: 1.2; margin-bottom: 12px;
}
.corp-section-header p { font-size: 15px; color: var(--text-muted); max-width: 500px; margin: 0 auto; }

/* APE PACKAGES */
.corp-packages { padding: 80px 40px; }
.corp-pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1100px; margin: 0 auto; }
.corp-pkg-card {
  background: white; border: 1.5px solid var(--border); border-radius: var(--radius-xl);
  padding: 32px 28px; position: relative; transition: all 0.3s;
}
.corp-pkg-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.corp-pkg-featured {
  border-color: var(--primary) !important;
  box-shadow: 0 8px 32px rgba(8,145,178,0.12);
  transform: scale(1.03);
}
.corp-pkg-featured:hover { transform: scale(1.03) translateY(-6px); }
.corp-pkg-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white; padding: 6px 20px; border-radius: var(--radius-full);
  font-size: 12px; font-weight: 700; letter-spacing: 0.5px;
}
.corp-pkg-tier {
  font-size: 12px; font-weight: 700; color: var(--primary);
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 8px;
}
.corp-pkg-card h3 { font-size: 22px; font-weight: 800; color: var(--text-dark); margin-bottom: 6px; }
.corp-pkg-desc { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }
.corp-pkg-list { list-style: none; margin-bottom: 20px; }
.corp-pkg-list li {
  font-size: 13.5px; color: var(--text); padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  display: flex; align-items: center; gap: 8px;
}
.corp-pkg-list li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--primary); flex-shrink: 0;
}
/* Gender-specific groups */
.corp-gender-group { margin-bottom: 16px; }
.corp-gender-group:last-of-type { margin-bottom: 20px; }
.corp-gender-label {
  display: flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 700; color: var(--primary-dark);
  margin-bottom: 6px; padding-bottom: 6px;
  border-bottom: 1.5px solid rgba(8,145,178,0.15);
}
.corp-gender-label svg { color: var(--primary); flex-shrink: 0; }
.corp-pkg-ideal {
  font-size: 12px; color: var(--text-light); font-weight: 600;
  padding: 10px 14px; background: rgba(8,145,178,0.04);
  border-radius: var(--radius-md); margin-bottom: 20px;
}
.corp-pkg-btn {
  display: block; text-align: center; padding: 14px;
  border-radius: var(--radius-full); font-size: 15px; font-weight: 700;
  text-decoration: none; transition: all 0.3s;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white; box-shadow: 0 4px 12px rgba(8,145,178,0.2);
}
.corp-pkg-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(8,145,178,0.3); }
.corp-pkg-note {
  text-align: center; font-size: 13px; color: var(--text-light);
  margin-top: 32px; max-width: 600px; margin-left: auto; margin-right: auto;
}

/* PROCESS */
.corp-process { padding: 80px 40px; background: white; }
.corp-steps {
  display: flex; align-items: flex-start; justify-content: center; gap: 12px;
  max-width: 1000px; margin: 0 auto;
}
.corp-step {
  flex: 1; text-align: center; padding: 24px 16px;
  background: var(--bg); border-radius: var(--radius-lg); border: 1px solid var(--border);
}
.corp-step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white; font-size: 18px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.corp-step h4 { font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.corp-step p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.corp-step-arrow {
  display: flex; align-items: center; padding-top: 48px; color: var(--text-light);
}

/* WHY US */
.corp-why {
  padding: 80px 40px;
  background: linear-gradient(135deg, #0F172A, #1E3A5F);
}
.corp-why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  max-width: 1000px; margin: 0 auto;
}
.corp-why-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); padding: 28px 24px;
  backdrop-filter: blur(8px); transition: all 0.3s;
}
.corp-why-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.corp-why-icon {
  width: 48px; height: 48px; border-radius: var(--radius-md);
  background: rgba(8,145,178,0.2); color: #22D3EE;
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.corp-why-card h4 { font-size: 16px; font-weight: 700; color: white; margin-bottom: 8px; }
.corp-why-card p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* INQUIRY */
.corp-inquiry { padding: 80px 40px; }
.corp-form-card {
  max-width: 760px; margin: 0 auto;
  background: white; border: 1.5px solid var(--border); border-radius: var(--radius-xl);
  padding: 40px; box-shadow: 0 8px 32px rgba(0,0,0,0.06); position: relative;
}
.corp-form-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--primary), #22D3EE, var(--accent));
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.corp-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.corp-form-field label {
  display: block; font-size: 13px; font-weight: 600; color: var(--text-dark); margin-bottom: 6px;
}
.req { color: #EF4444; font-weight: 700; }
.corp-form-field input,
.corp-form-field select,
.corp-form-field textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border); border-radius: var(--radius-md);
  font-family: var(--font); font-size: 14px; color: var(--text-dark);
  background: white; outline: none; transition: all 0.2s;
  -webkit-appearance: none; appearance: none;
}
.corp-form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; cursor: pointer;
}
.corp-form-field textarea { resize: vertical; min-height: 80px; }
.corp-form-field input:focus,
.corp-form-field select:focus,
.corp-form-field textarea:focus {
  border-color: var(--primary); box-shadow: 0 0 0 3px rgba(8,145,178,0.1);
}
.corp-form-field input::placeholder, .corp-form-field textarea::placeholder { color: var(--text-light); }
.corp-form-submit { text-align: center; margin-top: 8px; }
.corp-form-note { font-size: 12.5px; color: var(--text-light); margin-top: 12px; }
.corp-success-icon {
  width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 20px;
  background: rgba(34,197,94,0.1); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
}
.corp-form-success { text-align: center; padding: 40px 20px; }
.corp-form-success h3 { font-size: 24px; font-weight: 800; color: var(--text-dark); margin-bottom: 10px; }
.corp-form-success p { font-size: 14px; color: var(--text-muted); max-width: 400px; margin: 0 auto; }

/* FOOTER */
.corp-footer { background: #0F172A; color: rgba(255,255,255,0.6); padding: 40px 40px 20px; }
.corp-footer-inner { display: flex; justify-content: space-between; align-items: center; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.corp-footer-brand { font-size: 20px; font-weight: 800; color: white; margin-bottom: 4px; }
.corp-footer-brand span { color: var(--primary); }
.corp-footer-links { display: flex; gap: 24px; }
.corp-footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.corp-footer-links a:hover { color: white; }
.corp-footer-bottom { text-align: center; font-size: 12px; color: rgba(255,255,255,0.3); padding-top: 20px; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .corp-pkg-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .corp-pkg-featured { transform: none; }
  .corp-pkg-featured:hover { transform: translateY(-6px); }
  .corp-why-grid { grid-template-columns: 1fr 1fr; }
  .corp-steps { flex-direction: column; align-items: center; }
  .corp-step-arrow { display: none; }
  .corp-step { max-width: 360px; width: 100%; }
}
@media (max-width: 768px) {
  .corp-nav { padding: 12px 20px; }
  .corp-nav-links { display: none; }
  .corp-hamburger { display: flex; align-items: center; justify-content: center; }
  .corp-hero { padding: 100px 20px 60px; min-height: auto; }
  .corp-hero h1 { font-size: 28px; }
  .corp-hero-stats { flex-direction: column; gap: 16px; }
  .corp-stat-divider { width: 60px; height: 1px; }
  .corp-trust-bar { flex-direction: column; gap: 16px; padding: 24px 20px; }
  .corp-packages, .corp-process, .corp-why, .corp-inquiry { padding: 60px 20px; }
  .corp-form-row { grid-template-columns: 1fr; }
  .corp-form-card { padding: 28px 20px; }
  .corp-why-grid { grid-template-columns: 1fr; }
  .corp-footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .corp-hmo-strip { padding: 24px 20px; }
  .corp-hmo-logos { gap: 12px; }
  .corp-hmo-logo { height: 32px; }
}

/* ═══ UI/UX ENHANCEMENTS (Accessible & Ethical) ═══ */

/* Focus states for keyboard navigation */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Cursor pointer on all interactive elements */
.corp-pkg-card, .corp-why-card, .corp-step,
.corp-trust-item, .corp-hmo-logo { cursor: pointer; }

/* Smooth transitions everywhere */
* { transition-timing-function: ease; }

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .corp-pkg-card:hover, .corp-why-card:hover,
  .corp-btn-primary:hover, .corp-btn-secondary:hover {
    transform: none !important;
  }
}

/* Skip link for accessibility */
.corp-skip-link {
  position: absolute; top: -100px; left: 16px;
  padding: 12px 24px; background: var(--primary); color: white;
  font-weight: 700; border-radius: 0 0 8px 8px; z-index: 999;
  text-decoration: none; transition: top 0.2s;
}
.corp-skip-link:focus { top: 0; }

/* Spinner animation for submit button */
@keyframes spin { to { transform: rotate(360deg); } }
