:root {
  --navy: #071f69;
  --blue: #0b49cf;
  --royal: #123cff;
  --gold: #ffbd12;
  --gold-soft: #fff2c5;
  --green: #0d9a64;
  --ink: #111827;
  --muted: #627084;
  --line: #dde5ef;
  --paper: #ffffff;
  --soft: #f6f8fc;
  --shadow: 0 24px 80px rgba(7, 31, 105, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(7, 31, 105, 0.04) 25%, transparent 25%) 0 0 / 34px 34px,
    linear-gradient(225deg, rgba(255, 189, 18, 0.14) 10%, transparent 10%) 0 0 / 42px 42px,
    linear-gradient(180deg, #ffffff 0%, var(--soft) 45%, #ffffff 100%);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 70px);
  border-bottom: 1px solid rgba(221, 229, 239, 0.8);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 34px rgba(7, 31, 105, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  min-width: 270px;
  gap: 12px;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(7, 31, 105, 0.15));
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--navy);
  font-size: 18px;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  position: relative;
  padding: 10px 11px;
  border-radius: 8px;
  color: #4b5a72;
  font-size: 14px;
  font-weight: 800;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 5px;
  height: 3px;
  border-radius: 999px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--navy);
  background: var(--gold-soft);
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.menu-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy);
}

main {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  min-height: calc(100vh - 84px);
  padding: clamp(54px, 8vw, 92px) 0 36px;
}

.hero::before {
  content: "";
  position: absolute;
  left: min(4vw, 40px);
  top: 12%;
  width: 116px;
  height: 116px;
  border-top: 10px solid rgba(255, 189, 18, 0.52);
  border-left: 10px solid rgba(11, 73, 207, 0.2);
  transform: rotate(-8deg);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  right: min(2vw, 24px);
  bottom: 8%;
  width: 180px;
  height: 34px;
  background: repeating-linear-gradient(90deg, rgba(7, 31, 105, 0.18) 0 12px, transparent 12px 24px);
  transform: rotate(-12deg);
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 4px;
  border-radius: 999px;
  background: var(--gold);
}

h1,
h2,
h3,
p,
span,
small,
strong {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 820px;
  color: var(--navy);
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  color: var(--navy);
  font-size: 21px;
}

.hero-copy p:not(.eyebrow),
.section-heading p {
  max-width: 720px;
  color: var(--muted);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: var(--navy);
  background: var(--gold);
  box-shadow: 0 12px 28px rgba(255, 189, 18, 0.36);
}

.button.secondary {
  color: white;
  background: var(--blue);
  box-shadow: 0 12px 28px rgba(18, 60, 255, 0.22);
}

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

.button.ghost {
  color: var(--navy);
  background: white;
  box-shadow: inset 0 0 0 1px var(--line);
}

.hidden {
  display: none !important;
}

.hero-showcase {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 16px;
  min-height: 520px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 18px;
  color: white;
  background:
    linear-gradient(135deg, rgba(7, 31, 105, 0.94), rgba(18, 60, 255, 0.78)),
    radial-gradient(circle at 20% 10%, rgba(255, 189, 18, 0.65), transparent 20rem);
  box-shadow: var(--shadow);
}

.hero-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 18px);
  opacity: 0.58;
  pointer-events: none;
}

.hero-showcase::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 2px solid rgba(255, 189, 18, 0.48);
  border-radius: 14px;
  pointer-events: none;
}

.showcase-logo {
  position: relative;
  z-index: 1;
  align-self: start;
  justify-self: center;
  width: min(260px, 72%);
  padding: 0;
  background: transparent;
  filter:
    drop-shadow(0 0 10px rgba(255, 189, 18, 0.95))
    drop-shadow(0 0 26px rgba(255, 189, 18, 0.58))
    drop-shadow(0 18px 28px rgba(0, 0, 0, 0.32));
}

.showcase-stat {
  position: relative;
  z-index: 1;
  align-self: end;
  max-width: 420px;
  padding: 26px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(14px);
}

.showcase-stat strong {
  display: block;
  color: var(--gold);
  font-size: clamp(58px, 9vw, 96px);
  line-height: 0.9;
}

.showcase-stat span {
  display: block;
  margin-top: 12px;
  font-size: 18px;
  font-weight: 800;
}

.showcase-strip {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.showcase-strip span,
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.showcase-strip span {
  color: var(--navy);
  background: var(--gold);
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-bottom: 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--line);
  box-shadow: 0 18px 60px rgba(7, 31, 105, 0.08);
}

.trust-band div {
  position: relative;
  padding: 24px;
  background: white;
}

.trust-band div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, var(--gold), var(--blue));
}

.trust-band strong {
  display: block;
  color: var(--navy);
  font-size: 24px;
}

.trust-band span {
  display: block;
  color: var(--muted);
  font-weight: 700;
}

.section-panel {
  position: relative;
  padding: clamp(58px, 8vw, 104px) 0;
  scroll-margin-top: 96px;
}

.section-panel::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 24px;
  width: min(1120px, 94vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(7, 31, 105, 0.16), transparent);
  transform: translateX(-50%);
}

.section-heading {
  position: relative;
  margin-bottom: 30px;
}

.section-heading h2 {
  text-shadow: 0 14px 34px rgba(7, 31, 105, 0.08);
}

.client-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 420px);
  gap: 24px;
  align-items: start;
}

.old-clients,
.form-panel,
.benefit-panel {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 55px rgba(7, 31, 105, 0.1);
}

.old-clients,
.form-panel,
.gallery-shell,
.upload-panel {
  position: relative;
  overflow: hidden;
}

.old-clients::before,
.form-panel::before,
.gallery-shell::before,
.upload-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--gold), var(--green));
}

.old-clients {
  padding: 24px;
}

.section-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 20px;
}

.section-title-row p {
  margin: 3px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.pill {
  flex: 0 0 auto;
  color: white;
  background: var(--green);
}

.pill.gold {
  color: var(--navy);
  background: var(--gold);
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.client-card {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: end;
  min-height: 178px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff, #f7faff);
  box-shadow: 0 10px 24px rgba(7, 31, 105, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.client-card:hover {
  border-color: rgba(255, 189, 18, 0.75);
  box-shadow: 0 22px 44px rgba(7, 31, 105, 0.14);
  transform: translateY(-4px);
}

.client-card::after {
  content: "";
  position: absolute;
  top: -28px;
  right: -28px;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: rgba(255, 189, 18, 0.24);
}

.client-card strong {
  position: relative;
  z-index: 1;
  color: var(--navy);
  font-size: 19px;
}

.client-card small {
  position: relative;
  z-index: 1;
  margin-top: 5px;
  color: var(--muted);
  font-weight: 700;
}

.client-initial {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 26px;
  border-radius: 14px;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--green));
  font-weight: 900;
  box-shadow: inset 0 -8px 18px rgba(0, 0, 0, 0.18);
}

.client-logo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 74px;
  margin-bottom: 24px;
  object-fit: contain;
  object-position: left center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.86);
}

.featured-client {
  color: white;
  background: linear-gradient(135deg, var(--navy), var(--blue));
}

.featured-client strong,
.featured-client small {
  color: white;
}

.featured-client .client-initial {
  color: var(--navy);
  background: var(--gold);
}

.logo-client img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 56px;
  object-fit: contain;
  object-position: left;
  margin-bottom: 24px;
}

.form-panel {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.spotlight-form {
  border-color: rgba(255, 189, 18, 0.72);
}

.applicant-layout {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.benefit-panel {
  position: sticky;
  top: 104px;
  padding: 26px;
  color: white;
  border: 0;
  background: linear-gradient(160deg, var(--navy), var(--royal));
}

.benefit-panel::after {
  content: "";
  position: absolute;
  inset: auto 22px 22px auto;
  width: 120px;
  height: 120px;
  border-right: 9px solid rgba(255, 189, 18, 0.54);
  border-bottom: 9px solid rgba(255, 189, 18, 0.54);
  border-radius: 0 0 18px 0;
  pointer-events: none;
}

.benefit-panel h3 {
  color: white;
  font-size: 28px;
  line-height: 1.08;
}

.benefit-panel p {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.benefit-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.benefit-list span {
  padding: 11px 13px;
  border-radius: 10px;
  color: var(--navy);
  background: var(--gold);
  font-weight: 900;
}

.wide-form {
  min-width: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cfd9e8;
  border-radius: 10px;
  padding: 13px 14px;
  color: var(--ink);
  background: #ffffff;
  font: inherit;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(7, 31, 105, 0.04);
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 4px solid rgba(255, 189, 18, 0.35);
  border-color: var(--blue);
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--green);
  font-weight: 900;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 28px;
}

.about-story {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border-radius: 16px;
  color: white;
  background:
    linear-gradient(rgba(7, 31, 105, 0.88), rgba(7, 31, 105, 0.88)),
    url("assets/ap-logo-transparent.png") center / 260px no-repeat;
  box-shadow: var(--shadow);
}

.about-story::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 189, 18, 0.42);
  border-radius: 12px;
  pointer-events: none;
}

.events-layout {
  display: grid;
  grid-template-columns: minmax(300px, 390px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.profile-layout {
  display: grid;
  grid-template-columns: minmax(300px, 420px) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

.profile-edit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.employee-layout {
  display: grid;
  grid-template-columns: minmax(300px, 420px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.employee-login-card {
  border-color: rgba(255, 189, 18, 0.72);
}

.employee-dashboard {
  display: grid;
  gap: 16px;
}

.employee-dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  box-shadow: 0 18px 45px rgba(7, 31, 105, 0.08);
}

.employee-dashboard-header h3 {
  margin-top: 8px;
}

.portal-warning {
  display: grid;
  gap: 8px;
  padding: 20px;
  border: 1px solid rgba(255, 189, 18, 0.55);
  border-radius: 16px;
  color: var(--navy);
  background: var(--gold-soft);
  box-shadow: 0 18px 45px rgba(7, 31, 105, 0.08);
}

.portal-warning strong {
  font-size: 20px;
}

.portal-warning span {
  color: #5d4b13;
  font-weight: 800;
}

.portal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.portal-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  box-shadow: 0 18px 55px rgba(7, 31, 105, 0.1);
}

.portal-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--gold), var(--green));
}

.portal-label {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  color: white;
  background: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.portal-card h3 {
  margin-top: 28px;
}

.portal-card p {
  color: var(--muted);
  font-weight: 800;
}

.portal-card button:disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

.profile-feature,
.profile-cards article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 55px rgba(7, 31, 105, 0.1);
}

.profile-feature {
  display: grid;
  align-content: center;
  justify-items: start;
  padding: 30px;
  color: white;
  background:
    linear-gradient(145deg, rgba(7, 31, 105, 0.96), rgba(18, 60, 255, 0.82)),
    radial-gradient(circle at top right, rgba(255, 189, 18, 0.52), transparent 18rem);
}

.profile-feature::before,
.profile-cards article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--gold), var(--green));
}

.profile-feature img {
  width: 150px;
  margin-bottom: 22px;
  filter:
    drop-shadow(0 0 12px rgba(255, 189, 18, 0.86))
    drop-shadow(0 14px 24px rgba(0, 0, 0, 0.28));
}

.profile-feature h3 {
  color: white;
  font-size: 32px;
}

.profile-feature p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  font-weight: 800;
}

.profile-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.profile-cards article {
  min-height: 210px;
  padding: 24px;
}

.profile-cards span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--navy);
  background: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.profile-cards p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 800;
}

.strategy-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.strategy-strip span {
  padding: 12px 14px;
  border: 1px solid rgba(7, 31, 105, 0.12);
  border-radius: 999px;
  color: var(--navy);
  background: #fff;
  box-shadow: 0 10px 24px rgba(7, 31, 105, 0.07);
  font-weight: 900;
}

[contenteditable="true"] {
  outline: 3px solid rgba(255, 189, 18, 0.45);
  outline-offset: 5px;
  border-radius: 8px;
  cursor: text;
}

.profile-edit-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--green);
  font-weight: 900;
}

.upload-panel,
.gallery-shell {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 55px rgba(7, 31, 105, 0.1);
}

.upload-panel {
  display: grid;
  place-items: center;
  min-height: 430px;
  padding: 28px;
  text-align: center;
  border: 2px dashed rgba(18, 60, 255, 0.3);
  background:
    linear-gradient(180deg, rgba(255, 242, 197, 0.72), rgba(255, 255, 255, 0.95)),
    white;
}

.upload-panel.drag-over {
  border-color: var(--gold);
  background: var(--gold-soft);
}

.upload-panel input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.upload-icon {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  margin-bottom: 18px;
  border-radius: 22px;
  color: var(--navy);
  background: var(--gold);
  font-size: 54px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 16px 30px rgba(255, 189, 18, 0.38);
}

.upload-panel p {
  max-width: 300px;
  margin: 10px auto 0;
  color: var(--muted);
  font-weight: 700;
}

.upload-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.gallery-shell {
  padding: 24px;
}

.featured-photo {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: 380px;
  border-radius: 16px;
  color: var(--muted);
  background:
    linear-gradient(135deg, rgba(7, 31, 105, 0.08), rgba(255, 189, 18, 0.18)),
    #f8fbff;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.78);
}

.slide-stage {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  min-height: 380px;
}

.slide-stage img {
  width: 100%;
  height: 100%;
  max-height: 560px;
  object-fit: cover;
}

.slide-control {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  color: var(--navy);
  background: rgba(255, 189, 18, 0.94);
  box-shadow: 0 12px 24px rgba(7, 31, 105, 0.24);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  transform: translateY(-50%);
  transition: opacity 160ms ease, background 160ms ease;
}

.slide-control:hover {
  background: white;
}

.featured-photo:hover .slide-control,
.featured-photo:focus-within .slide-control {
  opacity: 1;
}

.slide-control.prev {
  left: 14px;
}

.slide-control.next {
  right: 14px;
}

.slide-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.slide-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #bcc8d8;
  cursor: pointer;
}

.slide-dot.active {
  width: 28px;
  border-radius: 999px;
  background: var(--gold);
}

.event-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.gallery-status {
  min-height: 22px;
  margin: 12px 0 0;
  color: var(--green);
  font-weight: 900;
}

.event-photo-button {
  overflow: hidden;
  aspect-ratio: 1;
  padding: 0;
  border: 3px solid transparent;
  border-radius: 12px;
  background: #eef3fb;
  cursor: pointer;
}

.event-photo-button.active {
  border-color: var(--gold);
}

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

.about-story p {
  margin: 0 0 18px;
  font-size: 20px;
  font-weight: 800;
}

.objective-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.objective-list article {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  box-shadow: 0 18px 45px rgba(7, 31, 105, 0.08);
}

.objective-list article::after {
  content: "";
  position: absolute;
  right: -18px;
  top: -18px;
  width: 78px;
  height: 78px;
  border: 14px solid rgba(255, 189, 18, 0.18);
  border-radius: 50%;
}

.objective-list span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 32px;
  border-radius: 12px;
  color: var(--navy);
  background: var(--gold);
  font-weight: 900;
}

.objective-list p {
  color: var(--muted);
  font-weight: 700;
}

.contact-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: clamp(24px, 5vw, 58px);
  padding: clamp(28px, 5vw, 58px);
  border-radius: 20px;
  color: white;
  background:
    linear-gradient(135deg, rgba(7, 31, 105, 0.96), rgba(18, 60, 255, 0.84)),
    radial-gradient(circle at 12% 18%, rgba(255, 189, 18, 0.54), transparent 24rem);
  box-shadow: var(--shadow);
}

.contact-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  pointer-events: none;
}

.contact-card > * {
  position: relative;
  z-index: 1;
}

.contact-card h2,
.contact-card h3 {
  color: white;
}

.contact-card p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.contact-card .eyebrow {
  color: var(--gold);
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.contact-details span {
  display: block;
  padding: 14px 16px;
  border-radius: 12px;
  color: var(--navy);
  background: var(--gold);
  font-weight: 900;
}

.contact-details strong {
  display: block;
}

.contact-form {
  border: 0;
  box-shadow: none;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 70px);
  color: white;
  background: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

@media (prefers-reduced-motion: no-preference) {
  .showcase-logo {
    animation: gentle-float 4.8s ease-in-out infinite;
  }

  @keyframes gentle-float {
    0%,
    100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-8px);
    }
  }
}

@media (max-width: 960px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav.open {
    display: flex;
  }

  .hero,
  .client-layout,
  .applicant-layout,
  .events-layout,
  .profile-layout,
  .employee-layout,
  .about-layout,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .benefit-panel {
    position: static;
  }

  .client-grid,
  .objective-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  main {
    width: min(100% - 24px, 1200px);
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .brand small {
    display: none;
  }

  h1 {
    font-size: 42px;
  }

  .hero-showcase {
    min-height: 430px;
  }

  .trust-band,
  .client-grid,
  .form-grid,
  .event-gallery,
  .profile-cards,
  .portal-grid,
  .objective-list {
    grid-template-columns: 1fr;
  }

  .featured-photo {
    min-height: 260px;
  }

  .slide-stage {
    min-height: 260px;
  }

  .site-footer {
    flex-direction: column;
  }
}
