/* ==========================================================
   Professional Business Portfolio - Stylesheet
   - Modern typography, blue/neutral palette
   - Flexbox + Grid layouts
   - Responsive + accessible focus states
   ========================================================== */

:root {
  --bg: #0b1220;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-2: rgba(255, 255, 255, 0.09);
  --card: rgba(255, 255, 255, 0.08);
  --card-border: rgba(255, 255, 255, 0.14);

  --text: #0f172a;
  --text-on-dark: rgba(255, 255, 255, 0.92);
  --muted: rgba(15, 23, 42, 0.7);
  --muted-on-dark: rgba(255, 255, 255, 0.7);

  --primary: #2563eb;
  --primary-2: #1d4ed8;
  --accent: #38bdf8;
  --ring: rgba(37, 99, 235, 0.35);

  --tint: #f5f7fb;
  --white: #ffffff;

  --shadow-sm: 0 6px 18px rgba(2, 6, 23, 0.08);
  --shadow-md: 0 18px 45px rgba(2, 6, 23, 0.14);

  --radius-sm: 12px;
  --radius: 16px;
  --radius-lg: 22px;

  --container: 1120px;
  --section-pad: clamp(56px, 6vw, 92px);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: var(--section-pad) 0;
}

.section--tint {
  background: linear-gradient(180deg, var(--tint), #ffffff);
}

.section__header {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.section__title {
  margin: 0;
  font-size: clamp(26px, 3vw, 34px);
  letter-spacing: -0.02em;
}

.section__subtitle {
  margin: 0;
  color: var(--muted);
  max-width: 68ch;
}

.muted {
  color: var(--muted);
}

/* =======================
   Header / Navigation
   ======================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(2, 6, 23, 0.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand__mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: radial-gradient(
      110% 110% at 0% 0%,
      rgba(56, 189, 248, 0.95),
      rgba(37, 99, 235, 0.85)
    ),
    #1d4ed8;
  box-shadow: var(--shadow-sm);
}

.brand__text {
  display: grid;
  line-height: 1.1;
}

.brand__title {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand__tagline {
  font-size: 13px;
  color: var(--muted);
}

.nav__menu {
  display: flex;
  align-items: center;
}

.nav__links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__link {
  display: inline-flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 12px;
  color: rgba(15, 23, 42, 0.86);
  transition: background 220ms var(--ease), color 220ms var(--ease), transform 220ms var(--ease);
}

.nav__link:hover {
  background: rgba(37, 99, 235, 0.08);
  color: rgba(15, 23, 42, 1);
  transform: translateY(-1px);
}

.nav__link--cta {
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.22);
}

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(2, 6, 23, 0.1);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 6px 16px rgba(2, 6, 23, 0.06);
  cursor: pointer;
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease);
}

.nav__toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(2, 6, 23, 0.1);
}

.nav__toggle-lines {
  display: block;
  width: 18px;
  height: 2px;
  background: rgba(15, 23, 42, 0.9);
  border-radius: 999px;
  margin: 0 auto;
  position: relative;
}

.nav__toggle-lines::before,
.nav__toggle-lines::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(15, 23, 42, 0.9);
  border-radius: 999px;
  transition: transform 200ms var(--ease), top 200ms var(--ease), opacity 200ms var(--ease);
}

.nav__toggle-lines::before {
  top: -6px;
}

.nav__toggle-lines::after {
  top: 6px;
}

.nav--open .nav__toggle-lines {
  background: transparent;
}

.nav--open .nav__toggle-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.nav--open .nav__toggle-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

/* =======================
   Buttons + Pills
   ======================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 650;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease),
    background 220ms var(--ease), border-color 220ms var(--ease);
  user-select: none;
}

.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.28);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 44px rgba(37, 99, 235, 0.34);
}

.btn--secondary {
  color: rgba(15, 23, 42, 0.92);
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(2, 6, 23, 0.12);
  box-shadow: 0 12px 28px rgba(2, 6, 23, 0.08);
}

.btn--secondary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 44px rgba(2, 6, 23, 0.14);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-on-dark);
}

/* =======================
   Hero
   ======================= */

.hero {
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--section-pad) + 18px);
  padding-bottom: calc(var(--section-pad) - 12px);
  background: radial-gradient(1200px 500px at 15% 20%, rgba(56, 189, 248, 0.18), transparent),
    radial-gradient(900px 500px at 85% 10%, rgba(37, 99, 235, 0.16), transparent),
    linear-gradient(180deg, #0b1220, #0a1630);
  color: var(--text-on-dark);
}

.hero__bg {
  position: absolute;
  inset: -1px;
  background:
    radial-gradient(850px 420px at 18% 10%, rgba(56, 189, 248, 0.16), transparent 60%),
    radial-gradient(900px 500px at 85% 0%, rgba(37, 99, 235, 0.18), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 55%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  display: grid;
  align-items: center;
  gap: 22px;
  grid-template-columns: 1.25fr 0.75fr;
}

.eyebrow {
  margin: 0 0 12px;
  font-weight: 650;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
}

.hero__title {
  margin: 0;
  font-size: clamp(32px, 4.3vw, 54px);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.hero__subtitle {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
  max-width: 62ch;
  font-size: 16px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.hero__metrics {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.metric {
  padding: 14px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.metric__value {
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 20px;
}

.metric__label {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12.5px;
  margin-top: 4px;
}

.hero-card {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.05));
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.32);
  overflow: hidden;
  transform: translateY(0);
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease);
}

.hero-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.38);
}

.hero-card__top {
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 800;
  background: radial-gradient(110% 110% at 0% 0%, rgba(56, 189, 248, 0.7), rgba(37, 99, 235, 0.55));
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-card__name {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero-card__role {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  margin-top: 2px;
}

.hero-card__body {
  padding: 18px;
  display: grid;
  gap: 14px;
}

.hero-card__note {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.hero-card__footer {
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-card__link {
  color: #fff;
  font-weight: 700;
  transition: opacity 200ms var(--ease);
}

.hero-card__link:hover {
  opacity: 0.85;
}

.hero-card__status {
  color: rgba(255, 255, 255, 0.72);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.15);
}

/* =======================
   Profile
   ======================= */

.profile {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  align-items: start;
}

.profile__heading {
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.01em;
}

.profile__content {
  display: grid;
  gap: 14px;
}

.profile__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 10px;
}

.info-card {
  border-radius: var(--radius);
  border: 1px solid rgba(2, 6, 23, 0.08);
  background: #fff;
  padding: 16px 16px;
  box-shadow: var(--shadow-sm);
}

.info-card__title {
  font-weight: 800;
  letter-spacing: -0.01em;
}

.info-card__text {
  margin: 8px 0 0;
  color: var(--muted);
}

.profile__highlights {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(37, 99, 235, 0.05);
  border: 1px solid rgba(37, 99, 235, 0.12);
}

.check__icon {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.9), rgba(37, 99, 235, 0.95));
  box-shadow: 0 10px 18px rgba(37, 99, 235, 0.16);
  position: relative;
}

.check__icon::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(#fff, #fff) center / 10px 2px no-repeat,
    linear-gradient(#fff, #fff) 55% 60% / 2px 8px no-repeat;
  transform: rotate(-45deg);
  opacity: 0.95;
}

.media-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(2, 6, 23, 0.08);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #fff;
}

.media-card__image {
  height: 260px;
  background:
    radial-gradient(700px 240px at 20% 20%, rgba(56, 189, 248, 0.24), transparent 55%),
    radial-gradient(900px 280px at 85% 10%, rgba(37, 99, 235, 0.2), transparent 55%),
    linear-gradient(135deg, rgba(2, 6, 23, 0.85), rgba(2, 6, 23, 0.62));
}

.media-card__caption {
  padding: 18px;
}

.media-card__kicker {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(15, 23, 42, 0.92);
  background: rgba(56, 189, 248, 0.18);
  border: 1px solid rgba(56, 189, 248, 0.25);
}

.media-card__title {
  margin-top: 10px;
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: 18px;
}

.media-card__text {
  margin: 8px 0 0;
}

/* =======================
   Cards (Services/Testimonials)
   ======================= */

.cards {
  display: grid;
  gap: 14px;
}

.cards--services {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards--testimonials {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid rgba(2, 6, 23, 0.08);
  padding: 18px;
  box-shadow: var(--shadow-sm);
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease),
    border-color 260ms var(--ease);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(37, 99, 235, 0.22);
}

.card__icon {
  width: 46px;
  height: 46px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.16);
}

.card__title {
  margin: 12px 0 0;
  font-size: 17px;
  letter-spacing: -0.02em;
}

.card__text {
  margin: 8px 0 0;
}

.icon {
  width: 20px;
  height: 20px;
  border-radius: 7px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.95), rgba(37, 99, 235, 0.95));
  position: relative;
}

.icon::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9), transparent 55%);
  opacity: 0.55;
}

.testimonial {
  position: relative;
}

.testimonial__quote {
  font-size: 44px;
  line-height: 1;
  color: rgba(37, 99, 235, 0.22);
  position: absolute;
  top: 10px;
  right: 14px;
  font-weight: 900;
}

.testimonial__text {
  margin: 0;
  padding-right: 18px;
}

.testimonial__meta {
  margin-top: 14px;
  display: grid;
  gap: 2px;
}

.testimonial__name {
  font-weight: 850;
  letter-spacing: -0.02em;
}

/* =======================
   Timeline
   ======================= */

.timeline {
  position: relative;
  display: grid;
  gap: 16px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.35), rgba(56, 189, 248, 0.18));
}

.timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 18px;
  padding-left: 36px;
}

.timeline__item::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 10px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #fff;
  border: 2px solid rgba(37, 99, 235, 0.55);
  box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.08);
}

.timeline__time {
  font-weight: 800;
  letter-spacing: -0.02em;
  color: rgba(15, 23, 42, 0.85);
}

.timeline__content {
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid rgba(2, 6, 23, 0.08);
  padding: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease);
}

.timeline__content:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.timeline__title {
  margin: 0;
  font-size: 17px;
  letter-spacing: -0.02em;
}

.timeline__org {
  margin-top: 4px;
}

.timeline__text {
  margin: 10px 0 0;
}

/* =======================
   Contact
   ======================= */

.contact {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: start;
}

.form {
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid rgba(2, 6, 23, 0.08);
  padding: 18px;
  box-shadow: var(--shadow-sm);
}

.form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field {
  display: grid;
  gap: 8px;
}

.field__label {
  font-weight: 700;
  font-size: 13px;
  color: rgba(15, 23, 42, 0.86);
}

.field__input {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(2, 6, 23, 0.12);
  padding: 12px 12px;
  background: rgba(255, 255, 255, 0.9);
  transition: box-shadow 220ms var(--ease), border-color 220ms var(--ease),
    transform 220ms var(--ease);
}

.field__input--textarea {
  resize: vertical;
  min-height: 140px;
}

.field__input:focus {
  outline: none;
  border-color: rgba(37, 99, 235, 0.45);
  box-shadow: 0 0 0 6px var(--ring);
}

.field--error .field__input {
  border-color: rgba(220, 38, 38, 0.55);
  box-shadow: 0 0 0 6px rgba(220, 38, 38, 0.12);
}

.field__error {
  min-height: 18px;
  font-size: 12px;
  color: rgba(220, 38, 38, 0.92);
}

.form__actions {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.form__hint {
  margin: 0;
  font-size: 12.5px;
}

.form__status {
  margin-top: 12px;
  min-height: 22px;
  font-weight: 650;
}

.panel {
  border-radius: var(--radius-lg);
  background:
    radial-gradient(800px 260px at 10% 20%, rgba(56, 189, 248, 0.16), transparent 55%),
    radial-gradient(900px 280px at 90% 10%, rgba(37, 99, 235, 0.12), transparent 60%),
    #0b1220;
  color: var(--text-on-dark);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px;
  box-shadow: 0 26px 70px rgba(2, 6, 23, 0.32);
}

.panel__title {
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.panel__text {
  margin: 10px 0 0;
  color: var(--muted-on-dark);
}

.panel__meta {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.meta {
  display: grid;
  gap: 2px;
}

.meta__label {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.meta__value {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
}

.meta__value:hover {
  opacity: 0.85;
}

.social {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.social__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  transition: transform 220ms var(--ease), background 220ms var(--ease),
    border-color 220ms var(--ease);
}

.social__link:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(56, 189, 248, 0.22);
}

.social__icon {
  width: 22px;
  height: 22px;
  border-radius: 9px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.95), rgba(37, 99, 235, 0.92));
}

.social__text {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

/* =======================
   Footer
   ======================= */

.footer {
  padding: 22px 0;
  border-top: 1px solid rgba(2, 6, 23, 0.08);
  background: #fff;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.footer__brand {
  font-weight: 900;
  letter-spacing: -0.02em;
}

.footer__right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__link {
  font-weight: 750;
  padding: 8px 10px;
  border-radius: 12px;
  transition: background 220ms var(--ease), transform 220ms var(--ease);
}

.footer__link:hover {
  background: rgba(37, 99, 235, 0.08);
  transform: translateY(-1px);
}

.footer__sep {
  color: rgba(15, 23, 42, 0.35);
}

/* =======================
   Accessibility / Focus
   ======================= */

:where(a, button, input, textarea):focus-visible {
  outline: none;
  box-shadow: 0 0 0 6px var(--ring);
  border-radius: 14px;
}

/* =======================
   Responsive
   ======================= */

@media (max-width: 1024px) {
  .hero__content {
    grid-template-columns: 1fr;
  }

  .hero__card {
    max-width: 520px;
  }

  .profile {
    grid-template-columns: 1fr;
  }

  .cards--services,
  .cards--testimonials {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .nav__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav__menu {
    position: fixed;
    top: 72px;
    left: 16px;
    right: 16px;
    border-radius: 18px;
    border: 1px solid rgba(2, 6, 23, 0.1);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 30px 90px rgba(2, 6, 23, 0.2);
    padding: 12px;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: transform 220ms var(--ease), opacity 220ms var(--ease);
  }

  .nav--open .nav__menu {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav__links {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

  .nav__link {
    justify-content: space-between;
    padding: 12px 12px;
  }

  .hero__metrics {
    grid-template-columns: 1fr;
  }

  .profile__grid {
    grid-template-columns: 1fr;
  }

  .form__row {
    grid-template-columns: 1fr;
  }

  .timeline__item {
    grid-template-columns: 1fr;
  }

  .timeline__time {
    font-size: 13px;
    color: rgba(15, 23, 42, 0.72);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition: none !important;
    animation: none !important;
  }
}



/* =======================
   Screenshot Slider
   ======================= */

/* .slider {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: var(--shadow-md);
}

.slides {
  position: relative;
  height: 400px;
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.slide.active {
  opacity: 1;
} */

/* =======================
   PREMIUM SLIDER
   ======================= */

.slider {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: var(--shadow-md);
}

.slides {
  display: flex;
  transition: transform 0.6s ease;
}

.slide {
  min-width: 100%;
  height: 400px;
  object-fit: cover;
}

/* Buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: white;
  border: none;
  padding: 10px 14px;
  cursor: pointer;
  border-radius: 10px;
  font-size: 18px;
}

.prev { left: 10px; }
.next { right: 10px; }

/* Dots */
.dots {
  position: absolute;
  bottom: 12px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.dots span {
  width: 10px;
  height: 10px;
  background: white;
  opacity: 0.5;
  border-radius: 50%;
  cursor: pointer;
}

.dots .active {
  opacity: 1;
  background: #2563eb;
}