@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;600;700&family=Outfit:wght@300;400;500;600&display=swap');

:root {
  --navy: #0a1628;
  --navy-mid: #122040;
  --sky: #4a90d9;
  --sky-light: #7ab3e8;
  --gold: #c9a84c;
  --gold-light: #e0c97a;
  --white: #ffffff;
  --off-white: #f4f7fc;
  --light-gray: #e8eef8;
  --text-dark: #0d1f3c;
  --text-mid: #3a4f6e;
  --text-light: #6b82a0;
  --border: rgba(74,144,217,0.15);
  --shadow: 0 8px 40px rgba(10,22,40,0.12);
  --shadow-lg: 0 20px 60px rgba(10,22,40,0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

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

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 600; }
p { font-size: 1.05rem; color: var(--text-mid); }

/* ── NAVBAR ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  transition: var(--transition);
}

.nav-inner {
  max-width: 1300px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem; height: 72px;
}

.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}

.nav-logo svg { height: 44px; width: auto; }

.nav-logo-text {
  display: flex; flex-direction: column;
}

.nav-logo-text span:first-child {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; font-weight: 700;
  color: var(--white); letter-spacing: 0.5px;
  line-height: 1.1;
}

.nav-logo-text span:last-child {
  font-size: 0.62rem; font-weight: 500; letter-spacing: 2.5px;
  color: var(--gold); text-transform: uppercase;
}

.nav-links {
  display: flex; align-items: center; gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none; color: rgba(255,255,255,0.8);
  font-size: 0.9rem; font-weight: 500; letter-spacing: 0.3px;
  padding: 0.5rem 1rem; border-radius: 8px;
  transition: var(--transition); position: relative;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--white); background: rgba(74,144,217,0.15);
}

.nav-links a.active::after {
  content: ''; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 20px; height: 2px; background: var(--gold); border-radius: 2px;
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
  color: var(--navy) !important; font-weight: 600 !important;
  padding: 0.5rem 1.25rem !important; border-radius: 8px !important;
}

.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(201,168,76,0.4) !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%, #0d2d5e 100%);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: 72px;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(74,144,217,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(201,168,76,0.08) 0%, transparent 50%);
}

.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(74,144,217,0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(74,144,217,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-inner {
  max-width: 1300px; margin: 0 auto; padding: 5rem 2rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: center; position: relative; z-index: 1;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold-light); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 0.4rem 1rem; border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero-badge::before { content: '✦'; font-size: 0.6rem; }

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

.hero-sub {
  color: rgba(255,255,255,0.7); font-size: 1.1rem;
  margin-bottom: 2.5rem; max-width: 500px;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy); font-weight: 600; font-size: 0.95rem;
  padding: 0.85rem 2rem; border-radius: 10px;
  text-decoration: none; border: none; cursor: pointer;
  transition: var(--transition); display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.4); }

.btn-outline {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
  font-weight: 500; font-size: 0.95rem;
  padding: 0.85rem 2rem; border-radius: 10px;
  text-decoration: none; cursor: pointer;
  transition: var(--transition); display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline:hover { border-color: var(--sky-light); color: var(--sky-light); transform: translateY(-2px); }

.hero-stats {
  display: flex; gap: 2rem; margin-top: 3rem; padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.stat-item { text-align: center; }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700; color: var(--gold-light); display: block; }
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); letter-spacing: 0.5px; }

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

.hero-card-stack {
  position: relative; width: 380px; height: 420px;
}

.hero-card {
  position: absolute; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-lg);
}

.hero-card-main {
  width: 300px; height: 360px; top: 30px; left: 40px;
  background: linear-gradient(145deg, #1a3060, #0d2248);
  border: 1px solid rgba(74,144,217,0.2);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 16px; padding: 2rem;
}

.hero-icon-circle {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(74,144,217,0.2), rgba(201,168,76,0.1));
  border: 2px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
}

.hero-card-small {
  width: 160px; height: 100px; bottom: 20px; right: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px;
}
.hero-card-small .sc-num { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 700; color: var(--navy); }
.hero-card-small .sc-label { font-size: 0.72rem; font-weight: 600; color: var(--navy); opacity: 0.8; letter-spacing: 0.5px; text-align: center; }

.hero-card-accent {
  width: 120px; height: 80px; top: 0; right: 20px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(74,144,217,0.25);
  backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
}

/* ── SECTIONS ── */
.section { padding: 6rem 2rem; }
.section-alt { background: var(--off-white); }

.container { max-width: 1300px; margin: 0 auto; }

.section-header { text-align: center; margin-bottom: 4rem; }
.section-tag {
  display: inline-block; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase; color: var(--sky);
  background: rgba(74,144,217,0.08); border: 1px solid rgba(74,144,217,0.2);
  padding: 0.3rem 1rem; border-radius: 50px; margin-bottom: 1rem;
}
.section-header h2 { margin-bottom: 1rem; color: var(--navy); }
.section-header p { max-width: 580px; margin: 0 auto; }

/* ── SERVICES GRID ── */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
  transition: var(--transition); position: relative; overflow: hidden;
}

.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--sky), var(--gold));
  transform: scaleX(0); transition: var(--transition); transform-origin: left;
}

.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(74,144,217,0.3); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(74,144,217,0.12), rgba(10,22,40,0.06));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.25rem;
  border: 1px solid rgba(74,144,217,0.15);
}

.service-card h3 { color: var(--navy); margin-bottom: 0.75rem; font-size: 1.15rem; }
.service-card p { font-size: 0.92rem; line-height: 1.7; }

/* ── WHY CHOOSE US ── */
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}

.why-list { display: flex; flex-direction: column; gap: 1.5rem; }

.why-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.25rem; border-radius: var(--radius);
  border: 1px solid var(--border); background: var(--white);
  transition: var(--transition);
}
.why-item:hover { border-color: rgba(74,144,217,0.3); box-shadow: var(--shadow); }

.why-num {
  font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700;
  color: rgba(74,144,217,0.2); line-height: 1; min-width: 40px;
}

.why-text h4 { font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 1rem; color: var(--navy); margin-bottom: 0.3rem; }
.why-text p { font-size: 0.9rem; }

.why-visual {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: var(--radius-lg); padding: 3rem;
  display: flex; flex-direction: column; gap: 1.5rem;
  position: relative; overflow: hidden;
}

.why-visual::before {
  content: '';
  position: absolute; top: -50%; right: -30%;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(74,144,217,0.15), transparent 70%);
}

.metric-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 1.25rem 1.5rem;
  display: flex; align-items: center; gap: 1rem;
}

.metric-icon { font-size: 1.5rem; }
.metric-info { flex: 1; }
.metric-value { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 700; color: var(--gold-light); display: block; }
.metric-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); }

/* ── TEAM / ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }

.about-img-block {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  height: 480px; display: flex; align-items: center; justify-content: center;
}

.about-img-content { text-align: center; color: var(--white); padding: 2rem; }
.about-img-content .big-icon { font-size: 5rem; display: block; margin-bottom: 1rem; }
.about-img-content h3 { font-size: 1.4rem; color: var(--gold-light); margin-bottom: 0.5rem; }
.about-img-content p { color: rgba(255,255,255,0.6); font-size: 0.9rem; }

.about-accent {
  position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
  background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius); padding: 1rem 1.25rem;
  display: flex; align-items: center; gap: 1rem;
}
.about-accent .accent-icon { font-size: 1.5rem; }
.about-accent p { font-size: 0.82rem; color: var(--gold-light); }

.about-content h2 { color: var(--navy); margin-bottom: 1.5rem; }
.about-content p { margin-bottom: 1.25rem; }

.value-chips { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }
.chip {
  font-size: 0.82rem; font-weight: 500; padding: 0.4rem 1rem;
  border-radius: 50px; background: rgba(74,144,217,0.08);
  border: 1px solid rgba(74,144,217,0.2); color: var(--sky);
}

/* ── FORMS ── */
.form-section {
  min-height: 100vh; padding-top: 72px;
  background: var(--off-white);
}

.form-hero {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  padding: 5rem 2rem 4rem;
  text-align: center; position: relative; overflow: hidden;
}

.form-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(74,144,217,0.15), transparent 70%);
}

.form-hero h1 { color: var(--white); position: relative; z-index: 1; margin-bottom: 0.75rem; }
.form-hero p { color: rgba(255,255,255,0.65); position: relative; z-index: 1; max-width: 520px; margin: 0 auto; }

.form-wrapper { max-width: 760px; margin: -2rem auto 0; position: relative; z-index: 1; padding: 0 2rem 5rem; }

.form-card {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); overflow: hidden;
}

.form-card-header {
  background: linear-gradient(135deg, var(--sky), #2c6db5);
  padding: 1.5rem 2rem;
}
.form-card-header h3 { color: var(--white); font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 1rem; }
.form-card-header p { color: rgba(255,255,255,0.75); font-size: 0.85rem; }

.form-body { padding: 2rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--navy); letter-spacing: 0.3px; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 0.75rem 1rem;
  border: 1.5px solid var(--light-gray);
  border-radius: 10px; font-family: 'Outfit', sans-serif;
  font-size: 0.95rem; color: var(--text-dark);
  background: var(--off-white); transition: var(--transition); outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sky); background: var(--white);
  box-shadow: 0 0 0 3px rgba(74,144,217,0.12);
}

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

.form-submit {
  width: 100%; padding: 1rem; border: none; cursor: pointer;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--white); font-family: 'Outfit', sans-serif;
  font-size: 1rem; font-weight: 600; border-radius: 10px;
  transition: var(--transition); letter-spacing: 0.3px;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(10,22,40,0.25); background: linear-gradient(135deg, var(--sky), #2c6db5); }

.role-tabs {
  display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2rem;
  border-bottom: 1px solid var(--light-gray); padding-bottom: 1rem;
}

.role-tab {
  padding: 0.5rem 1.25rem; border-radius: 8px;
  border: 1.5px solid var(--light-gray); background: none;
  font-family: 'Outfit', sans-serif; font-size: 0.85rem; font-weight: 500;
  color: var(--text-mid); cursor: pointer; transition: var(--transition);
}
.role-tab.active, .role-tab:hover {
  border-color: var(--sky); background: rgba(74,144,217,0.08); color: var(--sky);
}

.role-panel { display: none; }
.role-panel.active { display: block; }

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 3rem; align-items: start;
}

.contact-info-card {
  background: linear-gradient(145deg, var(--navy), var(--navy-mid));
  border-radius: var(--radius-lg); padding: 2.5rem; color: var(--white);
  position: sticky; top: 100px;
}

.contact-info-card h3 {
  color: var(--gold-light); font-size: 1.4rem; margin-bottom: 0.5rem;
}
.contact-info-card > p { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-bottom: 2rem; }

.contact-detail {
  display: flex; gap: 1rem; align-items: flex-start;
  margin-bottom: 1.5rem; padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.contact-detail:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.c-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: rgba(74,144,217,0.15); border: 1px solid rgba(74,144,217,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}

.c-label { font-size: 0.75rem; color: rgba(255,255,255,0.4); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 0.25rem; }
.c-value { font-size: 0.9rem; color: rgba(255,255,255,0.85); line-height: 1.5; }
.c-value a { color: var(--sky-light); text-decoration: none; }

.reg-note {
  margin-top: 2rem; padding: 1rem 1.25rem;
  background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
}
.reg-note p { font-size: 0.78rem; color: rgba(255,255,255,0.5); line-height: 1.6; }
.reg-note strong { color: var(--gold-light); }

/* ── FOOTER ── */
footer {
  background: var(--navy); color: var(--white);
  padding: 4rem 2rem 0;
}

.footer-grid {
  max-width: 1300px; 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.08);
}

.footer-brand p {
  color: rgba(255,255,255,0.5); font-size: 0.88rem;
  margin-top: 1rem; max-width: 280px; line-height: 1.7;
}

.footer-col h4 {
  font-family: 'Outfit', sans-serif; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a {
  color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.88rem;
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--sky-light); }

.footer-contact-item {
  display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.75rem;
}
.footer-contact-item .fi { font-size: 0.9rem; margin-top: 2px; flex-shrink: 0; }
.footer-contact-item p { font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.5; }
.footer-contact-item a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-contact-item a:hover { color: var(--sky-light); }

.footer-bottom {
  max-width: 1300px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 0; flex-wrap: wrap; gap: 1rem;
}

.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-bottom a:hover { color: var(--sky-light); }

.gphc-badge {
  display: flex; align-items: center; gap: 0.5rem;
  background: rgba(74,144,217,0.1); border: 1px solid rgba(74,144,217,0.2);
  border-radius: 8px; padding: 0.4rem 0.75rem;
  font-size: 0.75rem; color: rgba(255,255,255,0.5);
}

/* ── PAGE HEADER ── */
.page-header {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  padding: 7rem 2rem 4rem;
  text-align: center; position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(74,144,217,0.15), transparent 60%);
}
.page-header h1 { color: var(--white); position: relative; z-index: 1; margin-bottom: 0.75rem; }
.page-header p { color: rgba(255,255,255,0.6); max-width: 540px; margin: 0 auto; position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-bottom: 1rem; position: relative; z-index: 1; }
.breadcrumb a, .breadcrumb span { font-size: 0.8rem; color: rgba(255,255,255,0.4); text-decoration: none; }
.breadcrumb a:hover { color: var(--sky-light); }
.breadcrumb .sep { color: rgba(255,255,255,0.2); }

/* ── ALERTS ── */
.alert {
  padding: 1rem 1.25rem; border-radius: 10px; margin-bottom: 1.5rem;
  font-size: 0.9rem; display: none;
}
.alert-success { background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.3); color: #16a34a; }
.alert-error { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.3); color: #dc2626; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .hero-sub { margin: 0 auto 2.5rem; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .why-grid, .about-grid { grid-template-columns: 1fr; }
  .about-img-block { height: 280px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--navy); padding: 1rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
}

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

.fade-up { animation: fadeInUp 0.6s ease forwards; }
.fade-up-d1 { animation-delay: 0.1s; opacity: 0; }
.fade-up-d2 { animation-delay: 0.2s; opacity: 0; }
.fade-up-d3 { animation-delay: 0.3s; opacity: 0; }
.fade-up-d4 { animation-delay: 0.4s; opacity: 0; }

/* Join us page specifics */
.join-roles-section { padding: 5rem 2rem; background: var(--white); }
.roles-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem; margin-bottom: 3rem; }
.role-card {
  border: 1.5px solid var(--border); border-radius: var(--radius); padding: 1.5rem;
  text-align: center; cursor: pointer; transition: var(--transition);
  background: var(--white);
}
.role-card:hover, .role-card.selected {
  border-color: var(--sky); background: rgba(74,144,217,0.05); transform: translateY(-3px);
}
.role-card.selected { box-shadow: 0 0 0 2px rgba(74,144,217,0.3); }
.role-card .rc-icon { font-size: 2rem; margin-bottom: 0.75rem; display: block; }
.role-card h4 { font-family: 'Outfit', sans-serif; font-size: 0.95rem; font-weight: 600; color: var(--navy); margin-bottom: 0.25rem; }
.role-card p { font-size: 0.8rem; }

.required { color: #dc2626; }
