:root {
  --navy: #06132f;
  --navy-2: #081a3f;
  --ink: #07153b;
  --muted: #607099;
  --line: #dfe7f6;
  --soft: #f6f9ff;
  --card: #ffffff;
  --blue: #2367ff;
  --blue-2: #6d39ff;
  --cyan: #50c8ff;
  --shadow: 0 20px 45px rgba(9, 28, 76, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Cairo", Tahoma, Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 18%, rgba(56, 109, 255, 0.08), transparent 24rem),
    linear-gradient(#f8fbff 0, #fff 58%, #f8fbff 100%);
  letter-spacing: 0;
  overflow-x: hidden;
}

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

.is-hidden {
  display: none !important;
}

.site-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 100;
  max-width: min(360px, calc(100vw - 40px));
  padding: 14px 18px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #06215a, #2367ff);
  box-shadow: 0 18px 36px rgba(5, 20, 58, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

img,
svg {
  display: block;
}

.shell {
  width: min(100% - 76px, 1320px);
  margin-inline: auto;
}

.hero {
  position: relative;
  min-height: 520px;
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(circle at 23% 45%, rgba(50, 111, 255, 0.34), transparent 23rem),
    radial-gradient(circle at 78% 15%, rgba(91, 58, 255, 0.2), transparent 22rem),
    linear-gradient(100deg, #071536 0%, #06122e 48%, #02091c 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background-image:
    linear-gradient(115deg, transparent 0 45%, rgba(55, 119, 255, 0.16) 45.2% 45.6%, transparent 45.8%),
    radial-gradient(circle at 7% 28%, #5d8fff 0 1px, transparent 2px),
    radial-gradient(circle at 14% 18%, #5d8fff 0 1px, transparent 2px),
    radial-gradient(circle at 29% 23%, #5d8fff 0 1px, transparent 2px),
    radial-gradient(circle at 37% 35%, #5d8fff 0 1px, transparent 2px),
    radial-gradient(circle at 54% 22%, #5d8fff 0 1px, transparent 2px);
  pointer-events: none;
}

.page-contact .hero::after,
.page-library .hero::after,
.page-order .hero::after,
.page-majors .hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
  opacity: 0.98;
}

.page-contact .hero::after {
  left: 58px;
  top: 88px;
  width: 360px;
  height: 165px;
  background: url("ChatGPT Image May 3, 2026, 06_11_06 AM.png") left -32px top -82px / 941px auto no-repeat;
}

.page-library .hero::after {
  left: 42px;
  top: 88px;
  width: 360px;
  height: 220px;
  background: url("ChatGPT Image May 3, 2026, 06_11_13 AM.png") left -22px top -82px / 941px auto no-repeat;
}

.page-order .hero::after {
  left: 36px;
  top: 88px;
  width: 360px;
  height: 230px;
  background: url("ChatGPT Image May 3, 2026, 06_11_18 AM.png") left -34px top -82px / 941px auto no-repeat;
}

.page-majors .hero::after {
  left: 42px;
  top: 82px;
  width: 410px;
  height: 270px;
  background: url("ChatGPT Image May 3, 2026, 06_11_27 AM.png") left -28px top -78px / 941px auto no-repeat;
}

.nav {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.03));
}

.brand-mark svg {
  width: 27px;
  height: 27px;
  stroke-width: 1.9;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  font-size: 25px;
  font-weight: 900;
}

.brand small {
  margin-top: 2px;
  font-size: 13px;
  font-weight: 700;
  opacity: 0.9;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.86);
}

.nav-links a {
  position: relative;
  padding-block: 8px;
  white-space: nowrap;
}

@media (max-width: 1000px) and (min-width: 901px) {
  .shell {
    width: min(100% - 40px, 1080px);
  }

  .nav {
    gap: 12px;
    min-height: 70px;
  }

  .nav-actions {
    gap: 8px;
  }

  .nav-actions .ghost-btn {
    display: none;
  }

  .nav-links {
    gap: 12px;
    font-size: 12px;
  }

  .brand strong {
    font-size: 21px;
  }

  .brand small {
    font-size: 11px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .primary-btn.small {
    min-height: 40px;
    padding-inline: 16px;
    font-size: 12px;
  }
}

.nav-links .active {
  color: #55a6ff;
}

.nav-links .active::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  height: 2px;
  background: #2589ff;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  direction: ltr;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 999px;
  transition: transform 220ms ease, opacity 220ms ease;
}

.nav.is-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav.is-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav.is-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

button,
.primary-btn,
.secondary-btn,
.ghost-btn {
  font: inherit;
}

.primary-btn,
.secondary-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border-radius: var(--radius);
  font-weight: 800;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.primary-btn {
  padding: 0 26px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 14px 30px rgba(56, 84, 255, 0.32);
}

.primary-btn.small {
  min-height: 44px;
  padding-inline: 22px;
  font-size: 13px;
}

.secondary-btn {
  padding: 0 28px;
  color: #173366;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 30px rgba(2, 10, 28, 0.18);
}

.ghost-btn {
  min-height: 36px;
  padding: 0;
  color: #fff;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.primary-btn svg,
.secondary-btn svg,
.ghost-btn svg {
  width: 18px;
  height: 18px;
}

.primary-btn:hover,
.secondary-btn:hover {
  transform: translateY(-2px);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: center;
  gap: 52px;
  padding: 22px 0 86px;
}

.hero-copy {
  direction: rtl;
  justify-self: end;
  width: min(100%, 620px);
  max-width: 620px;
  text-align: right;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 18px;
  color: #7ebcff;
  font-size: 14px;
  font-weight: 800;
  border: 1px solid rgba(91, 151, 255, 0.55);
  border-radius: 999px;
  background: rgba(16, 40, 95, 0.58);
}

h1,
h2,
h3,
p {
  margin: 0;
}

.hero h1 {
  margin-top: 26px;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.32;
  font-weight: 900;
}

.hero h1::first-line {
  color: #fff;
}

.hero h1 {
  text-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
}

.hero h1 span {
  color: var(--blue-2);
}

.hero-copy p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.9;
}

.degree-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
  margin-top: 20px;
}

.degree-pills span {
  padding: 5px 15px 7px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 600;
}

.trust-row span::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-inline: 7px;
  vertical-align: middle;
  border-radius: 50%;
  background: #8fb9ff;
}

.hero-visual {
  position: relative;
  min-height: 405px;
  direction: rtl;
}

.hero-photo {
  position: absolute;
  inset: 12px 20px 0 0;
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(5, 13, 33, 0.18), rgba(5, 13, 33, 0.92) 78%),
    url("ChatGPT Image May 3, 2026, 06_11_48 AM.png") left -6px top -18px / 940px auto no-repeat;
  filter: saturate(1.04);
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 13, 33, 0.45), transparent 45%);
}

.metric-card {
  position: absolute;
  z-index: 2;
  color: #eaf2ff;
  border: 1px solid rgba(116, 159, 255, 0.36);
  border-radius: var(--radius);
  background: rgba(17, 37, 83, 0.62);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

.metric-card small,
.metric-card span {
  display: block;
}

.metric-card small {
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 800;
}

.metric-card.progress {
  top: 8px;
  right: 160px;
  width: 142px;
  padding: 13px;
}

.metric-card.progress b {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 2px auto 6px;
  font-size: 15px;
  border: 8px solid #466bff;
  border-left-color: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.metric-card.progress span {
  font-size: 10px;
  text-align: center;
}

.metric-card.bars {
  top: 78px;
  left: 120px;
  width: 150px;
  padding: 14px;
}

.bars-chart {
  display: flex;
  align-items: end;
  gap: 7px;
  height: 58px;
  direction: ltr;
}

.bars-chart span {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(#8a55ff, #18d6ff);
}

.bars-chart span:nth-child(1) { height: 34%; }
.bars-chart span:nth-child(2) { height: 68%; }
.bars-chart span:nth-child(3) { height: 48%; }
.bars-chart span:nth-child(4) { height: 84%; }
.bars-chart span:nth-child(5) { height: 58%; }

.metric-card.video {
  right: 18px;
  bottom: 68px;
  width: 260px;
  min-height: 132px;
  padding: 16px;
  background:
    linear-gradient(rgba(23, 48, 103, 0.72), rgba(23, 48, 103, 0.72)),
    url("ChatGPT Image May 3, 2026, 06_11_48 AM.png") left -310px top -1125px / 940px auto no-repeat;
}

.metric-card.video svg {
  width: 48px;
  height: 48px;
  margin: 18px auto 6px;
  padding: 12px;
  color: #fff;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  fill: rgba(255, 255, 255, 0.85);
}

.metric-card.video span {
  text-align: left;
  font-size: 12px;
}

.metric-card.plan {
  left: 176px;
  bottom: 24px;
  width: 190px;
  padding: 16px;
}

.metric-card.plan span {
  position: relative;
  margin-top: 9px;
  padding-right: 18px;
  color: #d8e4ff;
  font-size: 11px;
}

.metric-card.plan span::before {
  content: "";
  position: absolute;
  right: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #40e088;
}

.stats {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: -44px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow);
}

.stats article {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 7px 14px;
  min-height: 60px;
  padding-inline: 22px;
  border-left: 1px solid #edf2fb;
}

.stats article:first-child {
  border-left: 0;
}

.stats svg {
  grid-row: span 2;
  width: 52px;
  height: 52px;
  padding: 12px;
  color: #102354;
  border-radius: 50%;
  background: #f1f5ff;
}

.stats b {
  color: #365cff;
  font-size: 19px;
  line-height: 1;
}

.stats span {
  color: #64739a;
  font-size: 12px;
  font-weight: 700;
}

.section {
  padding-top: 30px;
}

.section-heading {
  margin-bottom: 22px;
  text-align: center;
}

.section-heading h2,
.panel-title h2,
.video-copy h2,
.cta h2 {
  color: #092152;
  font-size: 31px;
  line-height: 1.25;
  font-weight: 900;
}

.section-heading p,
.panel-title p,
.video-copy p,
.cta p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
}

.section-heading.compact {
  margin-bottom: 16px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.service-card {
  min-height: 178px;
  padding: 24px 20px 18px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 30px rgba(20, 45, 95, 0.06);
}

.service-card > svg {
  width: 54px;
  height: 54px;
  margin: 0 auto 15px;
  color: #4c57ff;
  stroke-width: 1.7;
}

.service-card h3 {
  color: #10265a;
  font-size: 16px;
  font-weight: 900;
}

.service-card p {
  min-height: 44px;
  margin-top: 8px;
  color: #68769a;
  font-size: 12px;
  line-height: 1.7;
  font-weight: 600;
}

.service-card a,
.media-card a,
.panel-title > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 12px;
  color: #3265ff;
  font-size: 12px;
  font-weight: 800;
}

.service-card a svg {
  width: 15px;
  height: 15px;
}

.major-grid {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 10px;
}

.major-grid span {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 74px;
  padding: 10px 8px;
  color: #10265a;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 9px 24px rgba(20, 45, 95, 0.04);
}

.major-grid svg {
  width: 30px;
  height: 30px;
  color: #4768ff;
  stroke-width: 1.8;
}

.workflow {
  margin-top: 22px;
  padding: 18px 28px 28px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 14px 36px rgba(20, 45, 95, 0.06);
}

.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 16px;
}

.steps article {
  text-align: center;
}

.steps article > svg {
  width: 56px;
  height: 56px;
  margin: 0 auto 12px;
  padding: 13px;
  color: #365cff;
  border: 1px solid #e7edfb;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 18px rgba(20, 45, 95, 0.08);
}

.steps h3 {
  color: #10265a;
  font-size: 14px;
  font-weight: 900;
}

.steps p {
  margin-top: 5px;
  color: #677698;
  font-size: 11px;
  line-height: 1.6;
  font-weight: 600;
}

.step-arrow {
  display: grid;
  place-items: center;
  min-height: 54px;
  color: #365cff;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
  direction: ltr;
}

.panel {
  direction: rtl;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 32px rgba(20, 45, 95, 0.06);
}

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

.panel-title h2 {
  font-size: 25px;
}

.panel-title p {
  font-size: 13px;
}

.panel-title > a {
  min-width: 94px;
  justify-content: center;
  margin: 4px 0 0;
  min-height: 36px;
  border: 1px solid #e1e8f8;
  border-radius: var(--radius);
  background: #fff;
}

.card-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.media-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #e1e8f6;
  border-radius: var(--radius);
  background: #fff;
}

.thumb {
  position: relative;
  height: 116px;
  background-image: url("ChatGPT Image May 3, 2026, 06_11_48 AM.png");
  background-size: 940px auto;
  background-repeat: no-repeat;
}

.thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 19, 47, 0.1), rgba(7, 19, 47, 0.18));
}

.thumb span {
  position: absolute;
  z-index: 2;
  top: 7px;
  right: 8px;
  padding: 4px 9px;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  border-radius: 999px;
  background: linear-gradient(135deg, #2089ff, #5d45ff);
}

.crop-one { background-position: left -40px top -980px; }
.crop-two { background-position: left -230px top -980px; }
.crop-three { background-position: left -412px top -982px; }
.crop-four { background-position: left -520px top -978px; }
.crop-five { background-position: left -665px top -978px; }
.crop-six { background-position: left -790px top -978px; }

.media-card h3 {
  padding: 11px 12px 0;
  color: #10265a;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 900;
}

.media-card p {
  padding: 4px 12px 0;
  color: #68769a;
  font-size: 11px;
  font-weight: 700;
}

.media-card a {
  margin: 8px 12px 13px;
}

.video-section {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: 16px;
  margin-top: 16px;
  direction: ltr;
}

.video-preview,
.video-copy {
  direction: rtl;
  min-height: 248px;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(20, 45, 95, 0.06);
}

.video-preview {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 34px;
  overflow: hidden;
  padding: 34px 44px 58px;
  color: #fff;
  background:
    linear-gradient(110deg, rgba(9, 25, 62, 0.97), rgba(16, 46, 108, 0.82)),
    url("ChatGPT Image May 3, 2026, 06_11_48 AM.png") left -10px top -1128px / 940px auto no-repeat;
}

.video-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image:
    radial-gradient(circle at 22% 28%, #7da8ff 0 1px, transparent 2px),
    radial-gradient(circle at 42% 16%, #7da8ff 0 1px, transparent 2px),
    radial-gradient(circle at 78% 36%, #7da8ff 0 1px, transparent 2px);
}

.video-brand,
.video-preview > div:not(.video-controls) {
  position: relative;
  z-index: 1;
}

.video-brand {
  display: grid;
  justify-items: center;
  gap: 5px;
}

.video-brand .brand-mark {
  width: 64px;
  height: 64px;
}

.video-brand strong {
  font-size: 27px;
  line-height: 1;
}

.video-brand small {
  font-size: 13px;
  font-weight: 800;
}

.video-preview h2 {
  font-size: 29px;
  font-weight: 900;
}

.video-preview p {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  font-weight: 700;
}

.video-controls {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr auto auto auto;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 0 16px;
  background: rgba(2, 9, 27, 0.78);
}

.video-controls svg {
  width: 18px;
  height: 18px;
}

.video-controls span {
  direction: ltr;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  white-space: nowrap;
}

.progress-line {
  position: relative;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.progress-line::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 16%;
  border-radius: inherit;
  background: #ff3457;
}

.video-copy {
  padding: 34px 40px;
  background: #fff;
}

.video-copy p {
  margin-top: 10px;
  line-height: 1.8;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 24px 0 22px;
}

.feature-row span {
  display: grid;
  justify-items: center;
  gap: 8px;
  color: #42547f;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.feature-row svg {
  width: 44px;
  height: 44px;
  padding: 10px;
  color: #3265ff;
  border: 1px solid #e6edfb;
  border-radius: 50%;
}

.testimonials {
  margin-top: 16px;
  padding: 18px 22px 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.86);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.testimonial-grid article {
  position: relative;
  min-height: 126px;
  padding: 18px 86px 16px 18px;
  border: 1px solid #e1e8f6;
  border-radius: var(--radius);
  background: #fff;
}

.testimonial-grid img {
  position: absolute;
  top: 20px;
  right: 18px;
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 50%;
}

.testimonial-grid p {
  color: #677698;
  font-size: 12px;
  line-height: 1.8;
  font-weight: 600;
}

.testimonial-grid b {
  display: inline-block;
  margin-top: 10px;
  color: #42547f;
  font-size: 12px;
}

.testimonial-grid span {
  display: block;
  margin-top: 4px;
  color: #ffb21f;
  letter-spacing: 2px;
  direction: ltr;
}

.cta {
  display: grid;
  grid-template-columns: 280px 1fr auto;
  align-items: center;
  gap: 32px;
  min-height: 116px;
  margin-top: 18px;
  padding: 14px 38px;
  color: #fff;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
  background: linear-gradient(135deg, #1f72ff, #7135ff);
  direction: ltr;
}

.cta h2,
.cta p {
  color: #fff;
  direction: rtl;
}

.cta h2 {
  font-size: 27px;
}

.cta p {
  opacity: 0.88;
}

.cta-art {
  height: 96px;
  background:
    url("ChatGPT Image May 3, 2026, 06_11_48 AM.png") left -76px top -1476px / 940px auto no-repeat;
}

.cta-actions {
  display: flex;
  gap: 12px;
  direction: rtl;
}

.primary-btn.light {
  box-shadow: none;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.secondary-btn.light {
  color: #fff;
  background: transparent;
  box-shadow: none;
  border-color: rgba(255, 255, 255, 0.46);
}

.footer {
  color: rgba(255, 255, 255, 0.82);
  background:
    radial-gradient(circle at 20% 0, rgba(41, 107, 255, 0.24), transparent 22rem),
    linear-gradient(100deg, #06132f, #031028);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1.1fr;
  gap: 60px;
  padding: 34px 0 22px;
}

.footer h3 {
  margin: 0 0 13px;
  color: #fff;
  font-size: 15px;
}

.footer a,
.footer p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 600;
}

.footer-brand p {
  display: block;
  max-width: 320px;
  margin-top: 15px;
  line-height: 1.8;
}

.footer svg {
  width: 16px;
  height: 16px;
}

.socials {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
  font-weight: 600;
}

.footer-bottom div {
  display: flex;
  gap: 10px;
}

.footer-bottom a {
  min-height: 28px;
  margin: 0;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
}

/* ===== Projects listing page ===== */
.hero-projects {
  min-height: auto;
  padding-bottom: 52px;
}

.projects-hero {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: center;
  direction: ltr;
  padding: 8px 0 0;
}

.ph-art {
  position: relative;
  min-height: 245px;
  border-radius: 8px;
  border: 0;
  background:
    linear-gradient(90deg, rgba(5, 17, 47, 0), rgba(5, 17, 47, 0.18)),
    url("ChatGPT Image May 3, 2026, 06_11_43 AM.png") left -26px top -70px / 900px auto no-repeat;
  overflow: hidden;
}

.ph-art::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.4;
  background-image:
    radial-gradient(circle at 14% 22%, #82c9ff 0 1px, transparent 2px),
    radial-gradient(circle at 32% 36%, #82c9ff 0 1px, transparent 2px),
    radial-gradient(circle at 58% 18%, #82c9ff 0 1px, transparent 2px),
    radial-gradient(circle at 76% 32%, #82c9ff 0 1px, transparent 2px),
    radial-gradient(circle at 22% 68%, #82c9ff 0 1px, transparent 2px),
    radial-gradient(circle at 80% 78%, #82c9ff 0 1px, transparent 2px);
}

.ph-stack {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.page-projects .ph-stack {
  display: none;
}

.ph-book {
  position: absolute;
  width: 130px;
  height: 170px;
  border-radius: 8px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.ph-book-1 {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  background: linear-gradient(150deg, #2367ff 0%, #6d39ff 100%);
  z-index: 3;
}

.ph-book-1::before,
.ph-book-1::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 2px;
}

.ph-book-1::before {
  inset: 22px 16px auto 16px;
  height: 6px;
}

.ph-book-1::after {
  inset: 38px 16px 16px 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0 4px, transparent 4px 12px) 0 0/100% 12px;
  opacity: 0.5;
}

.ph-book-2 {
  left: 56%;
  top: 56%;
  transform: translate(-50%, -50%) rotate(-12deg);
  background: linear-gradient(150deg, #1632a3 0%, #07173f 100%);
  z-index: 2;
  opacity: 0.85;
}

.ph-book-3 {
  left: 44%;
  top: 44%;
  transform: translate(-50%, -50%) rotate(10deg);
  background: linear-gradient(150deg, #50c8ff 0%, #2367ff 100%);
  z-index: 1;
  opacity: 0.65;
}

.ph-content {
  position: relative;
  z-index: 1;
  align-self: center;
  direction: rtl;
}

.hero-projects .breadcrumb {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
}

.ph-content h1 {
  margin: 10px 0 2px;
  color: #fff;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.28;
  font-weight: 900;
}

.ph-content h1 span {
  background: linear-gradient(120deg, #6db1ff 0%, #b58cff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ph-tagline {
  color: #7d62ff;
  font-size: 24px;
  font-weight: 800;
}

.ph-desc {
  margin-top: 8px;
  max-width: 580px;
  color: rgba(220, 232, 255, 0.84);
  font-size: 14px;
  line-height: 1.65;
}

.ph-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.ph-tags span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  font-size: 11.5px;
  font-weight: 700;
  color: rgba(220, 232, 255, 0.92);
  border: 1px solid rgba(95, 142, 255, 0.32);
  border-radius: 999px;
  background: rgba(28, 64, 142, 0.4);
}

.ph-tags svg {
  width: 14px;
  height: 14px;
  color: #4dffe8;
}

.projects-filter-bar {
  position: relative;
  z-index: 6;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) repeat(5, 104px) 118px;
  gap: 10px;
  align-items: center;
  min-height: 72px;
  margin-top: -34px;
  padding: 15px;
  border: 1px solid #dfe7f6;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(8, 24, 70, 0.16);
}

.projects-search {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid #e1e8f5;
  border-radius: 8px;
  background: #fff;
}

.projects-search svg {
  width: 19px;
  height: 19px;
  color: #63749e;
}

.projects-search input {
  width: 100%;
  border: 0;
  outline: 0;
  color: #10265a;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
}

.projects-filter-bar select,
.advanced-filter {
  min-height: 44px;
  border: 1px solid #e1e8f5;
  border-radius: 8px;
  background: #fff;
  color: #162b64;
  font: inherit;
  font-size: 12.5px;
  font-weight: 800;
}

.projects-filter-bar select {
  padding: 0 10px;
}

.advanced-filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: #fff;
  border-color: #071a45;
  background: #071a45;
  cursor: pointer;
}

.advanced-filter svg {
  width: 15px;
  height: 15px;
}

/* Featured banner with carousel */
.featured-banner-projects {
  position: relative;
  z-index: 5;
  margin-top: 18px;
  padding: 18px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 14% 0%, rgba(125, 56, 255, 0.4), transparent 16rem),
    linear-gradient(135deg, #07173f 0%, #050f2c 100%);
  border: 1px solid rgba(78, 184, 255, 0.18);
  box-shadow: 0 24px 60px rgba(2, 9, 27, 0.42);
  color: #fff;
  overflow: hidden;
}

.fbp-wrap {
  display: grid;
  grid-template-columns: 1.08fr 1.35fr 150px;
  gap: 20px;
  align-items: center;
}

.fbp-image {
  position: relative;
  height: 170px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(78, 184, 255, 0.22);
  background:
    linear-gradient(180deg, rgba(7, 21, 54, 0.06), rgba(7, 21, 54, 0.5));
}

.fbp-screen {
  position: absolute;
  inset: 14px;
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(7, 21, 54, 0.08), rgba(7, 21, 54, 0.55)),
    url("ChatGPT Image May 3, 2026, 06_11_39 AM.png") center 12% / cover no-repeat;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.42);
}

.fbp-image::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    radial-gradient(circle at 18% 24%, #82c9ff 0 1px, transparent 2px),
    radial-gradient(circle at 72% 32%, #82c9ff 0 1px, transparent 2px),
    radial-gradient(circle at 86% 76%, #82c9ff 0 1px, transparent 2px),
    radial-gradient(circle at 22% 78%, #82c9ff 0 1px, transparent 2px);
}

.fbp-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  transform: translate(-50%, -50%);
  color: #fff;
  border-radius: 50%;
  background: rgba(35, 103, 255, 0.86);
  border: 2px solid rgba(255, 255, 255, 0.42);
  box-shadow: 0 14px 28px rgba(35, 103, 255, 0.48);
  cursor: pointer;
}

.fbp-icon svg {
  width: 22px;
  height: 22px;
  margin-right: -2px;
}

.fbp-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff6a3d, #ffd86b);
}

.fbp-info {
  display: grid;
  align-content: center;
  gap: 8px;
}

.fbp-info .fp-tag {
  align-self: start;
}

.fbp-info h2 {
  margin: 6px 0 8px;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.4;
}

.fbp-info p {
  color: rgba(220, 232, 255, 0.82);
  font-size: 13px;
  line-height: 1.75;
}

.fbp-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(220, 232, 255, 0.78);
}

.fbp-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.fbp-meta svg {
  width: 14px;
  height: 14px;
  color: #7ebcff;
}

.fbp-info > .primary-btn {
  margin-top: 14px;
  align-self: start;
}

.fbp-price {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 4px;
  padding: 22px 26px;
  border: 1px solid rgba(78, 184, 255, 0.22);
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 0%, rgba(35, 103, 255, 0.32), transparent 60%),
    rgba(255, 255, 255, 0.04);
  text-align: center;
}

.fbp-price > span {
  color: rgba(220, 232, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
}

.fbp-price > b {
  color: #fff;
  font-size: 32px;
  line-height: 1;
  font-weight: 900;
}

.fbp-price > b em {
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  color: rgba(220, 232, 255, 0.78);
  margin-inline-start: 4px;
}

.fbp-price > small {
  color: rgba(220, 232, 255, 0.66);
  font-size: 11px;
  font-weight: 600;
  text-align: center;
}

.fbp-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.fbp-arrow {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: background 180ms;
}

.fbp-arrow:hover {
  background: rgba(255, 255, 255, 0.14);
}

.fbp-arrow svg {
  width: 16px;
  height: 16px;
}

.fbp-dots {
  display: flex;
  gap: 6px;
}

.fbp-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  transition: width 220ms, background 220ms;
}

.fbp-dots span.active {
  width: 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2367ff, #6d39ff);
}

/* Toolbar */
.projects-toolbar-2 {
  display: flex;
  align-items: end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

.pt-title h2 {
  color: #092152;
  font-size: 26px;
  font-weight: 900;
}

.pt-title p {
  margin-top: 4px;
  color: #65749a;
  font-size: 13.5px;
  font-weight: 600;
}

.pt-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.pt-tabs {
  display: flex;
  gap: 4px;
  padding: 4px;
  border-radius: 12px;
  background: #eef4ff;
}

.pt-tabs button {
  padding: 8px 16px;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  color: #1a3071;
  border: 0;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}

.pt-tabs button.active {
  color: #fff;
  background: linear-gradient(135deg, #2367ff, #6d39ff);
  box-shadow: 0 6px 16px rgba(56, 84, 255, 0.28);
}

.pt-sort {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 800;
  color: #1a3071;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.pt-sort svg {
  width: 16px;
  height: 16px;
  color: #2367ff;
}

.pt-sort select {
  padding: 0;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  color: #1a3071;
  border: 0;
  background: transparent;
  outline: none;
}

/* Project cards grid */
.proj-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.proj-card {
  display: grid;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(8, 24, 70, 0.06);
  transition: transform 220ms, box-shadow 220ms;
}

.proj-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 50px rgba(8, 24, 70, 0.14);
}

.pc-thumb {
  position: relative;
  height: 160px;
  background-image: url("ChatGPT Image May 3, 2026, 06_11_48 AM.png");
  background-size: 940px auto;
  background-repeat: no-repeat;
}

.pc-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 19, 47, 0.05), rgba(7, 19, 47, 0.32));
}

.pc-badge {
  position: absolute;
  z-index: 2;
  top: 10px;
  right: 10px;
  padding: 4px 10px;
  color: #fff;
  font-size: 10.5px;
  font-weight: 800;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff6a3d, #ffd86b);
}

.pc-badge.new {
  background: linear-gradient(135deg, #2089ff, #5d45ff);
}

.pc-fav {
  position: absolute;
  z-index: 2;
  top: 10px;
  left: 10px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: #fff;
  border-radius: 50%;
  background: rgba(7, 19, 47, 0.55);
  backdrop-filter: blur(6px);
  cursor: pointer;
  transition: background 180ms, color 180ms;
}

.pc-fav:hover {
  color: #ff5a8a;
  background: rgba(7, 19, 47, 0.78);
}

.pc-fav svg {
  width: 16px;
  height: 16px;
}

.pc-body {
  display: grid;
  gap: 6px;
  padding: 16px 16px 18px;
}

.pc-cat {
  font-size: 11.5px;
  font-weight: 800;
  color: #2367ff;
  letter-spacing: 0.2px;
}

.pc-body h3 {
  color: #10265a;
  font-size: 14.5px;
  line-height: 1.5;
  font-weight: 900;
  min-height: 44px;
}

.pc-rate {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-top: 4px;
}

.pc-rate svg {
  width: 14px;
  height: 14px;
  color: #ffb21f;
  fill: #ffb21f;
}

.pc-rate small {
  margin-inline-start: 6px;
  color: #65749a;
  font-size: 11.5px;
  font-weight: 700;
}

.pc-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px solid #edf3fc;
}

.pc-price b {
  color: #0e2a6c;
  font-size: 18px;
  font-weight: 900;
}

.pc-price em {
  font-style: normal;
  margin-inline-start: 4px;
  color: #65749a;
  font-size: 12px;
  font-weight: 700;
}

.pc-foot .primary-btn.small {
  min-height: 36px;
  padding: 0 16px;
  font-size: 12px;
  border-radius: 8px;
}

.pagination-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 26px;
}

.pagination-row .pagination {
  margin-top: 0;
}

/* Quick categories row */
.quick-categories {
  margin-top: 36px;
}

.qc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.qc-card {
  display: grid;
  align-items: center;
  gap: 6px;
  padding: 22px 20px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 0%, rgba(35, 103, 255, 0.1), transparent 60%),
    #fff;
  box-shadow: 0 12px 28px rgba(8, 24, 70, 0.06);
  transition: transform 220ms, box-shadow 220ms, border-color 220ms;
}

.qc-card:hover {
  transform: translateY(-4px);
  border-color: rgba(35, 103, 255, 0.32);
  box-shadow: 0 22px 44px rgba(8, 24, 70, 0.12);
}

.qc-card svg {
  width: 52px;
  height: 52px;
  margin: 0 auto 10px;
  padding: 14px;
  color: #fff;
  border-radius: 14px;
  background: linear-gradient(135deg, #2367ff, #6d39ff);
  box-shadow: 0 10px 22px rgba(56, 84, 255, 0.28);
}

.qc-card h3 {
  color: #10265a;
  font-size: 15px;
  font-weight: 900;
}

.qc-card small {
  color: #65749a;
  font-size: 11.5px;
  font-weight: 700;
}

.why-projects-2 {
  margin-top: 36px;
}

/* Bottom CTA strip with image */
.proj-bottom-cta {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  align-items: center;
  gap: 26px;
  margin-top: 28px;
  padding: 26px 32px;
  border-radius: 18px 18px 0 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(56, 109, 255, 0.32), transparent 16rem),
    linear-gradient(135deg, #07173f 0%, #1a1655 60%, #0a1340 100%);
  color: #fff;
  overflow: hidden;
}

.pbc-art {
  height: 110px;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(35, 103, 255, 0.22), rgba(125, 56, 255, 0.22)),
    url("ChatGPT Image May 3, 2026, 06_11_43 AM.png") right -20px center / 360px auto no-repeat;
  border: 1px solid rgba(78, 184, 255, 0.22);
}

.pbc-content h2 {
  color: #fff;
  font-size: 24px;
  font-weight: 900;
}

.pbc-content p {
  margin-top: 6px;
  color: rgba(220, 232, 255, 0.78);
  font-size: 14px;
  line-height: 1.7;
}

.pbc-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ===== Project detail page (cyan/teal theme) ===== */
.page-project {
  --teal: #2ee3d6;
  --teal-2: #1ab9b9;
  --teal-soft: #d6fbf6;
}

.hero-project {
  min-height: auto;
  padding-bottom: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(46, 227, 214, 0.18), transparent 24rem),
    radial-gradient(circle at 78% 12%, rgba(91, 58, 255, 0.18), transparent 22rem),
    linear-gradient(160deg, #061334 0%, #04102b 50%, #020a1e 100%);
}

.teal-btn,
.primary-btn.teal,
a.primary-btn.teal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 22px;
  font-weight: 800;
  color: #06222a;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, #3FE0CD 0%, #1ab9b9 100%);
  box-shadow: 0 14px 30px rgba(31, 188, 178, 0.36);
  transition: transform 180ms, box-shadow 180ms;
}

.teal-btn:hover,
a.primary-btn.teal:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(31, 188, 178, 0.46);
}

.primary-btn.small.teal {
  min-height: 40px;
  padding: 0 18px;
  font-size: 13px;
  border-radius: 10px;
}

.teal-btn svg,
.primary-btn.teal svg {
  width: 16px;
  height: 16px;
}

.ghost-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 22px;
  color: #fff;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  transition: background 180ms, border-color 180ms;
}

.ghost-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
}

.ghost-light svg {
  width: 16px;
  height: 16px;
}

.project-hero {
  position: relative;
  z-index: 2;
  padding: 22px 0 36px;
}

.hero-project .breadcrumb {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

.hero-project .breadcrumb span {
  color: #2ee3d6;
}

.hero-project h1 {
  margin: 16px 0 12px;
  color: #fff;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.28;
  font-weight: 900;
  text-shadow: 0 12px 30px rgba(0, 0, 0, 0.32);
}

.hero-project h1 span {
  background: linear-gradient(120deg, #4dffe8 0%, #6fb4ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ph-subtitle {
  max-width: 720px;
  color: rgba(220, 232, 255, 0.86);
  font-size: 16px;
  line-height: 1.85;
}

.ph-layout {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 22px;
  margin-top: 28px;
}

.ph-screen {
  position: relative;
  min-height: 360px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(78, 184, 255, 0.22);
  background:
    linear-gradient(160deg, rgba(46, 227, 214, 0.12), rgba(31, 188, 178, 0)),
    linear-gradient(135deg, #0c2c5e 0%, #07173f 60%, #050f2c 100%);
  box-shadow: 0 22px 50px rgba(2, 9, 27, 0.42);
}

.ph-screen-image {
  position: absolute;
  inset: 22px;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(7, 21, 54, 0.04), rgba(7, 21, 54, 0.5)),
    url("ChatGPT Image May 3, 2026, 06_11_39 AM.png") center 12% / cover no-repeat;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.42);
}

.ph-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    radial-gradient(circle at 14% 18%, #82c9ff 0 1px, transparent 2px),
    radial-gradient(circle at 36% 28%, #82c9ff 0 1px, transparent 2px),
    radial-gradient(circle at 64% 16%, #82c9ff 0 1px, transparent 2px),
    radial-gradient(circle at 86% 24%, #82c9ff 0 1px, transparent 2px),
    radial-gradient(circle at 22% 76%, #82c9ff 0 1px, transparent 2px),
    radial-gradient(circle at 78% 82%, #82c9ff 0 1px, transparent 2px);
}

.ph-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  transform: translate(-50%, -50%);
  color: #06222a;
  border-radius: 50%;
  background: linear-gradient(135deg, #4dffe8, #1ab9b9);
  box-shadow: 0 16px 36px rgba(31, 188, 178, 0.5), 0 0 0 8px rgba(46, 227, 214, 0.16);
  cursor: pointer;
}

.ph-play svg {
  width: 28px;
  height: 28px;
  margin-right: -3px;
}

.ph-screen-tag {
  position: absolute;
  z-index: 3;
  bottom: 22px;
  right: 22px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 800;
  color: #06222a;
  border-radius: 999px;
  background: linear-gradient(135deg, #4dffe8, #1ab9b9);
  box-shadow: 0 8px 20px rgba(31, 188, 178, 0.4);
}

.ph-card {
  display: grid;
  align-content: start;
  gap: 4px;
  padding: 22px 22px 18px;
  border: 1px solid rgba(78, 184, 255, 0.2);
  border-radius: 18px;
  background:
    radial-gradient(circle at 18% 0%, rgba(46, 227, 214, 0.18), transparent 12rem),
    linear-gradient(180deg, rgba(8, 22, 58, 0.92), rgba(4, 14, 40, 0.92));
  backdrop-filter: blur(14px);
  box-shadow: 0 22px 50px rgba(2, 9, 27, 0.42);
}

.ph-card-row {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ph-card-row:last-of-type {
  border-bottom: 0;
}

.ph-card-row svg {
  width: 38px;
  height: 38px;
  padding: 9px;
  color: #06222a;
  border-radius: 11px;
  background: linear-gradient(135deg, #4dffe8, #1ab9b9);
  box-shadow: 0 8px 18px rgba(31, 188, 178, 0.32);
}

.ph-card-row > div span {
  display: block;
  color: rgba(190, 215, 255, 0.7);
  font-size: 11.5px;
  font-weight: 700;
}

.ph-card-row > div b {
  display: block;
  margin-top: 2px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.ph-card .teal-btn {
  margin-top: 14px;
  width: 100%;
  min-height: 50px;
  border-radius: 12px;
}

.ph-meta-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 28px;
  padding: 14px;
  border: 1px solid rgba(78, 184, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
}

.ph-meta-row article {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  padding: 8px 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.ph-meta-row article:first-child {
  border-left: 0;
}

.ph-meta-row svg {
  width: 38px;
  height: 38px;
  padding: 9px;
  color: #2ee3d6;
  border-radius: 10px;
  background: rgba(46, 227, 214, 0.14);
  border: 1px solid rgba(46, 227, 214, 0.32);
}

.ph-meta-row span {
  display: block;
  color: rgba(190, 215, 255, 0.66);
  font-size: 11px;
  font-weight: 700;
}

.ph-meta-row b {
  display: block;
  margin-top: 2px;
  color: #fff;
  font-size: 13.5px;
  font-weight: 800;
}

/* Project body sections */
.proj-section {
  padding-top: 40px;
}

.proj-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.proj-block {
  padding: 26px 28px 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(8, 24, 70, 0.06);
}

.proj-paragraph {
  margin-top: 18px;
}

.proj-head {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px dashed #d6e4f8;
}

.proj-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: #06222a;
  border-radius: 12px;
  background: linear-gradient(135deg, #4dffe8, #1ab9b9);
  box-shadow: 0 12px 24px rgba(31, 188, 178, 0.32);
}

.proj-icon svg {
  width: 22px;
  height: 22px;
}

.proj-block h2 {
  color: #092152;
  font-size: 21px;
  font-weight: 900;
}

.proj-paragraph p {
  margin: 0;
  color: #485a87;
  font-size: 15px;
  line-height: 2;
  font-weight: 500;
}

.teal-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.teal-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 10px 14px;
  color: #2a3a64;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 600;
  border: 1px solid #e3f7f3;
  border-radius: 10px;
  background: linear-gradient(180deg, #f7fffd, #f1fbf8);
}

.teal-list li svg {
  width: 22px;
  height: 22px;
  padding: 4px;
  color: #06222a;
  border-radius: 50%;
  background: linear-gradient(135deg, #4dffe8, #1ab9b9);
  margin-top: 1px;
}

.proj-section-head {
  text-align: center;
  margin-bottom: 22px;
}

.proj-section-head h2 {
  color: #092152;
  font-size: 28px;
  font-weight: 900;
}

.proj-section-head p {
  margin-top: 6px;
  color: #65749a;
  font-size: 14px;
  font-weight: 600;
}

.proj-tech-section {
  margin-top: 36px;
  padding: 32px;
  border: 1px solid #d6f6f0;
  border-radius: 18px;
  background:
    radial-gradient(circle at 18% 0%, rgba(46, 227, 214, 0.18), transparent 14rem),
    linear-gradient(180deg, #f3fcfa 0%, #ffffff 100%);
}

.proj-tech-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.proj-tech-grid span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 800;
  color: #0c4f4b;
  border: 1px solid #b6ece3;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(31, 188, 178, 0.1);
}

.proj-tech-grid svg {
  width: 16px;
  height: 16px;
  color: #1ab9b9;
}

.proj-shots-section {
  margin-top: 36px;
}

.proj-shots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.proj-shot {
  display: grid;
  gap: 10px;
}

.proj-shot .thumb {
  height: 160px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 12px 26px rgba(8, 24, 70, 0.1);
}

.proj-shot span {
  text-align: center;
  color: #1a3071;
  font-size: 13px;
  font-weight: 800;
}

.proj-results {
  margin-top: 36px;
}

.proj-results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.proj-results-grid article {
  position: relative;
  padding: 28px 22px 22px;
  text-align: center;
  border: 1px solid #cdf3ec;
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 0%, rgba(46, 227, 214, 0.22), transparent 60%),
    #fff;
  box-shadow: 0 16px 36px rgba(31, 188, 178, 0.12);
}

.proj-results-grid svg {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  padding: 14px;
  color: #06222a;
  border-radius: 16px;
  background: linear-gradient(135deg, #4dffe8, #1ab9b9);
  box-shadow: 0 14px 28px rgba(31, 188, 178, 0.36);
}

.proj-results-grid b {
  display: block;
  color: #0c4f4b;
  font-size: 32px;
  line-height: 1;
  font-weight: 900;
}

.proj-results-grid span {
  display: block;
  margin-top: 8px;
  color: #485a87;
  font-size: 13px;
  font-weight: 700;
}

.proj-deliverables {
  margin-top: 36px;
  padding: 38px 32px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 18% 0%, rgba(46, 227, 214, 0.22), transparent 16rem),
    radial-gradient(circle at 86% 100%, rgba(91, 58, 255, 0.2), transparent 14rem),
    linear-gradient(160deg, #051634 0%, #03102a 100%);
  color: #fff;
  overflow: hidden;
}

.pd-head {
  text-align: center;
  margin-bottom: 24px;
}

.pd-eyebrow {
  display: inline-block;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 800;
  color: #2ee3d6;
  border: 1px solid rgba(46, 227, 214, 0.42);
  border-radius: 999px;
  background: rgba(46, 227, 214, 0.1);
}

.pd-head h2 {
  margin: 14px 0 8px;
  color: #fff;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.32;
}

.pd-head p {
  max-width: 580px;
  margin: 0 auto;
  color: rgba(220, 232, 255, 0.78);
  font-size: 14.5px;
  line-height: 1.85;
}

.pd-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.pd-grid article {
  padding: 22px 20px;
  border: 1px solid rgba(78, 184, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  text-align: center;
  transition: transform 220ms, border-color 220ms;
}

.pd-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(46, 227, 214, 0.42);
}

.pd-grid svg {
  width: 50px;
  height: 50px;
  margin: 0 auto 12px;
  padding: 12px;
  color: #06222a;
  border-radius: 14px;
  background: linear-gradient(135deg, #4dffe8, #1ab9b9);
  box-shadow: 0 10px 22px rgba(31, 188, 178, 0.32);
}

.pd-grid h3 {
  margin: 0;
  color: #fff;
  font-size: 14.5px;
  font-weight: 900;
}

.pd-grid p {
  margin-top: 8px;
  color: rgba(220, 232, 255, 0.7);
  font-size: 12px;
  line-height: 1.7;
  font-weight: 600;
}

.proj-similar-cta {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  margin-top: 28px;
  padding: 32px 36px;
  border-radius: 18px 18px 0 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(46, 227, 214, 0.28), transparent 16rem),
    linear-gradient(135deg, #061b3f 0%, #1a1655 60%, #0a1340 100%);
  color: #fff;
  overflow: hidden;
}

.proj-similar-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.3;
  background-image:
    radial-gradient(circle at 18% 28%, #7ad9ff 0 1px, transparent 2px),
    radial-gradient(circle at 64% 18%, #7ad9ff 0 1px, transparent 2px),
    radial-gradient(circle at 86% 78%, #7ad9ff 0 1px, transparent 2px),
    radial-gradient(circle at 24% 82%, #7ad9ff 0 1px, transparent 2px);
}

.psc-art {
  position: relative;
  z-index: 1;
  width: 180px;
  height: 140px;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(46, 227, 214, 0.18), rgba(91, 58, 255, 0.18)),
    url("ChatGPT Image May 3, 2026, 06_11_39 AM.png") center 16% / 360px auto no-repeat;
  border: 1px solid rgba(78, 184, 255, 0.22);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.36);
}

.psc-content {
  position: relative;
  z-index: 1;
}

.psc-content h2 {
  margin: 12px 0 8px;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
}

.psc-content p {
  max-width: 520px;
  color: rgba(220, 232, 255, 0.82);
  font-size: 14px;
  line-height: 1.85;
}

.psc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.psc-stat {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 18px 24px;
  border: 1px solid rgba(46, 227, 214, 0.36);
  border-radius: 14px;
  background: rgba(46, 227, 214, 0.1);
}

.psc-stat > div {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
}

.psc-stat b {
  color: #4dffe8;
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
}

.psc-stat small {
  color: rgba(220, 232, 255, 0.78);
  font-size: 14px;
  font-weight: 800;
}

.psc-stat span {
  display: block;
  margin-top: 6px;
  color: rgba(220, 232, 255, 0.68);
  font-size: 11.5px;
  font-weight: 700;
}

/* ===== Shared compact hero (all internal pages) ===== */
.hero-compact {
  min-height: auto;
  padding-bottom: 70px;
}

.page-head {
  position: relative;
  z-index: 2;
  padding: 50px 0 28px;
  text-align: center;
}

.page-head .eyebrow {
  margin-bottom: 18px;
}

.page-head h1 {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.28;
  text-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
}

.page-head h1 span {
  color: var(--blue-2);
  background: linear-gradient(120deg, #6db1ff 0%, #b58cff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-head p {
  margin: 16px auto 0;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  line-height: 1.85;
}

.page-contact .page-head,
.page-library .page-head,
.page-order .page-head,
.page-majors .page-head {
  text-align: right;
}

.page-contact .page-head p,
.page-library .page-head p,
.page-order .page-head p,
.page-majors .page-head p {
  margin-inline: 0 auto;
  max-width: 500px;
}

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

.head-stats span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  font-size: 12.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.head-stats svg {
  width: 14px;
  height: 14px;
  color: #7ebcff;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 7px 14px;
  font-size: 12.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.78);
}

.breadcrumb a:hover {
  color: #fff;
}

.breadcrumb svg {
  width: 13px;
  height: 13px;
  color: rgba(255, 255, 255, 0.45);
}

.breadcrumb span {
  color: #7ebcff;
}

/* ===== Services page ===== */
.hero-services {
  min-height: 680px;
  padding-bottom: 64px;
}

.services-hero {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: 54px;
  padding: 42px 0 66px;
}

.services-hero-copy {
  max-width: 650px;
  text-align: right;
}

.services-hero-copy .breadcrumb {
  margin-bottom: 16px;
}

.services-hero-copy h1 {
  margin-top: 18px;
  font-size: clamp(38px, 4.5vw, 62px);
  line-height: 1.24;
  font-weight: 900;
  text-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
}

.services-hero-copy h1 span {
  color: transparent;
  background: linear-gradient(120deg, #64d6ff, #ad90ff 52%, #7ef0b6);
  -webkit-background-clip: text;
  background-clip: text;
}

.services-hero-copy p {
  margin-top: 18px;
  color: rgba(232, 240, 255, 0.86);
  font-size: 18px;
  line-height: 1.9;
  font-weight: 600;
}

.service-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.service-proof span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 13px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 12.5px;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.service-proof svg {
  width: 16px;
  height: 16px;
  color: #78efbd;
}

.services-hero-board {
  position: relative;
  display: grid;
  gap: 14px;
  min-height: 480px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(125, 164, 255, 0.32);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(12, 33, 82, 0.92), rgba(4, 14, 38, 0.9)),
    url("ChatGPT Image May 3, 2026, 06_11_36 AM.png") center / cover no-repeat;
  box-shadow: 0 34px 70px rgba(0, 0, 0, 0.34);
}

.services-hero-board::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.services-hero-board > * {
  position: relative;
  z-index: 1;
}

.board-top,
.board-focus,
.board-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.board-top span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 800;
}

.board-top b {
  padding: 4px 11px;
  color: #06254d;
  font-size: 11px;
  border-radius: 999px;
  background: #7ef0b6;
}

.board-focus {
  justify-content: flex-start;
  padding: 18px;
  background: linear-gradient(135deg, rgba(35, 103, 255, 0.34), rgba(109, 57, 255, 0.22));
}

.board-focus svg {
  flex: none;
  width: 56px;
  height: 56px;
  padding: 13px;
  color: #fff;
  border-radius: 8px;
  background: linear-gradient(135deg, #2367ff, #38d7ff);
}

.board-focus small,
.board-focus strong {
  display: block;
}

.board-focus small {
  color: rgba(226, 237, 255, 0.68);
  font-size: 12px;
  font-weight: 800;
}

.board-focus strong {
  margin-top: 4px;
  color: #fff;
  font-size: 18px;
  line-height: 1.45;
}

.board-progress {
  display: grid;
  gap: 12px;
  padding: 16px;
  border-radius: 8px;
  background: rgba(4, 14, 38, 0.44);
}

.board-progress div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 14px;
  align-items: center;
}

.board-progress span {
  color: rgba(232, 240, 255, 0.78);
  font-size: 12px;
  font-weight: 800;
}

.board-progress b {
  color: #fff;
  font-size: 12px;
}

.board-progress div::after {
  content: "";
  grid-column: 1 / -1;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #78efbd var(--service-progress), rgba(255, 255, 255, 0.12) 0);
}

.board-progress div:nth-child(1) { --service-progress: 100%; }
.board-progress div:nth-child(2) { --service-progress: 72%; }
.board-progress div:nth-child(3) { --service-progress: 46%; }

.board-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.board-services article {
  display: grid;
  place-items: center;
  gap: 8px;
  min-height: 104px;
  padding: 14px 10px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.board-services svg {
  width: 30px;
  height: 30px;
  color: #79cfff;
}

.board-services span {
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.board-note {
  justify-content: flex-start;
  margin-top: auto;
  color: rgba(232, 240, 255, 0.82);
  font-size: 12.5px;
  line-height: 1.65;
  font-weight: 700;
}

.board-note svg {
  flex: none;
  width: 24px;
  height: 24px;
  color: #78efbd;
}

.services-stats {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: -58px;
}

.services-stats article {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 4px 13px;
  min-height: 94px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 46px rgba(7, 21, 59, 0.14);
}

.services-stats svg {
  grid-row: span 2;
  width: 48px;
  height: 48px;
  padding: 11px;
  color: #2367ff;
  border-radius: 8px;
  background: #eef4ff;
}

.services-stats b {
  color: #092152;
  font-size: 22px;
  line-height: 1;
}

.services-stats span {
  color: #607099;
  font-size: 12.5px;
  font-weight: 800;
}

.service-catalog {
  padding-top: 58px;
}

.services-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  margin: -4px 0 20px;
}

.services-filter button {
  min-height: 40px;
  padding: 0 16px;
  color: #23406f;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  border: 1px solid #dce6f8;
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.services-filter button:hover,
.services-filter button.active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #2367ff, #6d39ff);
  transform: translateY(-1px);
}

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

.service-detail-card {
  display: grid;
  align-content: start;
  gap: 13px;
  min-height: 390px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
  box-shadow: 0 18px 40px rgba(8, 24, 70, 0.08);
}

.service-detail-card.featured {
  color: #fff;
  border-color: transparent;
  background:
    linear-gradient(145deg, rgba(8, 28, 77, 0.94), rgba(30, 78, 175, 0.9)),
    url("ChatGPT Image May 3, 2026, 06_11_39 AM.png") center / cover no-repeat;
  box-shadow: 0 24px 56px rgba(12, 41, 108, 0.26);
}

.sdc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.sdc-head svg {
  width: 48px;
  height: 48px;
  padding: 11px;
  color: #2367ff;
  border-radius: 8px;
  background: #eef4ff;
}

.service-detail-card.featured .sdc-head svg {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

.sdc-head span {
  padding: 5px 10px;
  color: #2761ed;
  font-size: 11px;
  font-weight: 900;
  border-radius: 999px;
  background: #edf4ff;
}

.service-detail-card.featured .sdc-head span {
  color: #08305d;
  background: #78efbd;
}

.service-detail-card h3 {
  color: #092152;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 900;
}

.service-detail-card.featured h3 {
  color: #fff;
}

.service-detail-card p {
  color: #627198;
  font-size: 13px;
  line-height: 1.85;
  font-weight: 600;
}

.service-detail-card.featured p {
  color: rgba(232, 240, 255, 0.84);
}

.service-detail-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-detail-card li {
  position: relative;
  padding-right: 18px;
  color: #405179;
  font-size: 12.5px;
  line-height: 1.65;
  font-weight: 700;
}

.service-detail-card.featured li {
  color: rgba(255, 255, 255, 0.8);
}

.service-detail-card li::before {
  content: "";
  position: absolute;
  right: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ddba4;
}

.sdc-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  margin-top: auto;
}

.sdc-actions > a:not(.primary-btn) {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #2367ff;
  font-size: 12.5px;
  font-weight: 900;
}

.service-detail-card.featured .sdc-actions > a:not(.primary-btn) {
  color: #9fd7ff;
}

.sdc-actions svg {
  width: 15px;
  height: 15px;
}

.service-paths,
.service-process,
.service-quality {
  margin-top: 46px;
}

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

.paths-grid article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(8, 24, 70, 0.07);
}

.paths-grid article.featured {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #143a83, #2367ff 58%, #45d0ff);
}

.path-tag {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 11px;
  color: #2367ff;
  font-size: 11px;
  font-weight: 900;
  border-radius: 999px;
  background: #eef4ff;
}

.paths-grid article.featured .path-tag {
  color: #08305d;
  background: #7ef0b6;
}

.paths-grid h3 {
  margin-top: 18px;
  color: #092152;
  font-size: 22px;
  font-weight: 900;
}

.paths-grid article.featured h3 {
  color: #fff;
}

.paths-grid p {
  margin-top: 10px;
  color: #607099;
  font-size: 13.5px;
  line-height: 1.85;
  font-weight: 600;
}

.paths-grid article.featured p {
  color: rgba(255, 255, 255, 0.82);
}

.paths-grid a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 20px;
  color: #2367ff;
  font-size: 13px;
  font-weight: 900;
}

.paths-grid article.featured a {
  color: #fff;
}

.paths-grid svg {
  width: 16px;
  height: 16px;
}

.service-process {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 28px;
  padding: 34px;
  color: #fff;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(135deg, #06132f, #092963 58%, #06132f);
  background-size: 42px 42px, 42px 42px, auto;
}

.process-copy h2,
.quality-copy h2 {
  margin-top: 16px;
  color: #092152;
  font-size: 30px;
  line-height: 1.35;
  font-weight: 900;
}

.process-copy h2 {
  color: #fff;
}

.process-copy p,
.quality-copy p {
  margin-top: 12px;
  color: rgba(232, 240, 255, 0.78);
  font-size: 15px;
  line-height: 1.85;
  font-weight: 600;
}

.process-copy .primary-btn {
  margin-top: 22px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.process-steps article {
  min-height: 170px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.process-steps b {
  color: #7ef0b6;
  font-size: 13px;
}

.process-steps h3 {
  margin-top: 16px;
  color: #fff;
  font-size: 17px;
  font-weight: 900;
}

.process-steps p {
  margin-top: 8px;
  color: rgba(232, 240, 255, 0.72);
  font-size: 12.5px;
  line-height: 1.75;
  font-weight: 600;
}

.service-quality {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 28px;
}

.quality-panel {
  position: relative;
  display: grid;
  align-content: center;
  gap: 30px;
  min-height: 330px;
  padding: 28px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(5, 17, 47, 0.9), rgba(20, 67, 142, 0.78)),
    url("ChatGPT Image May 3, 2026, 06_11_31 AM.png") center / cover no-repeat;
  box-shadow: 0 24px 52px rgba(8, 24, 70, 0.18);
}

.quality-score {
  display: grid;
  justify-items: center;
  gap: 6px;
  width: 190px;
  margin-inline: auto;
  padding: 22px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.quality-score svg {
  width: 46px;
  height: 46px;
  color: #7ef0b6;
}

.quality-score strong {
  color: #fff;
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
}

.quality-score span {
  color: rgba(232, 240, 255, 0.76);
  font-size: 12px;
  font-weight: 800;
}

.quality-lines {
  display: grid;
  gap: 12px;
}

.quality-lines span {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.quality-lines span::after {
  content: "";
  display: block;
  width: var(--w);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #7ef0b6, #4fc8ff);
}

.quality-copy p {
  color: #607099;
}

.quality-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.quality-list span {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 10px 12px;
  color: #1a3071;
  font-size: 12.5px;
  font-weight: 800;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.quality-list svg {
  flex: none;
  width: 19px;
  height: 19px;
  color: #20b579;
}

.services-cta {
  grid-template-columns: 1fr auto;
  margin-top: 46px;
  border-radius: 8px 8px 0 0;
}

.services-cta > div:first-child {
  direction: rtl;
}

.services-cta span {
  color: #93ffd0;
  font-size: 13px;
  font-weight: 900;
}

@media (max-width: 1180px) {
  .services-hero {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.86fr);
    gap: 30px;
  }

  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .hero-services {
    padding-bottom: 82px;
  }

  .services-hero,
  .service-process,
  .service-quality {
    grid-template-columns: 1fr;
  }

  .services-hero {
    gap: 28px;
    padding: 28px 0 40px;
  }

  .services-hero-board {
    min-height: 420px;
  }

  .services-stats,
  .services-grid,
  .paths-grid,
  .process-steps,
  .quality-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-detail-card {
    min-height: 360px;
  }

  .services-cta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .services-hero-copy h1 {
    font-size: clamp(32px, 9vw, 42px);
  }

  .services-hero-copy p {
    font-size: 15px;
  }

  .service-proof {
    display: grid;
    grid-template-columns: 1fr;
  }

  .services-hero-board {
    min-height: auto;
    padding: 16px;
  }

  .board-services,
  .services-stats,
  .services-grid,
  .paths-grid,
  .process-steps,
  .quality-list {
    grid-template-columns: 1fr;
  }

  .board-services article {
    min-height: 82px;
  }

  .service-catalog {
    padding-top: 42px;
  }

  .services-filter {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .services-filter button {
    flex: none;
  }

  .services-stats {
    margin-top: -48px;
  }

  .services-stats article,
  .service-detail-card,
  .paths-grid article,
  .service-process,
  .quality-panel {
    border-radius: 8px;
  }

  .service-process {
    padding: 24px 18px;
  }

  .process-copy h2,
  .quality-copy h2 {
    font-size: 24px;
  }

  .sdc-actions,
  .services-cta .cta-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .sdc-actions a,
  .services-cta .cta-actions a {
    justify-content: center;
    width: 100%;
  }
}

/* ===== Contact page ===== */
.contact-cards {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 32px;
}

.page-contact .contact-cards {
  grid-template-columns: repeat(5, 1fr);
  margin-top: 20px;
}

.page-contact .contact-cards article {
  padding: 18px 14px 16px;
  border-radius: 8px;
}

.page-contact .contact-cards svg {
  width: 42px;
  height: 42px;
  margin-bottom: 4px;
  padding: 10px;
}

.page-contact .contact-cards h3 {
  font-size: 14px;
}

.page-contact .contact-cards p {
  min-height: 40px;
  font-size: 11px;
  line-height: 1.55;
}

.page-contact .contact-cards a {
  font-size: 12px;
}

.contact-cards article {
  display: grid;
  gap: 6px;
  padding: 22px 22px 20px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(8, 24, 70, 0.16);
}

.contact-cards article.primary {
  color: #fff;
  border: 0;
  background: linear-gradient(135deg, #2367ff, #6d39ff);
  box-shadow: 0 22px 44px rgba(56, 84, 255, 0.32);
}

.contact-cards svg {
  width: 48px;
  height: 48px;
  margin: 0 auto 8px;
  padding: 12px;
  color: #2367ff;
  border-radius: 50%;
  background: linear-gradient(145deg, #eef4ff, #ffffff);
}

.contact-cards article.primary svg {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

.contact-cards h3 {
  color: #10265a;
  font-size: 16px;
  font-weight: 900;
}

.contact-cards article.primary h3 {
  color: #fff;
}

.contact-cards p {
  color: #65749a;
  font-size: 12.5px;
  font-weight: 600;
}

.contact-cards article.primary p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-cards a {
  margin-top: 8px;
  color: #2367ff;
  font-size: 14px;
  font-weight: 800;
  direction: ltr;
}

.contact-cards article.primary a {
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  margin-top: 36px;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(8, 24, 70, 0.08);
}

.contact-form h2 {
  color: #092152;
  font-size: 24px;
  font-weight: 900;
}

.form-sub {
  margin-top: -6px;
  color: #65749a;
  font-size: 13.5px;
  font-weight: 600;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form label,
.order-form label {
  display: grid;
  gap: 6px;
}

.contact-form label.full,
.order-form label.full {
  grid-column: 1 / -1;
}

.contact-form span,
.order-form label > span {
  color: #1a3071;
  font-size: 12.5px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.order-form input,
.order-form select,
.order-form textarea {
  padding: 12px 14px;
  font: inherit;
  font-size: 13.5px;
  font-weight: 600;
  color: #0e2a6c;
  border: 1px solid #d8e3fb;
  border-radius: 10px;
  background: #f7faff;
  outline: none;
  transition: border-color 180ms, background 180ms, box-shadow 180ms;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
  border-color: #2367ff;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(35, 103, 255, 0.12);
}

.contact-form textarea,
.order-form textarea {
  resize: vertical;
  min-height: 110px;
}

.contact-form .primary-btn,
.order-form .primary-btn {
  justify-self: end;
  margin-top: 6px;
  padding: 0 28px;
}

.contact-side {
  display: grid;
  gap: 16px;
  align-content: start;
}

.map-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(8, 24, 70, 0.08);
}

.map-art {
  height: 200px;
  background: linear-gradient(135deg, #eef5ff, #f6f9ff);
  display: grid;
  place-items: center;
}

.map-art svg {
  width: 100%;
  height: 100%;
}

.map-info {
  padding: 18px 22px 22px;
}

.map-info h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #10265a;
  font-size: 15px;
  font-weight: 900;
}

.map-info svg {
  width: 18px;
  height: 18px;
  color: #2367ff;
}

.map-info p {
  margin-top: 10px;
  color: #65749a;
  font-size: 13px;
  line-height: 1.8;
  font-weight: 600;
}

.map-info span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  color: #2367ff;
  background: #eef4ff;
  border-radius: 999px;
}

.quick-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(145deg, #fff, #f6f9ff);
  box-shadow: 0 14px 32px rgba(8, 24, 70, 0.06);
}

.quick-stats article {
  display: grid;
  justify-items: center;
  gap: 4px;
  text-align: center;
  padding: 10px 6px;
}

.quick-stats svg {
  width: 32px;
  height: 32px;
  padding: 7px;
  color: #fff;
  border-radius: 10px;
  background: linear-gradient(135deg, #2367ff, #6d39ff);
}

.quick-stats b {
  color: #0e2a6c;
  font-size: 16px;
  font-weight: 900;
}

.quick-stats span {
  color: #65749a;
  font-size: 11.5px;
  font-weight: 700;
}

/* ===== FAQ accordion ===== */
.faq {
  margin-top: 32px;
}

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

.faq-grid details {
  padding: 4px 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(8, 24, 70, 0.05);
  overflow: hidden;
}

.faq-grid summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 22px;
  cursor: pointer;
  color: #10265a;
  font-size: 14.5px;
  font-weight: 800;
  list-style: none;
}

.faq-grid summary::-webkit-details-marker {
  display: none;
}

.faq-grid summary svg {
  flex: none;
  width: 22px;
  height: 22px;
  padding: 4px;
  color: #2367ff;
  border-radius: 50%;
  background: #eef4ff;
  transition: transform 220ms;
}

.faq-grid details[open] summary svg {
  transform: rotate(45deg);
}

.faq-grid p {
  padding: 0 22px 18px;
  color: #65749a;
  font-size: 13px;
  line-height: 1.85;
  font-weight: 600;
}

/* ===== Order page ===== */
.order-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 24px;
  margin-top: 36px;
}

.order-form {
  display: grid;
  gap: 18px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(8, 24, 70, 0.08);
}

.form-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  padding-top: 8px;
  border-top: 1px solid #edf3fc;
}

.order-form > .form-step:first-child {
  border-top: 0;
  padding-top: 0;
}

.step-num {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  border-radius: 12px;
  background: linear-gradient(135deg, #2367ff, #6d39ff);
  box-shadow: 0 10px 22px rgba(56, 84, 255, 0.28);
}

.form-step h3 {
  color: #10265a;
  font-size: 16px;
  font-weight: 900;
}

.form-step p {
  margin-top: 2px;
  color: #65749a;
  font-size: 12.5px;
  font-weight: 600;
}

.order-form .form-row {
  grid-template-columns: 1fr 1fr 1fr;
}

.upload-box {
  display: grid;
  gap: 6px;
  justify-items: center;
  padding: 26px 20px;
  text-align: center;
  border: 2px dashed #c9d6f3;
  border-radius: 14px;
  background: linear-gradient(180deg, #f8fbff, #f3f7ff);
}

.upload-box svg {
  width: 40px;
  height: 40px;
  color: #2367ff;
  margin-bottom: 4px;
}

.upload-box h4 {
  margin: 0;
  color: #10265a;
  font-size: 15px;
  font-weight: 900;
}

.upload-box p {
  color: #65749a;
  font-size: 12px;
  font-weight: 600;
}

.upload-box .secondary-btn {
  margin-top: 10px;
  min-height: 38px;
  padding: 0 20px;
  font-size: 13px;
  border: 1px solid #c9d6f3;
  background: #fff;
}

.agree {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
  color: #65749a;
  font-size: 13px;
  font-weight: 600;
}

.agree input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: #2367ff;
}

.agree a {
  color: #2367ff;
  font-weight: 800;
}

.submit-btn {
  justify-self: stretch !important;
  min-height: 56px;
  font-size: 15px;
  border-radius: 14px;
}

.order-side {
  display: grid;
  gap: 16px;
  align-content: start;
}

.side-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(8, 24, 70, 0.06);
}

.side-card h3 {
  color: #10265a;
  font-size: 16px;
  font-weight: 900;
}

.side-card ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.side-card li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  color: #2a3a64;
  font-size: 13px;
  line-height: 1.6;
  font-weight: 600;
}

.side-card li svg {
  width: 18px;
  height: 18px;
  padding: 3px;
  color: #fff;
  border-radius: 50%;
  background: linear-gradient(135deg, #2caaff, #2367ff);
}

.side-card.guarantee {
  background: linear-gradient(155deg, #07173f, #050f2c);
  color: #fff;
  border-color: rgba(95, 142, 255, 0.22);
  text-align: center;
}

.side-card.guarantee svg {
  width: 48px;
  height: 48px;
  margin: 0 auto 10px;
  padding: 12px;
  color: #fff;
  border-radius: 50%;
  background: linear-gradient(135deg, #2367ff, #6d39ff);
}

.side-card.guarantee h3 {
  color: #fff;
}

.side-card.guarantee p {
  margin-top: 8px;
  color: rgba(220, 232, 255, 0.78);
  font-size: 13px;
  line-height: 1.7;
}

.side-card.support {
  background: linear-gradient(135deg, #2367ff, #6d39ff);
  color: #fff;
  border: 0;
  text-align: center;
}

.side-card.support svg {
  width: 44px;
  height: 44px;
  margin: 0 auto 10px;
  padding: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.side-card.support h3 {
  color: #fff;
}

.side-card.support p {
  margin: 8px 0 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.side-card.support .primary-btn {
  background: #fff;
  color: #2367ff;
  box-shadow: none;
  width: 100%;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 22px;
  padding: 22px;
  border-radius: 14px;
  background: linear-gradient(135deg, #07173f, #050f2c);
  color: #fff;
}

.trust-bar article {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  padding: 0 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-bar article:first-child {
  border-left: 0;
}

.trust-bar svg {
  grid-row: span 2;
  width: 44px;
  height: 44px;
  padding: 11px;
  color: #fff;
  border-radius: 12px;
  background: linear-gradient(135deg, #2367ff, #6d39ff);
}

.trust-bar b {
  font-size: 19px;
  line-height: 1;
}

.trust-bar span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 700;
}

/* ===== Majors page ===== */
.majors-section {
  display: grid;
  gap: 22px;
  margin-top: 32px;
}

.major-block {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(8, 24, 70, 0.06);
}

.major-block.alt {
  background: linear-gradient(155deg, #07173f, #050f2c);
  color: #fff;
  border-color: rgba(95, 142, 255, 0.22);
}

.major-block.alt h2 {
  color: #fff;
}

.major-block.alt p {
  color: rgba(220, 232, 255, 0.74);
}

.major-block.alt .major-grid span {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

.major-block.alt .major-grid svg {
  color: #7ebcff;
}

.major-block > header {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid #edf3fc;
}

.major-block.alt > header {
  border-color: rgba(255, 255, 255, 0.1);
}

.block-num {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  border-radius: 14px;
  background: linear-gradient(135deg, #2367ff, #6d39ff);
  box-shadow: 0 12px 26px rgba(56, 84, 255, 0.28);
}

.major-block h2 {
  color: #092152;
  font-size: 22px;
  font-weight: 900;
}

.major-block > header p {
  margin-top: 4px;
  color: #65749a;
  font-size: 13.5px;
  font-weight: 600;
}

.majors-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  margin-top: 22px;
  padding: 24px 30px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 12% 0%, rgba(56, 109, 255, 0.18), transparent 14rem),
    linear-gradient(180deg, #fff, #f6f9ff);
  border: 1px solid var(--line);
}

.majors-cta h2 {
  color: #092152;
  font-size: 22px;
  font-weight: 900;
}

.majors-cta p {
  margin-top: 6px;
  color: #65749a;
  font-size: 14px;
  font-weight: 600;
}

.majors-cta .cta-actions {
  direction: rtl;
}

/* ===== Majors and About full pages ===== */
.page-majors .hero-majors::after,
.page-about .hero-about::after {
  display: none;
}

.hero-majors,
.hero-about {
  min-height: 680px;
  padding-bottom: 70px;
}

.hero-majors {
  background:
    radial-gradient(circle at 18% 24%, rgba(80, 200, 255, 0.16), transparent 22rem),
    radial-gradient(circle at 82% 18%, rgba(109, 57, 255, 0.24), transparent 24rem),
    linear-gradient(108deg, #06132f 0%, #071842 52%, #02091c 100%);
}

.hero-about {
  background:
    radial-gradient(circle at 16% 30%, rgba(126, 240, 182, 0.12), transparent 23rem),
    radial-gradient(circle at 84% 12%, rgba(35, 103, 255, 0.26), transparent 25rem),
    linear-gradient(108deg, #06132f 0%, #071842 50%, #02091c 100%);
}

.majors-hero-layout,
.about-hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: 54px;
  padding: 42px 0 64px;
}

.majors-hero-copy,
.about-hero-copy {
  max-width: 660px;
  text-align: right;
}

.majors-hero-copy h1,
.about-hero-copy h1 {
  margin-top: 18px;
  color: #fff;
  font-size: clamp(38px, 4.45vw, 62px);
  line-height: 1.24;
  font-weight: 900;
  text-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
}

.majors-hero-copy h1 span,
.about-hero-copy h1 span {
  color: transparent;
  background: linear-gradient(120deg, #64d6ff, #ad90ff 54%, #7ef0b6);
  -webkit-background-clip: text;
  background-clip: text;
}

.majors-hero-copy p,
.about-hero-copy p {
  margin-top: 18px;
  color: rgba(232, 240, 255, 0.86);
  font-size: 18px;
  line-height: 1.9;
  font-weight: 600;
}

.majors-map {
  position: relative;
  min-height: 500px;
  border: 1px solid rgba(125, 164, 255, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(7, 23, 63, 0.86), rgba(4, 14, 38, 0.9)),
    url("ChatGPT Image May 3, 2026, 06_11_27 AM.png") center / cover no-repeat;
  box-shadow: 0 34px 70px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.majors-map::before {
  content: "";
  position: absolute;
  inset: 34px;
  opacity: 0.42;
  border: 1px solid rgba(126, 207, 255, 0.3);
  border-radius: 50%;
  box-shadow:
    0 0 0 78px rgba(126, 207, 255, 0.04),
    0 0 0 152px rgba(126, 207, 255, 0.025);
}

.map-core {
  position: absolute;
  inset: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 156px;
  height: 156px;
  padding: 20px;
  color: #fff;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: linear-gradient(135deg, #2367ff, #6d39ff);
  box-shadow: 0 28px 58px rgba(23, 70, 184, 0.38);
  transform: translate(50%, -50%);
}

.map-core svg {
  width: 36px;
  height: 36px;
}

.map-core strong {
  font-size: 33px;
  line-height: 1;
}

.map-core span {
  font-size: 12px;
  font-weight: 800;
}

.map-node {
  position: absolute;
  z-index: 2;
  width: 205px;
  padding: 16px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.map-node svg {
  width: 34px;
  height: 34px;
  margin-bottom: 10px;
  color: #78efbd;
}

.map-node b {
  display: block;
  font-size: 15px;
}

.map-node span {
  display: block;
  margin-top: 6px;
  color: rgba(232, 240, 255, 0.76);
  font-size: 11.5px;
  line-height: 1.65;
  font-weight: 700;
}

.node-tech { right: 28px; top: 34px; }
.node-health { left: 28px; top: 74px; }
.node-business { right: 38px; bottom: 52px; }
.node-law { left: 42px; bottom: 32px; }

.majors-stats,
.about-stats {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: -58px;
}

.majors-stats article,
.about-stats article {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 4px 13px;
  min-height: 94px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 46px rgba(7, 21, 59, 0.14);
}

.majors-stats svg,
.about-stats svg {
  grid-row: span 2;
  width: 48px;
  height: 48px;
  padding: 11px;
  color: #2367ff;
  border-radius: 8px;
  background: #eef4ff;
}

.majors-stats b,
.about-stats b {
  color: #092152;
  font-size: 22px;
  line-height: 1;
}

.majors-stats span,
.about-stats span {
  color: #607099;
  font-size: 12.5px;
  font-weight: 800;
}

.majors-explorer {
  padding-top: 58px;
}

.major-toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) 1fr;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.major-search {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid #dce6f8;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(8, 24, 70, 0.07);
}

.major-search svg {
  width: 20px;
  height: 20px;
  color: #2367ff;
}

.major-search input {
  min-width: 0;
  border: 0;
  outline: 0;
  font: inherit;
  color: #092152;
  background: transparent;
}

.major-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.major-filter button {
  min-height: 40px;
  padding: 0 14px;
  color: #23406f;
  font: inherit;
  font-size: 12.5px;
  font-weight: 800;
  border: 1px solid #dce6f8;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}

.major-filter button.active,
.major-filter button:hover {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #2367ff, #6d39ff);
}

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

.major-specialty-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 330px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
  box-shadow: 0 18px 40px rgba(8, 24, 70, 0.08);
}

.major-specialty-card.featured {
  color: #fff;
  border-color: transparent;
  background:
    linear-gradient(145deg, rgba(8, 28, 77, 0.94), rgba(30, 78, 175, 0.9)),
    url("ChatGPT Image May 3, 2026, 06_11_43 AM.png") center / cover no-repeat;
}

.major-specialty-card > svg {
  width: 50px;
  height: 50px;
  padding: 11px;
  color: #2367ff;
  border-radius: 8px;
  background: #eef4ff;
}

.major-specialty-card.featured > svg {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

.major-specialty-card > span {
  justify-self: start;
  padding: 5px 10px;
  color: #2761ed;
  font-size: 11px;
  font-weight: 900;
  border-radius: 999px;
  background: #edf4ff;
}

.major-specialty-card.featured > span {
  color: #08305d;
  background: #78efbd;
}

.major-specialty-card h3 {
  color: #092152;
  font-size: 19px;
  line-height: 1.35;
  font-weight: 900;
}

.major-specialty-card.featured h3 {
  color: #fff;
}

.major-specialty-card p {
  color: #627198;
  font-size: 13px;
  line-height: 1.8;
  font-weight: 600;
}

.major-specialty-card.featured p {
  color: rgba(232, 240, 255, 0.84);
}

.major-specialty-card div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.major-specialty-card small {
  padding: 4px 9px;
  color: #38507f;
  font-size: 10.5px;
  font-weight: 800;
  border-radius: 999px;
  background: #eef4ff;
}

.major-specialty-card.featured small {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

.major-specialty-card a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: auto;
  color: #2367ff;
  font-size: 12.5px;
  font-weight: 900;
}

.major-specialty-card.featured a {
  color: #9fd7ff;
}

.major-specialty-card a svg {
  width: 15px;
  height: 15px;
}

.major-paths,
.major-highlight,
.about-story,
.about-method,
.about-team {
  margin-top: 46px;
}

.major-path-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.major-path-grid article {
  min-height: 178px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(8, 24, 70, 0.07);
}

.major-path-grid b {
  color: #2367ff;
  font-size: 13px;
}

.major-path-grid h3 {
  margin-top: 14px;
  color: #092152;
  font-size: 17px;
  font-weight: 900;
}

.major-path-grid p {
  margin-top: 8px;
  color: #607099;
  font-size: 12.5px;
  line-height: 1.8;
  font-weight: 600;
}

.major-highlight {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 28px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #f6f9ff);
  box-shadow: 0 18px 40px rgba(8, 24, 70, 0.08);
}

.major-highlight-art {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  min-height: 230px;
  padding: 20px;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(8, 28, 77, 0.86), rgba(30, 78, 175, 0.78)),
    url("ChatGPT Image May 3, 2026, 06_11_27 AM.png") center / cover no-repeat;
}

.major-highlight-art span {
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.major-highlight h2,
.about-story h2,
.method-copy h2 {
  margin-top: 16px;
  color: #092152;
  font-size: 30px;
  line-height: 1.35;
  font-weight: 900;
}

.major-highlight p,
.about-story p,
.method-copy p {
  margin-top: 12px;
  color: #607099;
  font-size: 15px;
  line-height: 1.85;
  font-weight: 600;
}

.major-highlight-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.majors-bottom-cta,
.about-cta {
  grid-template-columns: 1fr auto;
  margin-top: 46px;
  border-radius: 8px 8px 0 0;
}

.majors-bottom-cta > div:first-child,
.about-cta > div:first-child {
  direction: rtl;
}

.majors-bottom-cta span,
.about-cta span {
  color: #93ffd0;
  font-size: 13px;
  font-weight: 900;
}

.about-visual {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid rgba(125, 164, 255, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(7, 23, 63, 0.84), rgba(4, 14, 38, 0.9)),
    url("ChatGPT Image May 3, 2026, 06_11_48 AM.png") center / cover no-repeat;
  box-shadow: 0 34px 70px rgba(0, 0, 0, 0.34);
}

.about-visual-card,
.about-visual-note {
  position: absolute;
  z-index: 2;
  padding: 18px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.about-visual-card {
  display: grid;
  gap: 6px;
  min-width: 154px;
}

.about-visual-card.primary {
  right: 38px;
  top: 44px;
  min-width: 185px;
  background: linear-gradient(135deg, rgba(35, 103, 255, 0.86), rgba(109, 57, 255, 0.84));
}

.about-visual-card:nth-child(2) {
  left: 34px;
  top: 138px;
}

.about-visual-card:nth-child(3) {
  right: 70px;
  bottom: 128px;
}

.about-visual-card svg {
  width: 32px;
  height: 32px;
  color: #78efbd;
}

.about-visual-card strong {
  font-size: 32px;
  line-height: 1;
}

.about-visual-card span {
  color: rgba(232, 240, 255, 0.78);
  font-size: 12px;
  font-weight: 800;
}

.about-visual-note {
  left: 34px;
  right: 34px;
  bottom: 34px;
}

.about-visual-note b {
  font-size: 17px;
}

.about-visual-note p {
  margin-top: 8px;
  color: rgba(232, 240, 255, 0.76);
  font-size: 12.5px;
  line-height: 1.75;
  font-weight: 600;
}

.about-story {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: stretch;
}

.about-story-copy,
.about-story-points article,
.about-values-grid article,
.team-capabilities article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(8, 24, 70, 0.07);
}

.about-story-copy {
  padding: 30px;
}

.about-story-points {
  display: grid;
  gap: 14px;
}

.about-story-points article,
.about-values-grid article {
  padding: 24px;
}

.about-story-points svg,
.about-values-grid svg,
.team-capabilities svg {
  width: 48px;
  height: 48px;
  padding: 11px;
  color: #2367ff;
  border-radius: 8px;
  background: #eef4ff;
}

.about-story-points h3,
.about-values-grid h3 {
  margin-top: 16px;
  color: #092152;
  font-size: 19px;
  font-weight: 900;
}

.about-story-points p,
.about-values-grid p {
  margin-top: 8px;
  color: #607099;
  font-size: 13px;
  line-height: 1.8;
  font-weight: 600;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.about-method {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 28px;
}

.method-board {
  display: grid;
  gap: 12px;
  min-height: 330px;
  padding: 26px;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(8, 28, 77, 0.88), rgba(30, 78, 175, 0.8)),
    url("ChatGPT Image May 3, 2026, 06_11_31 AM.png") center / cover no-repeat;
  box-shadow: 0 24px 52px rgba(8, 24, 70, 0.18);
}

.method-board div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.method-board span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #073060;
  font-weight: 900;
  border-radius: 50%;
  background: #78efbd;
}

.method-board b {
  font-size: 14px;
}

.method-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.method-list span {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 10px 12px;
  color: #1a3071;
  font-size: 12.5px;
  font-weight: 800;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.method-list svg {
  flex: none;
  width: 19px;
  height: 19px;
  color: #20b579;
}

.team-capabilities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.team-capabilities article {
  display: grid;
  gap: 8px;
  min-height: 174px;
  padding: 22px;
}

.team-capabilities b {
  color: #092152;
  font-size: 17px;
}

.team-capabilities span {
  color: #607099;
  font-size: 12.5px;
  line-height: 1.7;
  font-weight: 700;
}

@media (max-width: 1180px) {
  .majors-hero-layout,
  .about-hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.86fr);
    gap: 30px;
  }

  .major-card-grid,
  .about-values-grid,
  .team-capabilities {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .hero-majors,
  .hero-about {
    padding-bottom: 84px;
  }

  .majors-hero-layout,
  .about-hero-layout,
  .major-highlight,
  .about-story,
  .about-method {
    grid-template-columns: 1fr;
  }

  .majors-map,
  .about-visual {
    min-height: 430px;
  }

  .majors-stats,
  .about-stats,
  .major-card-grid,
  .major-path-grid,
  .about-values-grid,
  .team-capabilities,
  .method-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .major-toolbar {
    grid-template-columns: 1fr;
  }

  .major-filter {
    justify-content: flex-start;
  }

  .majors-bottom-cta,
  .about-cta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .majors-hero-copy h1,
  .about-hero-copy h1 {
    font-size: clamp(32px, 9vw, 42px);
  }

  .majors-hero-copy p,
  .about-hero-copy p {
    font-size: 15px;
  }

  .majors-map {
    min-height: 560px;
  }

  .map-core {
    width: 132px;
    height: 132px;
  }

  .map-node {
    width: calc(50% - 28px);
    min-height: 140px;
    padding: 13px;
  }

  .node-tech { right: 14px; top: 18px; }
  .node-health { left: 14px; top: 64px; }
  .node-business { right: 14px; bottom: 54px; }
  .node-law { left: 14px; bottom: 18px; }

  .majors-stats,
  .about-stats,
  .major-card-grid,
  .major-path-grid,
  .about-values-grid,
  .team-capabilities,
  .method-list {
    grid-template-columns: 1fr;
  }

  .major-filter {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .major-filter button {
    flex: none;
  }

  .major-highlight,
  .about-story-copy,
  .about-method {
    padding: 22px 18px;
  }

  .major-highlight-actions,
  .major-highlight-actions a,
  .majors-bottom-cta .cta-actions,
  .about-cta .cta-actions,
  .majors-bottom-cta .cta-actions a,
  .about-cta .cta-actions a {
    width: 100%;
  }

  .major-highlight-actions,
  .majors-bottom-cta .cta-actions,
  .about-cta .cta-actions {
    flex-direction: column;
  }

  .about-visual {
    min-height: 520px;
  }

  .about-visual-card.primary {
    right: 18px;
    top: 24px;
  }

  .about-visual-card:nth-child(2) {
    left: 18px;
    top: 142px;
  }

  .about-visual-card:nth-child(3) {
    right: 18px;
    bottom: 142px;
  }

  .about-visual-note {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }
}

/* ===== Library page ===== */
.library-search {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  margin: 28px auto 14px;
  padding: 8px 8px 8px 18px;
  max-width: 720px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 22px 50px rgba(2, 9, 27, 0.32);
}

.library-search > svg {
  width: 22px;
  height: 22px;
  color: #2367ff;
}

.library-search input {
  padding: 12px 0;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  color: #0e2a6c;
  border: 0;
  outline: none;
  background: transparent;
  text-align: right;
}

.library-search .primary-btn {
  min-height: 44px;
  padding: 0 26px;
  border-radius: 12px;
}

.quick-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 12.5px;
  font-weight: 600;
}

.quick-tags > span {
  color: rgba(255, 255, 255, 0.62);
}

.quick-tags a {
  padding: 5px 12px;
  color: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.library-categories {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.page-library .library-categories {
  grid-template-columns: repeat(10, 1fr);
  gap: 0;
  margin-top: -38px;
  padding: 16px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(8, 24, 70, 0.14);
}

.library-categories article {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(8, 24, 70, 0.08);
}

.page-library .library-categories article {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 8px;
  min-height: 72px;
  padding: 8px 6px;
  border: 0;
  border-left: 1px solid #e8eef9;
  border-radius: 0;
  box-shadow: none;
}

.page-library .library-categories article:last-child {
  border-left: 0;
}

.library-categories svg {
  grid-row: span 2;
  width: 50px;
  height: 50px;
  padding: 12px;
  color: #fff;
  border-radius: 12px;
  background: linear-gradient(135deg, #2367ff, #6d39ff);
}

.page-library .library-categories svg {
  grid-row: auto;
  width: 30px;
  height: 30px;
  padding: 0;
  color: #315dff;
  border-radius: 0;
  background: transparent;
}

.page-library .library-categories b {
  display: none;
}

.page-library .library-categories h3 {
  color: #10265a;
  font-size: 10.5px;
  line-height: 1.4;
  text-align: center;
}

.library-categories b {
  color: #0e2a6c;
  font-size: 22px;
  line-height: 1;
}

.library-categories h3 {
  color: #65749a;
  font-size: 13px;
  font-weight: 800;
}

.featured-banner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0;
  margin-top: 28px;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(120deg, #07173f 0%, #1632a3 50%, #5b35ff 100%);
  color: #fff;
}

.featured-text {
  padding: 38px 40px;
}

.banner-tag {
  display: inline-block;
  padding: 5px 14px;
  font-size: 11.5px;
  font-weight: 800;
  color: #fff;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff6a3d, #ffd86b);
}

.featured-text h2 {
  margin: 14px 0 10px;
  font-size: 26px;
  line-height: 1.32;
  font-weight: 900;
}

.featured-text p {
  color: rgba(220, 232, 255, 0.82);
  font-size: 14.5px;
  line-height: 1.85;
}

.featured-text .primary-btn {
  margin-top: 18px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow: none;
}

.featured-art {
  position: relative;
  background:
    radial-gradient(circle at 70% 50%, rgba(110, 169, 255, 0.32), transparent 60%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
  background-image:
    url("ChatGPT Image May 3, 2026, 06_11_13 AM.png");
  background-size: 720px auto;
  background-position: left -30px top -50px;
  background-repeat: no-repeat;
}

.lib-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 18px;
}

.lib-head h2 {
  color: #092152;
  font-size: 22px;
  font-weight: 900;
}

.lib-tabs {
  display: flex;
  gap: 6px;
  padding: 4px;
  border-radius: 12px;
  background: #eef4ff;
}

.lib-tabs button {
  padding: 8px 16px;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  color: #1a3071;
  border: 0;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}

.lib-tabs button.active {
  color: #fff;
  background: linear-gradient(135deg, #2367ff, #6d39ff);
  box-shadow: 0 6px 16px rgba(56, 84, 255, 0.28);
}

.library-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.lib-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(8, 24, 70, 0.06);
  transition: transform 220ms, box-shadow 220ms;
}

.lib-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(8, 24, 70, 0.12);
}

.lib-thumb {
  position: relative;
  height: 130px;
  background-image: url("ChatGPT Image May 3, 2026, 06_11_48 AM.png");
  background-size: 940px auto;
  background-repeat: no-repeat;
}

.lib-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 19, 47, 0.1), rgba(7, 19, 47, 0.28));
}

.lib-thumb span {
  position: absolute;
  z-index: 2;
  top: 10px;
  right: 10px;
  padding: 4px 10px;
  color: #fff;
  font-size: 10.5px;
  font-weight: 800;
  border-radius: 999px;
  background: linear-gradient(135deg, #2089ff, #5d45ff);
}

.lib-body {
  padding: 14px 16px 16px;
}

.lib-body h3 {
  color: #10265a;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 900;
  min-height: 42px;
}

.lib-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  color: #65749a;
  font-size: 11.5px;
  font-weight: 600;
}

.lib-meta svg {
  width: 13px;
  height: 13px;
}

.lib-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #edf3fc;
}

.lib-foot > span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #65749a;
  font-size: 11.5px;
  font-weight: 700;
}

.lib-foot > span svg {
  width: 14px;
  height: 14px;
  color: #2367ff;
}

.lib-foot a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #2367ff;
  font-size: 12px;
  font-weight: 800;
}

.lib-foot a svg {
  width: 14px;
  height: 14px;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 26px;
}

.pagination button {
  display: grid;
  place-items: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  color: #1a3071;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  transition: all 180ms;
}

.pagination button:hover {
  border-color: #2367ff;
  color: #2367ff;
}

.pagination button.active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #2367ff, #6d39ff);
  box-shadow: 0 8px 20px rgba(56, 84, 255, 0.28);
}

.pagination svg {
  width: 16px;
  height: 16px;
}

.newsletter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 32px;
  margin-top: 32px;
  padding: 32px 38px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 18% 0%, rgba(125, 56, 255, 0.34), transparent 14rem),
    linear-gradient(135deg, #07173f 0%, #050f2c 100%);
  color: #fff;
}

.newsletter svg {
  width: 44px;
  height: 44px;
  padding: 11px;
  color: #fff;
  border-radius: 12px;
  background: linear-gradient(135deg, #2367ff, #6d39ff);
}

.newsletter h2 {
  margin: 12px 0 6px;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
}

.newsletter p {
  color: rgba(220, 232, 255, 0.82);
  font-size: 14px;
  line-height: 1.8;
}

.newsletter form {
  display: flex;
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
}

.newsletter input {
  flex: 1;
  padding: 12px 14px;
  font: inherit;
  font-size: 14px;
  color: #fff;
  border: 0;
  background: transparent;
  outline: none;
  text-align: right;
}

.newsletter input::placeholder {
  color: rgba(220, 232, 255, 0.54);
}

.newsletter .primary-btn {
  min-height: 42px;
  padding: 0 22px;
  border-radius: 8px;
}

/* ===== Projects page ===== */
.featured-project {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  margin-top: 28px;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, #07173f, #050f2c);
  color: #fff;
}

.fp-image {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 320px;
  background:
    linear-gradient(135deg, rgba(35, 103, 255, 0.4), rgba(125, 56, 255, 0.4)),
    url("ChatGPT Image May 3, 2026, 06_11_43 AM.png") center / cover no-repeat;
}

.fp-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 14px;
  font-size: 11.5px;
  font-weight: 800;
  color: #fff;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff6a3d, #ffd86b);
}

.fp-image > svg {
  width: 80px;
  height: 80px;
  padding: 20px;
  color: #fff;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  border: 2px solid rgba(255, 255, 255, 0.28);
}

.fp-info {
  padding: 32px 36px;
}

.fp-tag {
  display: inline-block;
  padding: 5px 12px;
  font-size: 11.5px;
  font-weight: 800;
  color: #b9d8ff;
  border: 1px solid rgba(140, 182, 255, 0.42);
  border-radius: 999px;
  background: rgba(28, 64, 142, 0.5);
}

.fp-info h2 {
  margin: 14px 0 10px;
  color: #fff;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.32;
}

.fp-info p {
  color: rgba(220, 232, 255, 0.82);
  font-size: 14.5px;
  line-height: 1.85;
}

.fp-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 14px;
  font-size: 12.5px;
  color: rgba(220, 232, 255, 0.78);
  font-weight: 700;
}

.fp-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.fp-meta svg {
  width: 14px;
  height: 14px;
  color: #7ebcff;
}

.fp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.fp-actions .secondary-btn {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow: none;
}

.fp-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.fp-price > span {
  color: rgba(220, 232, 255, 0.78);
  font-size: 13px;
  font-weight: 600;
}

.fp-price > b {
  color: #fff;
  font-size: 26px;
  font-weight: 900;
}

.projects-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 4px;
  border-radius: 12px;
  background: #eef4ff;
}

.filter-tabs button {
  padding: 8px 16px;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  color: #1a3071;
  border: 0;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}

.filter-tabs button.active {
  color: #fff;
  background: linear-gradient(135deg, #2367ff, #6d39ff);
  box-shadow: 0 6px 16px rgba(56, 84, 255, 0.28);
}

.filter-sort label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 800;
  color: #1a3071;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.filter-sort svg {
  width: 16px;
  height: 16px;
  color: #2367ff;
}

.filter-sort select {
  padding: 0;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  color: #1a3071;
  border: 0;
  background: transparent;
  outline: none;
}

.why-projects {
  margin-top: 32px;
}

.why-projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.why-projects-grid article {
  padding: 24px 22px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(8, 24, 70, 0.06);
}

.why-projects-grid svg {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  padding: 14px;
  color: #fff;
  border-radius: 16px;
  background: linear-gradient(135deg, #2367ff, #6d39ff);
}

.why-projects-grid h3 {
  color: #10265a;
  font-size: 16px;
  font-weight: 900;
}

.why-projects-grid p {
  margin-top: 8px;
  color: #65749a;
  font-size: 12.5px;
  line-height: 1.7;
  font-weight: 600;
}

/* ===== Single project page ===== */
.project-hero {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 18px;
  margin-top: 28px;
}

.ph-image {
  position: relative;
  min-height: 360px;
  border-radius: 16px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(35, 103, 255, 0.36), rgba(125, 56, 255, 0.36)),
    url("ChatGPT Image May 3, 2026, 06_11_39 AM.png") center / cover no-repeat;
  display: grid;
  place-items: center;
  cursor: pointer;
  border: 1px solid var(--line);
}

.ph-image > svg {
  width: 76px;
  height: 76px;
  padding: 18px;
  color: #fff;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  border: 2px solid rgba(255, 255, 255, 0.32);
}

.ph-tag {
  position: absolute;
  bottom: 16px;
  right: 16px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  border-radius: 999px;
  background: rgba(7, 23, 63, 0.78);
  backdrop-filter: blur(8px);
}

.ph-side {
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(155deg, #fff, #f6f9ff);
  box-shadow: 0 14px 32px rgba(8, 24, 70, 0.06);
}

.ph-side article {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #edf3fc;
}

.ph-side article:last-of-type {
  border-bottom: 0;
}

.ph-side svg {
  width: 36px;
  height: 36px;
  padding: 9px;
  color: #fff;
  border-radius: 10px;
  background: linear-gradient(135deg, #2367ff, #6d39ff);
}

.ph-side article > span {
  color: #65749a;
  font-size: 12px;
  font-weight: 700;
}

.ph-side article > b {
  color: #0e2a6c;
  font-size: 13px;
  font-weight: 800;
  text-align: left;
  direction: ltr;
}

.ph-side .primary-btn {
  margin-top: 8px;
  width: 100%;
}

.project-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 22px;
  margin-top: 22px;
}

.project-main {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(8, 24, 70, 0.06);
}

.project-main h2 {
  color: #092152;
  font-size: 24px;
  font-weight: 900;
}

.project-main h3 {
  margin-top: 26px;
  color: #10265a;
  font-size: 18px;
  font-weight: 900;
}

.project-main p {
  margin-top: 12px;
  color: #485a87;
  font-size: 14.5px;
  line-height: 1.95;
  font-weight: 500;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  color: #2a3a64;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 600;
}

.check-list svg {
  width: 22px;
  height: 22px;
  color: #1bd17a;
  margin-top: 2px;
}

.check-list.compact li {
  font-size: 13px;
}

.check-list.compact svg {
  width: 18px;
  height: 18px;
  padding: 3px;
  color: #fff;
  border-radius: 50%;
  background: linear-gradient(135deg, #2caaff, #2367ff);
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.tech-tags span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-size: 12.5px;
  font-weight: 800;
  color: #1a3071;
  border: 1px solid #d8e3fb;
  border-radius: 999px;
  background: #f7faff;
}

.tech-tags svg {
  width: 14px;
  height: 14px;
  color: #2367ff;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.feature-grid > div {
  padding: 20px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(165deg, #fff, #f7faff);
}

.feature-grid svg {
  width: 44px;
  height: 44px;
  padding: 11px;
  color: #fff;
  border-radius: 12px;
  background: linear-gradient(135deg, #2367ff, #6d39ff);
}

.feature-grid h4 {
  margin: 14px 0 8px;
  color: #10265a;
  font-size: 15px;
  font-weight: 900;
}

.feature-grid p {
  margin: 0;
  color: #65749a;
  font-size: 12.5px;
  line-height: 1.7;
  font-weight: 600;
}

.result-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 16px;
  padding: 22px;
  border-radius: 14px;
  background: linear-gradient(135deg, #07173f, #050f2c);
}

.result-stats > div {
  text-align: center;
  padding: 8px;
}

.result-stats b {
  display: block;
  color: #fff;
  font-size: 26px;
  font-weight: 900;
}

.result-stats span {
  display: block;
  margin-top: 6px;
  color: rgba(220, 232, 255, 0.74);
  font-size: 12px;
  font-weight: 600;
}

.screenshots {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.screenshots .thumb {
  height: 160px;
  border-radius: 12px;
}

.project-aside {
  display: grid;
  gap: 16px;
  align-content: start;
}

.price-card {
  text-align: center;
}

.price-card > span {
  color: #65749a;
  font-size: 12.5px;
  font-weight: 700;
}

.price-card > b {
  display: block;
  margin: 6px 0 12px;
  color: #0e2a6c;
  font-size: 36px;
  line-height: 1;
  font-weight: 900;
}

.price-card > b em {
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
  color: #65749a;
}

.price-card > p {
  margin-bottom: 18px;
  color: #65749a;
  font-size: 12.5px;
  line-height: 1.7;
  font-weight: 600;
}

.price-card .primary-btn {
  width: 100%;
  margin-bottom: 8px;
}

.price-card .secondary-btn {
  width: 100%;
  background: #fff;
  color: #2367ff;
  border-color: #d8e3fb;
  box-shadow: none;
}

.share-card {
  text-align: center;
}

.share-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
}

.share-row a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #2367ff;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #f7faff;
  transition: all 180ms;
}

.share-row a:hover {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #2367ff, #6d39ff);
}

.share-row svg {
  width: 18px;
  height: 18px;
}

.hero-research .hero-grid {
  padding-bottom: 120px;
}

.hero-research .hero-photo {
  inset: 14px 18px 0 0;
  background:
    linear-gradient(85deg, rgba(5, 13, 33, 0.1), rgba(5, 13, 33, 0.78) 70%),
    url("ChatGPT Image May 3, 2026, 06_11_31 AM.png") left -40px top -52px / 720px auto no-repeat;
  filter: saturate(1.06);
}

.hero-research .hero-photo::after {
  background: linear-gradient(0deg, rgba(5, 13, 33, 0.5), transparent 45%);
}

.research-search {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 8px;
  margin-top: 26px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  box-shadow: 0 22px 50px rgba(2, 9, 27, 0.32);
}

.research-search label {
  display: grid;
  gap: 4px;
  padding: 8px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  text-align: right;
}

.research-search small {
  color: #6f7e9f;
  font-size: 11px;
  font-weight: 800;
}

.research-search select {
  padding: 0;
  font: inherit;
  font-size: 13.5px;
  font-weight: 800;
  color: #0e2a6c;
  background: transparent;
  border: 0;
  appearance: none;
  outline: none;
  direction: rtl;
}

.research-search .primary-btn {
  min-height: auto;
  padding: 0 22px;
  font-size: 14px;
  border-radius: 12px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 12.5px;
  font-weight: 700;
}

.hero-tags span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.hero-tags svg {
  width: 14px;
  height: 14px;
  color: #7ebcff;
}

.hero-visual-research .stat-bubble {
  width: 200px;
  padding: 14px 16px;
  border-radius: 14px;
}

.hero-visual-research .stat-bubble:first-of-type {
  top: 32px;
  right: 16px;
}

.hero-visual-research .stat-bubble.alt {
  top: auto;
  right: auto;
  left: 16px;
  bottom: 28px;
}

.hero-visual-research .stat-bubble b {
  display: block;
  margin: 4px 0 2px;
  color: #fff;
  font-size: 22px;
}

.hero-visual-research .stat-bubble span {
  font-size: 11.5px;
  color: rgba(220, 232, 255, 0.84);
}

.research-types-bar {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: -56px;
  padding: 6px;
  border-radius: 16px;
  background: linear-gradient(135deg, #0a2356 0%, #103a8a 100%);
  box-shadow: 0 24px 54px rgba(8, 24, 70, 0.32);
}

.research-types-bar article {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  color: #fff;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.research-types-bar article:first-child {
  border-left: 0;
}

.research-types-bar svg {
  width: 46px;
  height: 46px;
  padding: 11px;
  color: #fff;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
}

.research-types-bar h4 {
  margin: 0;
  font-size: 15px;
  font-weight: 900;
}

.research-types-bar p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 600;
}

.research-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.research-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 22px 20px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(20, 45, 95, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.research-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(20, 45, 95, 0.12);
}

.research-card .rc-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 6px;
  color: #fff;
  border-radius: 14px;
  background: linear-gradient(135deg, #2367ff, #6d39ff);
  box-shadow: 0 10px 22px rgba(58, 91, 255, 0.28);
}

.research-card .rc-icon svg {
  width: 24px;
  height: 24px;
}

.research-card h3 {
  color: #10265a;
  font-size: 15px;
  font-weight: 900;
}

.research-card p {
  color: #65749a;
  font-size: 12.5px;
  line-height: 1.7;
  font-weight: 600;
}

.research-card a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
  color: #3265ff;
  font-size: 12px;
  font-weight: 800;
}

.research-card a svg {
  width: 14px;
  height: 14px;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.package {
  position: relative;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 28px 26px 26px;
  color: #e1ebff;
  border: 1px solid rgba(95, 142, 255, 0.22);
  border-radius: 16px;
  background:
    radial-gradient(circle at 18% 0%, rgba(56, 109, 255, 0.34), transparent 14rem),
    linear-gradient(160deg, #07173f 0%, #050f2c 100%);
  box-shadow: 0 18px 44px rgba(4, 16, 48, 0.28);
}

.package.featured {
  color: #fff;
  border: 1px solid rgba(149, 121, 255, 0.55);
  background:
    radial-gradient(circle at 80% 0%, rgba(125, 56, 255, 0.6), transparent 12rem),
    linear-gradient(155deg, #1f3aa3 0%, #2a1772 50%, #0a1340 100%);
  box-shadow: 0 26px 60px rgba(45, 30, 130, 0.42);
  transform: translateY(-8px);
}

.pkg-tag {
  align-self: start;
  padding: 6px 14px;
  font-size: 11.5px;
  font-weight: 800;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.package.featured .pkg-tag {
  background: linear-gradient(135deg, #ffd86b, #ff9a3d);
  color: #322006;
  border-color: transparent;
}

.package h3 {
  margin: 4px 0 0;
  color: #fff;
  font-size: 22px;
  font-weight: 900;
}

.pkg-sub {
  color: rgba(212, 224, 255, 0.7);
  font-size: 12.5px;
  font-weight: 600;
}

.package ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 4px;
  padding: 0;
  list-style: none;
}

.package li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(220, 232, 255, 0.86);
}

.package li svg {
  width: 18px;
  height: 18px;
  padding: 3px;
  color: #fff;
  border-radius: 50%;
  background: linear-gradient(135deg, #2caaff, #2367ff);
}

.package.featured li svg {
  background: linear-gradient(135deg, #ffd86b, #ff8a3d);
  color: #322006;
}

.package .primary-btn {
  margin-top: 10px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow: none;
}

.package.featured .primary-btn {
  background: linear-gradient(135deg, #ffd86b, #ff9a3d);
  color: #2a1d05;
  border-color: transparent;
  box-shadow: 0 14px 30px rgba(255, 154, 61, 0.32);
}

.why-research {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 32px;
  align-items: center;
  margin-top: 18px;
  padding: 32px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 12% 0%, rgba(56, 109, 255, 0.22), transparent 16rem),
    linear-gradient(150deg, #06173d 0%, #050d28 100%);
  color: #d8e4ff;
  overflow: hidden;
}

.why-research .eyebrow-light {
  color: #b9d8ff;
  border-color: rgba(140, 182, 255, 0.42);
  background: rgba(28, 64, 142, 0.5);
}

.why-research h2 {
  margin-top: 14px;
  color: #fff;
  font-size: 28px;
  line-height: 1.32;
  font-weight: 900;
}

.why-research > .why-copy > p {
  margin-top: 12px;
  color: rgba(212, 224, 255, 0.78);
  font-size: 15px;
  line-height: 1.85;
}

.why-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.why-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  font-size: 13.5px;
  font-weight: 600;
  border: 1px solid rgba(95, 142, 255, 0.18);
  border-radius: 12px;
  background: rgba(15, 38, 90, 0.42);
}

.why-list svg {
  width: 22px;
  height: 22px;
  color: #62e9b1;
}

.why-visual {
  position: relative;
  min-height: 340px;
  border-radius: 16px;
  overflow: hidden;
}

.why-photo {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 13, 33, 0.05), rgba(5, 13, 33, 0.6)),
    url("ChatGPT Image May 3, 2026, 06_11_31 AM.png") right -30px bottom -240px / 720px auto no-repeat;
}

.why-stat {
  position: absolute;
  left: 22px;
  bottom: 22px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 1px solid rgba(120, 175, 255, 0.32);
  border-radius: 14px;
  background: rgba(8, 22, 58, 0.86);
  backdrop-filter: blur(12px);
}

.why-stat svg {
  width: 38px;
  height: 38px;
  padding: 9px;
  color: #fff;
  border-radius: 50%;
  background: linear-gradient(135deg, #1f72ff, #6d39ff);
}

.why-stat b {
  display: block;
  color: #fff;
  font-size: 22px;
}

.why-stat span {
  display: block;
  color: rgba(212, 224, 255, 0.78);
  font-size: 12px;
  font-weight: 600;
  max-width: 220px;
}

@media (max-width: 900px) {
  .shell {
    width: min(100% - 40px, 1080px);
  }

  .nav {
    grid-template-columns: auto 1fr;
  }

  .page-projects .nav {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 12px;
    min-height: 70px;
  }

  .nav-links {
    order: 3;
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .page-projects .nav-links {
    order: initial;
    grid-column: auto;
    justify-content: center;
    gap: 12px;
    overflow: visible;
    padding-bottom: 0;
    font-size: 12.5px;
  }

  .nav-actions {
    justify-self: end;
  }

  .hero-grid,
  .video-section,
  .split-section {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    justify-self: stretch;
    max-width: none;
  }

  .hero-visual {
    min-height: 360px;
  }

  .stats,
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stats article:nth-child(3n + 1) {
    border-left: 0;
  }

  .major-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .research-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .research-types-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .research-types-bar article:nth-child(2) {
    border-left: 0;
  }

  .packages-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .package.featured {
    transform: none;
  }

  .why-research {
    grid-template-columns: 1fr;
  }

  .research-search {
    grid-template-columns: 1fr 1fr;
  }

  .research-search .primary-btn {
    grid-column: 1 / -1;
  }

  .contact-cards,
  .library-categories,
  .why-projects-grid,
  .ph-meta-row,
  .proj-shots,
  .proj-results-grid,
  .pd-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ph-layout {
    grid-template-columns: 1fr;
  }

  .projects-hero {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 24px;
  }

  .ph-art {
    min-height: 235px;
  }

  .projects-filter-bar {
    grid-template-columns: minmax(230px, 1fr) repeat(5, 92px) 112px;
    gap: 8px;
  }

  .fbp-wrap {
    grid-template-columns: 1fr 1.2fr 140px;
    gap: 14px;
  }

  .fbp-price {
    grid-column: auto;
  }

  .proj-cards-grid,
  .qc-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .proj-bottom-cta {
    grid-template-columns: 200px 1fr;
  }

  .pbc-actions {
    grid-column: 1 / -1;
    justify-content: center;
  }

  .proj-similar-cta {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .psc-art {
    margin-inline: auto;
  }

  .psc-actions {
    justify-content: center;
  }

  .contact-grid,
  .order-grid,
  .project-grid,
  .featured-banner,
  .featured-project,
  .project-hero,
  .newsletter,
  .majors-cta {
    grid-template-columns: 1fr;
  }

  .order-form .form-row {
    grid-template-columns: 1fr 1fr;
  }

  .library-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .trust-bar,
  .result-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-bar article:nth-child(odd),
  .trust-bar article:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
  }

  .trust-bar article:nth-child(2n+1) {
    border-left: 0;
  }

  .cta {
    grid-template-columns: 180px 1fr;
  }

  .cta-actions {
    grid-column: 1 / -1;
    justify-content: center;
  }
}

@media (max-width: 760px) {
  html {
    overflow-x: hidden;
  }

  body {
    background:
      radial-gradient(circle at 12% 0, rgba(64, 108, 255, 0.18), transparent 17rem),
      radial-gradient(circle at 90% 34rem, rgba(105, 57, 255, 0.12), transparent 20rem),
      linear-gradient(#f4f8ff 0, #ffffff 42%, #f7faff 100%);
  }

  .shell {
    width: min(100% - 26px, 620px);
  }

  .hero {
    min-height: auto;
    border-radius: 0 0 30px 30px;
    background:
      radial-gradient(circle at 78% 10%, rgba(109, 57, 255, 0.36), transparent 15rem),
      radial-gradient(circle at 18% 42%, rgba(54, 103, 255, 0.36), transparent 18rem),
      linear-gradient(150deg, #071b45 0%, #061331 48%, #020819 100%);
    box-shadow: 0 24px 60px rgba(4, 18, 52, 0.24);
  }

  .hero::after {
    content: "";
    position: absolute;
    right: -36px;
    top: 112px;
    width: 130px;
    height: 130px;
    border: 1px solid rgba(95, 153, 255, 0.22);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(78, 119, 255, 0.16), transparent 62%);
  }

  .nav {
    grid-template-columns: 1fr auto;
    min-height: 74px;
    gap: 12px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    inset: 74px 0 0;
    z-index: 50;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 4px;
    padding: 22px 22px 60px;
    overflow-y: auto;
    color: #fff;
    background: linear-gradient(160deg, rgba(7, 21, 54, 0.98), rgba(2, 8, 25, 0.98));
    backdrop-filter: blur(14px);
    pointer-events: none;
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .nav.is-open .nav-links {
    pointer-events: auto;
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links a {
    padding: 14px 14px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-links a.active {
    color: #6db1ff;
  }

  .nav-links a.active::after {
    display: none;
  }

  body.nav-locked {
    overflow: hidden;
  }

  .nav-actions {
    justify-self: start;
  }

  .brand strong {
    font-size: 20px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    box-shadow: 0 8px 22px rgba(75, 121, 255, 0.24);
  }

  .nav-actions .primary-btn {
    display: none;
  }

  .ghost-btn {
    min-height: 34px;
    padding: 0 10px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 20px 0 82px;
  }

  .hero-copy {
    justify-self: stretch;
    width: 100%;
    max-width: none;
    text-align: center;
  }

  .hero h1 {
    margin-top: 18px;
    font-size: clamp(26px, 7.6vw, 34px);
    line-height: 1.32;
    letter-spacing: -0.2px;
    overflow-wrap: anywhere;
  }

  .hero h1 br {
    display: none;
  }

  .hero h1 span {
    display: inline-block;
    background: linear-gradient(120deg, #6db1ff 0%, #b58cff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .hero-copy p {
    width: min(100%, 34rem);
    margin: 14px auto 0;
    font-size: 15px;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.78);
  }

  .eyebrow {
    min-height: 36px;
    padding-inline: 18px;
    color: #b9d8ff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  }

  .hero-buttons,
  .degree-pills {
    justify-content: center;
  }

  .hero-buttons {
    gap: 10px;
    margin-top: 24px;
  }

  .hero-buttons a {
    flex: 1 1 100%;
    min-height: 52px;
    font-size: 14.5px;
    border-radius: 14px;
  }

  .hero-buttons a svg {
    width: 16px;
    height: 16px;
  }

  .primary-btn {
    background: linear-gradient(135deg, #1685ff 0%, #315fff 44%, #7d38ff 100%);
    box-shadow: 0 18px 38px rgba(65, 78, 255, 0.36);
  }

  .secondary-btn {
    color: #10265a;
    border-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0 16px 36px rgba(3, 13, 39, 0.18);
  }

  .degree-pills {
    gap: 9px;
    margin-top: 22px;
  }

  .degree-pills span {
    min-width: 100px;
    padding: 7px 14px 9px;
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.24);
  }

  .trust-row {
    justify-content: center;
    gap: 10px 14px;
    margin-top: 18px;
  }

  .hero-visual {
    min-height: 280px;
    margin-top: 6px;
    border: 1px solid rgba(112, 162, 255, 0.22);
    border-radius: 22px;
    background:
      radial-gradient(circle at 78% 24%, rgba(125, 56, 255, 0.45), transparent 12rem),
      radial-gradient(circle at 18% 78%, rgba(33, 132, 255, 0.42), transparent 11rem),
      linear-gradient(155deg, #0a1f54 0%, #061434 50%, #050d28 100%);
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.32);
    overflow: hidden;
  }

  .hero-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.45;
    background-image:
      radial-gradient(circle at 18% 24%, #7aa6ff 0 1px, transparent 2px),
      radial-gradient(circle at 36% 18%, #7aa6ff 0 1px, transparent 2px),
      radial-gradient(circle at 62% 28%, #7aa6ff 0 1px, transparent 2px),
      radial-gradient(circle at 84% 18%, #7aa6ff 0 1px, transparent 2px),
      radial-gradient(circle at 28% 70%, #7aa6ff 0 1px, transparent 2px),
      radial-gradient(circle at 72% 78%, #7aa6ff 0 1px, transparent 2px);
  }

  .hero-photo {
    inset: 18px;
    border-radius: 16px;
    background:
      linear-gradient(180deg, rgba(8, 22, 56, 0) 0%, rgba(6, 16, 42, 0.85) 100%),
      url("ChatGPT Image May 3, 2026, 06_11_48 AM.png") left -14px top -28px / 540px auto no-repeat;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.32);
  }

  .hero-photo::after {
    background: linear-gradient(0deg, rgba(5, 13, 33, 0.55), transparent 55%);
  }

  .metric-card.progress {
    right: 16px;
    top: 26px;
    width: 124px;
    padding: 11px 11px 12px;
    border-radius: 12px;
  }

  .metric-card.progress b {
    width: 50px;
    height: 50px;
    border-width: 6px;
    font-size: 13px;
  }

  .metric-card.bars,
  .metric-card.plan {
    display: none;
  }

  .metric-card.video {
    right: auto;
    left: 16px;
    bottom: 22px;
    width: min(180px, 56vw);
    min-height: 108px;
    padding: 12px;
    border-color: rgba(255, 255, 255, 0.22);
    border-radius: 12px;
    background: linear-gradient(140deg, rgba(38, 70, 142, 0.92), rgba(18, 33, 78, 0.92));
  }

  .metric-card.video svg {
    width: 38px;
    height: 38px;
    margin: 8px auto 4px;
    padding: 9px;
  }

  .stats,
  .service-grid,
  .card-row,
  .testimonial-grid,
  .feature-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: -34px;
    padding: 12px;
    border: 0;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 22px 50px rgba(8, 24, 70, 0.22);
    backdrop-filter: blur(16px);
  }

  .stats article,
  .stats article:nth-child(3n + 1) {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    align-items: center;
    justify-items: start;
    column-gap: 12px;
    min-height: auto;
    padding: 12px 12px 13px;
    border-left: 0;
    border-bottom: 0;
    border-radius: 14px;
    text-align: right;
    background: linear-gradient(165deg, #ffffff 0%, #f5f8ff 100%);
    box-shadow: inset 0 0 0 1px #e8eefb;
  }

  .stats article:last-child {
    grid-column: 1 / -1;
    justify-items: center;
    text-align: center;
    grid-template-columns: auto auto;
    column-gap: 14px;
    padding: 14px 12px;
    background: linear-gradient(135deg, #1f72ff, #6d39ff);
    box-shadow: 0 16px 30px rgba(56, 84, 255, 0.32);
  }

  .stats article:last-child b,
  .stats article:last-child span {
    color: #fff;
  }

  .stats article:last-child svg {
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
  }

  .stats svg {
    grid-row: span 2;
    width: 42px;
    height: 42px;
    padding: 10px;
    margin-bottom: 0;
    color: #1c4cf2;
    background: linear-gradient(145deg, #ecf2ff, #f8fbff);
  }

  .stats b {
    font-size: 18px;
    line-height: 1.1;
    color: #0e2a6c;
  }

  .stats span {
    font-size: 11.5px;
    text-align: right;
  }

  .section {
    padding-top: 38px;
  }

  .section-heading h2,
  .panel-title h2,
  .video-copy h2 {
    font-size: 27px;
    line-height: 1.35;
  }

  .section-heading p {
    width: min(100%, 25rem);
    margin-inline: auto;
    line-height: 1.7;
  }

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

  .service-card {
    position: relative;
    min-height: 188px;
    padding: 22px 14px 18px;
    overflow: hidden;
    text-align: center;
    border: 1px solid rgba(207, 219, 247, 0.95);
    border-radius: 18px;
    background:
      linear-gradient(#ffffff, #ffffff) padding-box,
      linear-gradient(140deg, rgba(41, 101, 255, 0.22), rgba(125, 56, 255, 0.1)) border-box;
    box-shadow: 0 14px 32px rgba(24, 56, 120, 0.08);
  }

  .service-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, #1c78ff, #7540ff);
  }

  .service-card > svg {
    width: 52px;
    height: 52px;
    margin: 0 auto 12px;
    padding: 11px;
    color: #315fff;
    border-radius: 14px;
    background: linear-gradient(145deg, #eef5ff, #ffffff);
    box-shadow: 0 10px 22px rgba(49, 95, 255, 0.14);
  }

  .service-card h3 {
    font-size: 14.5px;
    line-height: 1.4;
  }

  .service-card p {
    min-height: auto;
    margin-top: 8px;
    font-size: 11.5px;
    line-height: 1.7;
  }

  .service-card a {
    margin-top: 10px;
    min-height: 32px;
    padding: 0 12px;
    font-size: 11.5px;
    border-radius: 999px;
    background: #f3f7ff;
  }

  .media-card a,
  .panel-title > a {
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: #f3f7ff;
  }

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

  .major-grid span {
    min-height: 86px;
    padding: 10px 6px;
    font-size: 11.5px;
    border-radius: 16px;
    background: linear-gradient(180deg, #fff, #f5f9ff);
    box-shadow: 0 10px 24px rgba(24, 56, 120, 0.06);
  }

  .major-grid svg {
    width: 28px;
    height: 28px;
    padding: 5px;
    border-radius: 10px;
    background: linear-gradient(145deg, #eef4ff, #ffffff);
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .workflow {
    margin-top: 28px;
    padding: 24px 18px 26px;
    border: 0;
    border-radius: 20px;
    background:
      linear-gradient(#ffffff, #ffffff) padding-box,
      linear-gradient(150deg, rgba(49, 95, 255, 0.24), rgba(125, 56, 255, 0.1)) border-box;
    box-shadow: 0 20px 46px rgba(24, 56, 120, 0.1);
  }

  .steps article {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    column-gap: 14px;
    padding: 14px 4px;
    text-align: right;
  }

  .steps article > svg {
    grid-row: span 2;
    width: 52px;
    height: 52px;
    padding: 12px;
    margin: 0;
    color: #fff;
    border: 0;
    background: linear-gradient(145deg, #1f72ff, #7240ff);
    box-shadow: 0 14px 28px rgba(58, 91, 255, 0.24);
  }

  .steps h3 {
    align-self: end;
    font-size: 15px;
  }

  .steps p {
    align-self: start;
    margin-top: 4px;
    font-size: 12.5px;
    line-height: 1.6;
  }

  .step-arrow {
    justify-self: start;
    width: 4px;
    height: 22px;
    min-height: 22px;
    margin-right: 28px;
    background: linear-gradient(180deg, #6f8aff, transparent);
    border-radius: 2px;
    color: transparent;
    transform: none;
  }

  .step-arrow svg {
    display: none;
  }

  .panel-title,
  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .split-section {
    gap: 18px;
    margin-top: 22px;
  }

  .panel {
    padding: 18px;
    border: 0;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 20px 48px rgba(24, 56, 120, 0.1);
  }

  .panel-title {
    gap: 12px;
    text-align: center;
  }

  .panel-title > a {
    order: 2;
    align-self: center;
    margin: 0;
  }

  .card-row {
    gap: 14px;
  }

  .media-card {
    border-radius: 16px;
    box-shadow: 0 14px 34px rgba(24, 56, 120, 0.08);
  }

  .thumb {
    height: 154px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
  }

  .thumb::before {
    content: "";
    position: absolute;
    inset: 22px;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 18px;
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.16) 0 18%, transparent 18% 28%, rgba(255, 255, 255, 0.16) 28% 48%, transparent 48% 58%, rgba(255, 255, 255, 0.16) 58% 100%),
      radial-gradient(circle at 70% 45%, rgba(255, 255, 255, 0.34), transparent 28%);
    opacity: 0.72;
  }

  .crop-one {
    background:
      radial-gradient(circle at 78% 30%, rgba(77, 232, 255, 0.7), transparent 7rem),
      radial-gradient(circle at 20% 70%, rgba(124, 76, 255, 0.72), transparent 7rem),
      linear-gradient(135deg, #051a42, #0e4f9e 58%, #102052);
  }

  .crop-two {
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0 18%, transparent 18% 100%),
      radial-gradient(circle at 70% 30%, rgba(120, 197, 255, 0.8), transparent 6rem),
      linear-gradient(135deg, #273c75, #49a078 58%, #e6b857);
  }

  .crop-three {
    background:
      radial-gradient(circle at 72% 32%, rgba(97, 239, 255, 0.72), transparent 6rem),
      linear-gradient(135deg, #061b44, #1f7aff 52%, #08142e);
  }

  .crop-four {
    background:
      radial-gradient(circle at 28% 30%, rgba(84, 239, 255, 0.75), transparent 5rem),
      linear-gradient(135deg, #0b2151, #2367ff 52%, #4b37d9);
  }

  .crop-five {
    background:
      linear-gradient(115deg, transparent 0 44%, rgba(255, 255, 255, 0.18) 44% 46%, transparent 46%),
      radial-gradient(circle at 64% 32%, rgba(42, 232, 255, 0.72), transparent 6rem),
      linear-gradient(135deg, #051936, #0c65b9 52%, #07132e);
  }

  .crop-six {
    background:
      radial-gradient(circle at 26% 34%, rgba(255, 255, 255, 0.68), transparent 4rem),
      radial-gradient(circle at 78% 42%, rgba(75, 211, 255, 0.7), transparent 5rem),
      linear-gradient(135deg, #0c2452, #2389c9 52%, #0a315d);
  }

  .media-card h3 {
    padding: 14px 14px 0;
    font-size: 15px;
  }

  .media-card p {
    padding-inline: 14px;
    font-size: 12px;
  }

  .video-preview {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 14px;
    min-height: 280px;
    padding: 32px 22px 56px;
    border: 0;
    border-radius: 22px;
    background:
      linear-gradient(160deg, rgba(13, 38, 98, 0.96), rgba(8, 22, 60, 0.96));
    box-shadow: 0 22px 54px rgba(5, 20, 55, 0.22);
  }

  .video-preview h2 {
    font-size: 22px;
  }

  .video-preview p {
    font-size: 14px;
    line-height: 1.7;
  }

  .video-brand .brand-mark {
    width: 56px;
    height: 56px;
  }

  .video-brand strong {
    font-size: 22px;
  }

  .video-copy {
    padding: 28px 22px 26px;
    border: 0;
    border-radius: 22px;
    text-align: center;
    box-shadow: 0 18px 42px rgba(24, 56, 120, 0.1);
  }

  .video-copy h2 {
    font-size: 22px;
  }

  .video-copy .primary-btn {
    width: 100%;
    min-height: 50px;
    border-radius: 14px;
  }

  .feature-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .feature-row span {
    min-height: 100px;
    padding: 10px 6px;
    border-radius: 14px;
    background: #f7faff;
  }

  .feature-row svg {
    width: 42px;
    height: 42px;
  }

  .testimonial-grid article {
    min-height: 150px;
    padding: 22px 82px 20px 18px;
    border-radius: 18px;
    box-shadow: 0 16px 36px rgba(24, 56, 120, 0.08);
  }

  .testimonial-grid img {
    top: 18px;
    right: 16px;
    width: 56px;
    height: 56px;
    border: 3px solid #fff;
    box-shadow: 0 8px 18px rgba(24, 56, 120, 0.18);
  }

  .testimonial-grid p {
    font-size: 13px;
    line-height: 1.85;
  }

  .testimonial-grid b {
    font-size: 13px;
    color: #0e2a6c;
  }

  .testimonial-grid span {
    font-size: 14px;
  }

  .cta {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 16px;
    margin: 28px 0 0;
    padding: 30px 22px 32px;
    border-radius: 24px 24px 0 0;
    box-shadow: 0 22px 54px rgba(65, 78, 255, 0.28);
  }

  .cta h2 {
    font-size: 22px;
    line-height: 1.4;
  }

  .cta p {
    font-size: 13.5px;
    line-height: 1.8;
  }

  .cta-art {
    display: none;
  }

  .cta-actions {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .cta-actions a {
    width: 100%;
    min-height: 50px;
    border-radius: 14px;
  }

  .hero-research .hero-grid {
    padding-bottom: 92px;
  }

  .research-search {
    grid-template-columns: 1fr;
    margin-top: 22px;
    padding: 8px;
    border-radius: 18px;
  }

  .research-search label {
    padding: 9px 14px;
    border-radius: 12px;
  }

  .research-search .primary-btn {
    grid-column: auto;
    min-height: 48px;
    padding: 0;
    border-radius: 12px;
  }

  .hero-tags {
    justify-content: center;
    gap: 8px;
  }

  .hero-tags span {
    font-size: 11.5px;
    padding: 5px 10px;
  }

  .hero-visual-research .stat-bubble {
    width: min(170px, 60vw);
    padding: 11px 13px;
  }

  .hero-visual-research .stat-bubble:first-of-type {
    top: 14px;
    right: 14px;
  }

  .hero-visual-research .stat-bubble.alt {
    left: 14px;
    bottom: 16px;
  }

  .hero-visual-research .stat-bubble b {
    font-size: 18px;
  }

  .research-types-bar {
    grid-template-columns: 1fr;
    margin-top: -28px;
    padding: 8px;
    border-radius: 18px;
    gap: 4px;
  }

  .research-types-bar article {
    padding: 14px 16px;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .research-types-bar article:last-child {
    border-bottom: 0;
  }

  .research-types-bar svg {
    width: 42px;
    height: 42px;
    padding: 10px;
  }

  .research-types-bar h4 {
    font-size: 14px;
  }

  .research-types-bar p {
    font-size: 11.5px;
  }

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

  .research-card {
    padding: 18px 14px 16px;
    border-radius: 16px;
  }

  .research-card .rc-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .research-card .rc-icon svg {
    width: 20px;
    height: 20px;
  }

  .research-card h3 {
    font-size: 13.5px;
  }

  .research-card p {
    font-size: 11.5px;
    line-height: 1.65;
  }

  .research-card a {
    font-size: 11.5px;
  }

  .packages-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .package {
    padding: 26px 22px 22px;
    border-radius: 20px;
  }

  .package.featured {
    transform: none;
  }

  .package h3 {
    font-size: 20px;
  }

  .package li {
    font-size: 12.5px;
  }

  .package .primary-btn {
    width: 100%;
    min-height: 50px;
    border-radius: 14px;
  }

  .why-research {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 26px 22px;
    border-radius: 22px;
  }

  .why-research h2 {
    font-size: 22px;
    line-height: 1.4;
  }

  .why-research > .why-copy > p {
    font-size: 14px;
  }

  .why-list {
    gap: 8px;
  }

  .why-list li {
    padding: 10px 12px;
    font-size: 12.5px;
    border-radius: 14px;
  }

  .why-list svg {
    width: 20px;
    height: 20px;
  }

  .why-visual {
    min-height: 240px;
    border-radius: 18px;
  }

  .why-photo {
    background-size: 540px auto;
    background-position: center bottom;
  }

  .why-stat {
    left: 14px;
    bottom: 14px;
    padding: 10px 14px;
    border-radius: 12px;
  }

  .why-stat svg {
    width: 32px;
    height: 32px;
    padding: 7px;
  }

  .why-stat b {
    font-size: 18px;
  }

  .why-stat span {
    font-size: 11px;
    max-width: 180px;
  }

  /* Internal pages mobile polish */
  .hero-compact {
    padding-bottom: 50px;
  }

  .page-head {
    padding: 30px 0 22px;
  }

  .page-head h1 {
    font-size: clamp(26px, 7vw, 32px);
  }

  .page-head p {
    font-size: 14.5px;
  }

  .breadcrumb {
    font-size: 11px;
    padding: 5px 12px;
  }

  .head-stats {
    gap: 6px;
  }

  .head-stats span {
    font-size: 11px;
    padding: 5px 10px;
  }

  .contact-cards {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 18px;
  }

  .contact-cards article {
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    text-align: right;
  }

  .contact-cards svg {
    grid-row: span 3;
    width: 40px;
    height: 40px;
    margin: 0;
    padding: 10px;
  }

  .contact-cards h3 {
    font-size: 14px;
  }

  .contact-cards p {
    font-size: 12px;
  }

  .contact-cards a {
    margin-top: 4px;
    font-size: 13px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 24px;
  }

  .contact-form,
  .order-form,
  .side-card,
  .project-main {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .order-form .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form .primary-btn,
  .order-form .primary-btn {
    justify-self: stretch;
    width: 100%;
  }

  .map-art {
    height: 160px;
  }

  .quick-stats {
    grid-template-columns: repeat(3, 1fr);
    padding: 10px;
  }

  .quick-stats svg {
    width: 28px;
    height: 28px;
    padding: 6px;
  }

  .quick-stats b {
    font-size: 13px;
  }

  .quick-stats span {
    font-size: 10.5px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-grid summary {
    padding: 14px 16px;
    font-size: 13.5px;
  }

  .faq-grid p {
    padding: 0 16px 14px;
    font-size: 12.5px;
  }

  .order-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 24px;
  }

  .form-step {
    grid-template-columns: auto 1fr;
    gap: 12px;
  }

  .step-num {
    width: 36px;
    height: 36px;
    font-size: 14px;
    border-radius: 10px;
  }

  .form-step h3 {
    font-size: 14px;
  }

  .form-step p {
    font-size: 11.5px;
  }

  .upload-box {
    padding: 22px 16px;
  }

  .trust-bar {
    grid-template-columns: 1fr 1fr;
    padding: 14px;
    gap: 8px;
  }

  .trust-bar article {
    padding: 8px 12px;
    border-left: 0;
  }

  .trust-bar svg {
    width: 38px;
    height: 38px;
    padding: 9px;
  }

  .trust-bar b {
    font-size: 16px;
  }

  .majors-section {
    gap: 16px;
    margin-top: 22px;
  }

  .major-block {
    padding: 18px 16px;
    border-radius: 18px;
  }

  .major-block > header {
    gap: 12px;
    margin-bottom: 14px;
    padding-bottom: 12px;
  }

  .block-num {
    width: 44px;
    height: 44px;
    font-size: 15px;
    border-radius: 12px;
  }

  .major-block h2 {
    font-size: 17px;
  }

  .major-block > header p {
    font-size: 12px;
  }

  .majors-cta {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 22px;
    text-align: center;
  }

  .majors-cta .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .majors-cta .cta-actions a {
    width: 100%;
  }

  .library-search {
    grid-template-columns: auto 1fr;
    padding: 6px;
    margin-top: 22px;
  }

  .library-search input {
    padding: 10px 6px;
    font-size: 13px;
  }

  .library-search .primary-btn {
    grid-column: 1 / -1;
    min-height: 42px;
  }

  .quick-tags {
    gap: 6px;
  }

  .quick-tags a {
    padding: 4px 10px;
    font-size: 11.5px;
  }

  .library-categories {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 18px;
  }

  .library-categories article {
    padding: 14px;
    gap: 10px;
  }

  .library-categories svg {
    width: 40px;
    height: 40px;
    padding: 10px;
  }

  .library-categories b {
    font-size: 17px;
  }

  .library-categories h3 {
    font-size: 11.5px;
  }

  .featured-banner {
    grid-template-columns: 1fr;
    margin-top: 24px;
    border-radius: 20px;
  }

  .featured-text {
    padding: 26px 22px;
  }

  .featured-text h2 {
    font-size: 20px;
  }

  .featured-art {
    min-height: 160px;
    background-size: 540px auto;
    background-position: center;
  }

  .lib-head {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .lib-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }

  .lib-tabs button {
    flex: none;
    padding: 8px 14px;
    font-size: 12.5px;
  }

  .library-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .lib-thumb {
    height: 100px;
  }

  .lib-body {
    padding: 12px;
  }

  .lib-body h3 {
    font-size: 12.5px;
    line-height: 1.4;
    min-height: auto;
  }

  .lib-meta {
    font-size: 11px;
  }

  .lib-foot {
    margin-top: 10px;
    padding-top: 10px;
  }

  .lib-foot > span,
  .lib-foot a {
    font-size: 11px;
  }

  .pagination button {
    min-width: 34px;
    height: 34px;
    font-size: 12px;
  }

  .newsletter {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 26px 22px;
    border-radius: 22px;
    text-align: center;
  }

  .newsletter svg {
    margin: 0 auto;
  }

  .newsletter form {
    flex-direction: column;
    padding: 8px;
  }

  .newsletter input {
    text-align: center;
  }

  .newsletter .primary-btn {
    width: 100%;
  }

  .featured-project {
    grid-template-columns: 1fr;
    margin-top: 22px;
    border-radius: 22px;
  }

  .fp-image {
    min-height: 220px;
  }

  .fp-image > svg {
    width: 60px;
    height: 60px;
    padding: 16px;
  }

  .fp-info {
    padding: 26px 22px;
  }

  .fp-info h2 {
    font-size: 20px;
  }

  .fp-info p {
    font-size: 13.5px;
  }

  .fp-meta {
    gap: 8px 14px;
    font-size: 11.5px;
  }

  .fp-actions {
    flex-direction: column;
  }

  .fp-actions a {
    width: 100%;
  }

  .fp-price > b {
    font-size: 22px;
  }

  .projects-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .filter-tabs button {
    flex: none;
    font-size: 12.5px;
    padding: 8px 14px;
  }

  .why-projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .why-projects-grid article {
    padding: 18px 14px;
    border-radius: 16px;
  }

  .why-projects-grid svg {
    width: 44px;
    height: 44px;
    padding: 11px;
    border-radius: 14px;
  }

  .why-projects-grid h3 {
    font-size: 14px;
  }

  .why-projects-grid p {
    font-size: 11.5px;
  }

  .project-hero {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 22px;
  }

  .ph-image {
    min-height: 240px;
  }

  .ph-image > svg {
    width: 56px;
    height: 56px;
    padding: 14px;
  }

  .ph-side {
    padding: 18px;
  }

  .ph-side article {
    padding: 10px 0;
  }

  .ph-side svg {
    width: 32px;
    height: 32px;
    padding: 8px;
  }

  .ph-side article > b {
    font-size: 12px;
  }

  .project-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .project-main h2 {
    font-size: 20px;
  }

  .project-main h3 {
    margin-top: 22px;
    font-size: 16px;
  }

  .project-main p {
    font-size: 13.5px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .result-stats {
    grid-template-columns: repeat(2, 1fr);
    padding: 16px;
  }

  .result-stats b {
    font-size: 22px;
  }

  .screenshots {
    grid-template-columns: 1fr;
  }

  .screenshots .thumb {
    height: 140px;
  }

  .price-card > b {
    font-size: 30px;
  }

  .check-list li {
    font-size: 13px;
  }

  .tech-tags span {
    font-size: 11.5px;
    padding: 6px 12px;
  }

  /* Project detail mobile */
  .hero-project h1 {
    font-size: clamp(24px, 7vw, 30px);
    margin-top: 12px;
  }

  .ph-subtitle {
    font-size: 14px;
  }

  .ph-layout {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 22px;
  }

  .ph-screen {
    min-height: 220px;
    border-radius: 16px;
  }

  .ph-screen-image {
    inset: 14px;
    border-radius: 10px;
  }

  .ph-play {
    width: 60px;
    height: 60px;
  }

  .ph-play svg {
    width: 22px;
    height: 22px;
  }

  .ph-screen-tag {
    bottom: 12px;
    right: 12px;
    padding: 5px 12px;
    font-size: 11px;
  }

  .ph-card {
    padding: 18px;
    border-radius: 16px;
  }

  .ph-card-row {
    padding: 12px 0;
  }

  .ph-card-row svg {
    width: 34px;
    height: 34px;
    padding: 8px;
  }

  .ph-card-row > div b {
    font-size: 13px;
  }

  .ph-meta-row {
    grid-template-columns: 1fr 1fr;
    padding: 8px;
    gap: 6px;
    margin-top: 22px;
  }

  .ph-meta-row article {
    padding: 10px 12px;
    gap: 10px;
    border-left: 0;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
  }

  .ph-meta-row svg {
    width: 32px;
    height: 32px;
    padding: 7px;
  }

  .ph-meta-row b {
    font-size: 12px;
  }

  .ph-meta-row span {
    font-size: 10.5px;
  }

  .proj-section {
    padding-top: 32px;
  }

  .proj-grid-2 {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .proj-block {
    padding: 20px 18px 18px;
    border-radius: 18px;
  }

  .proj-head {
    gap: 12px;
    margin-bottom: 14px;
    padding-bottom: 12px;
  }

  .proj-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  .proj-icon svg {
    width: 18px;
    height: 18px;
  }

  .proj-block h2 {
    font-size: 17px;
  }

  .proj-paragraph p {
    font-size: 14px;
    line-height: 1.9;
  }

  .teal-list li {
    padding: 10px 12px;
    font-size: 13px;
  }

  .teal-list li svg {
    width: 20px;
    height: 20px;
    padding: 4px;
  }

  .proj-section-head h2 {
    font-size: 22px;
  }

  .proj-section-head p {
    font-size: 13px;
  }

  .proj-tech-section {
    padding: 24px 18px;
    border-radius: 20px;
    margin-top: 28px;
  }

  .proj-tech-grid {
    gap: 8px;
  }

  .proj-tech-grid span {
    padding: 8px 14px;
    font-size: 12px;
  }

  .proj-shots {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .proj-shot .thumb {
    height: 120px;
    border-radius: 12px;
  }

  .proj-shot span {
    font-size: 12px;
  }

  .proj-results-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .proj-results-grid article {
    padding: 22px 14px 18px;
    border-radius: 16px;
  }

  .proj-results-grid svg {
    width: 44px;
    height: 44px;
    padding: 11px;
    margin-bottom: 10px;
    border-radius: 12px;
  }

  .proj-results-grid b {
    font-size: 24px;
  }

  .proj-results-grid span {
    font-size: 11.5px;
  }

  .proj-deliverables {
    padding: 28px 18px;
    border-radius: 22px;
  }

  .pd-head h2 {
    font-size: 20px;
  }

  .pd-head p {
    font-size: 13.5px;
  }

  .pd-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .pd-grid article {
    padding: 18px 12px;
    border-radius: 14px;
  }

  .pd-grid svg {
    width: 42px;
    height: 42px;
    padding: 10px;
    margin-bottom: 10px;
  }

  .pd-grid h3 {
    font-size: 13px;
  }

  .pd-grid p {
    font-size: 11.5px;
  }

  .proj-similar-cta {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 18px;
    padding: 26px 22px;
    border-radius: 22px 22px 0 0;
  }

  .psc-art {
    width: 100%;
    max-width: 280px;
    height: 120px;
    margin-inline: auto;
  }

  .psc-content h2 {
    font-size: 20px;
  }

  .psc-content p {
    font-size: 13.5px;
  }

  .psc-actions {
    justify-content: center;
    flex-direction: column;
    width: 100%;
  }

  .psc-actions a {
    width: 100%;
  }

  .psc-stat {
    padding: 14px 20px;
  }

  .psc-stat b {
    font-size: 24px;
  }

  /* Projects listing mobile */
  .hero-projects {
    padding-bottom: 60px;
  }

  .projects-hero {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 20px 0 14px;
  }

  .ph-art {
    min-height: 200px;
    border-radius: 18px;
  }

  .ph-book {
    width: 100px;
    height: 130px;
  }

  .ph-content h1 {
    font-size: clamp(28px, 7.5vw, 36px);
    margin-top: 10px;
  }

  .ph-tagline {
    font-size: 13px;
  }

  .ph-desc {
    font-size: 14px;
    line-height: 1.85;
  }

  .ph-tags {
    gap: 6px;
  }

  .ph-tags span {
    padding: 5px 10px;
    font-size: 11px;
  }

  .featured-banner-projects {
    margin-top: -20px;
    padding: 16px;
    border-radius: 22px;
  }

  .fbp-wrap {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .fbp-image {
    height: 180px;
    border-radius: 14px;
  }

  .fbp-info h2 {
    font-size: 18px;
  }

  .fbp-info p {
    font-size: 13px;
  }

  .fbp-meta {
    gap: 6px 12px;
    font-size: 11.5px;
  }

  .fbp-info > .primary-btn {
    width: 100%;
    margin-top: 10px;
  }

  .fbp-price {
    flex-direction: column;
    padding: 16px 20px;
  }

  .fbp-price > b {
    font-size: 26px;
  }

  .projects-toolbar-2 {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .pt-title h2 {
    font-size: 22px;
  }

  .pt-controls {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .pt-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .pt-tabs button {
    flex: none;
    font-size: 12px;
    padding: 7px 14px;
  }

  .pt-sort {
    width: 100%;
    justify-content: center;
  }

  .proj-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .pc-thumb {
    height: 120px;
  }

  .pc-fav {
    width: 28px;
    height: 28px;
  }

  .pc-fav svg {
    width: 14px;
    height: 14px;
  }

  .pc-badge {
    padding: 3px 9px;
    font-size: 9.5px;
  }

  .pc-body {
    padding: 12px 12px 14px;
  }

  .pc-cat {
    font-size: 10.5px;
  }

  .pc-body h3 {
    font-size: 12.5px;
    line-height: 1.4;
    min-height: 36px;
  }

  .pc-rate svg {
    width: 12px;
    height: 12px;
  }

  .pc-rate small {
    font-size: 10.5px;
  }

  .pc-foot {
    flex-wrap: wrap;
    gap: 8px;
  }

  .pc-price b {
    font-size: 16px;
  }

  .pc-foot .primary-btn.small {
    flex: 1 1 auto;
    min-height: 32px;
    padding: 0 12px;
    font-size: 11px;
  }

  .pagination-row {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .pagination-row .secondary-btn {
    width: 100%;
  }

  .qc-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .qc-card {
    padding: 18px 14px;
    border-radius: 16px;
  }

  .qc-card svg {
    width: 44px;
    height: 44px;
    padding: 12px;
    border-radius: 12px;
  }

  .qc-card h3 {
    font-size: 13.5px;
  }

  .qc-card small {
    font-size: 11px;
  }

  .proj-bottom-cta {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 22px 18px;
    text-align: center;
    border-radius: 22px 22px 0 0;
  }

  .pbc-art {
    height: 120px;
    background-size: 480px auto;
    background-position: center;
  }

  .pbc-content h2 {
    font-size: 20px;
  }

  .pbc-content p {
    font-size: 13px;
  }

  .pbc-actions {
    flex-direction: column;
    width: 100%;
  }

  .pbc-actions a {
    width: 100%;
  }
  .footer {
    border-radius: 24px 24px 0 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 30px 0 18px;
    text-align: right;
  }

  .footer-brand {
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
  }

  .footer-brand .brand {
    justify-content: center;
  }

  .footer-brand p {
    max-width: 32rem;
    margin: 14px auto 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13.5px;
  }

  .socials {
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
  }

  .socials a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.06);
  }

  .footer-col {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .footer-col h3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    padding: 16px 4px;
    color: #fff;
    font-size: 15px;
  }

  .footer-col-toggle h3 {
    cursor: pointer;
  }

  .footer-col-caret {
    width: 18px;
    height: 18px;
    color: rgba(255, 255, 255, 0.65);
    transition: transform 220ms ease;
  }

  .footer-col-toggle.is-open .footer-col-caret {
    transform: rotate(180deg);
  }

  .footer-col-body {
    display: grid;
    gap: 6px;
    max-height: 0;
    overflow: hidden;
    padding-inline: 4px;
    transition: max-height 280ms ease, padding 280ms ease, opacity 220ms ease;
    opacity: 0;
  }

  .footer-col-toggle.is-open .footer-col-body {
    max-height: 520px;
    padding-bottom: 18px;
    opacity: 1;
  }

  .footer-contact .footer-col-body {
    max-height: none;
    padding: 4px 4px 22px;
    opacity: 1;
  }

  .footer-col-body a,
  .footer-col-body p {
    margin: 0;
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13.5px;
  }

  .footer-col-body p {
    gap: 10px;
  }

  .footer-col-body svg {
    flex: none;
    color: #6fa6ff;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 14px;
    padding: 20px 0 26px;
    text-align: center;
  }

  .footer-bottom > span {
    order: 2;
    color: rgba(255, 255, 255, 0.6);
    font-size: 11.5px;
    line-height: 1.7;
  }

  .footer-bottom div {
    order: 1;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  .footer-bottom a {
    padding: 6px 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    font-size: 11.5px;
  }
}
