:root {
  --bg: #e9eef6;
  --header-bg: #ffffff;
  --text: #101938;
  --muted: #4b5e7f;
  --line: #d8deea;
  --blue: #3d63f4;
  --cyan: #1baed8;
}

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

body {
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  padding-top: 128px;
}

html {
  scroll-behavior: smooth;
}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1400;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 60px;
  padding: 0 20px 0 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 18px 32px rgba(18, 140, 126, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 38px rgba(18, 140, 126, 0.38);
}

.floating-whatsapp-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.16);
  flex-shrink: 0;
}

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

.floating-whatsapp-text {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.testimonial-rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 0;
  margin-bottom: 16px;
}

.testimonial-rating .stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.testimonial-rating .star {
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 1;
  color: #d7deeb;
}

.testimonial-rating .star.filled {
  color: #f5b301;
}

.testimonial-rating .star.half {
  color: #d7deeb;
}

.testimonial-rating .star.half::before {
  content: "\2605";
  position: absolute;
  inset: 0 auto 0 0;
  width: 50%;
  overflow: hidden;
  color: #f5b301;
}

@media (max-width: 760px) {
  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    min-height: 54px;
    padding: 0 16px 0 12px;
    gap: 8px;
  }

  .floating-whatsapp-icon {
    width: 34px;
    height: 34px;
  }

  .floating-whatsapp-icon svg {
    width: 20px;
    height: 20px;
  }

  .floating-whatsapp-text {
    font-size: 14px;
  }
}

.container {
  width: min(1240px, calc(100% - 96px));
  margin: 0 auto;
}

.site-header {
  background: rgba(255, 255, 255, 0.62);
  border-bottom: 1px solid rgba(196, 209, 230, 0.6);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  box-shadow: 0 8px 20px rgba(26, 49, 92, 0.08);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.header-topbar {
  background: #ffffff;
  border-bottom: 1px solid rgba(25, 41, 78, 0.08);
  padding: 4px 0;
}

.header-topbar-wrap {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.header-contact-strip {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.header-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #111111;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.header-contact-item:hover {
  color: #000000;
}

.header-contact-icon {
  font-size: 12px;
  line-height: 1;
}

.header-socials {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-socials a {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #111111;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  background: rgba(17, 17, 17, 0.04);
  border: 1px solid rgba(17, 17, 17, 0.1);
}

.header-socials a:hover {
  background: rgba(17, 17, 17, 0.08);
}

.nav-wrap {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0;
}

.brand-image {
  width: 120px;
  height: auto;
  display: block;
}

.menu {
  display: flex;
  align-items: center;
  gap: 44px;
}

.menu a {
  text-decoration: none;
  color: #566a8d;
  font-size: 15px;
  font-weight: 500;
}

.menu a.active {
  color: #3e7eff;
}

.menu .menu-item-about {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.menu .menu-item-about > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.menu .menu-item-about > a::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid currentColor;
  margin-top: 2px;
}

.menu .about-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 240px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #d8e2f2;
  border-radius: 14px;
  box-shadow: 0 14px 24px rgba(24, 46, 89, 0.14);
  padding: 8px;
  display: grid;
  gap: 2px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.16s ease, transform 0.16s ease;
  z-index: 1200;
}

.menu .about-dropdown-close {
  position: absolute;
  right: 8px;
  top: 8px;
  width: 26px;
  height: 26px;
  border: 1px solid #d4deee;
  border-radius: 8px;
  background: #ffffff;
  color: #627ba2;
  font-size: 16px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.menu .about-dropdown a {
  color: #3f557a;
  font-size: 14px;
  font-weight: 500;
  padding: 9px 10px;
  border-radius: 9px;
  text-decoration: none;
}

.menu .about-dropdown a:first-of-type {
  margin-top: 28px;
}

.menu .about-dropdown a:hover {
  background: #edf3ff;
  color: #2f67dd;
}

.menu .menu-item-about:hover .about-dropdown,
.menu .menu-item-about:focus-within .about-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.menu .menu-item-about.force-open .about-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.menu .menu-item-about.force-closed .about-dropdown {
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateX(-50%) translateY(8px) !important;
}

.menu .menu-item-about.active > a {
  color: #3e7eff;
}

.nav-cta {
  border: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  background: linear-gradient(90deg, #2f71ff, #4f39e4);
  border-radius: 999px;
  min-height: 50px;
  padding: 0 30px;
  box-shadow: 0 12px 20px rgba(39, 89, 226, 0.28);
  cursor: pointer;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: #324a74;
  border-radius: 99px;
}

.menu-toggle span + span {
  margin-top: 5px;
}

.hero {
  min-height: calc(100vh - 128px);
  padding: 62px 0 14px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 46px;
}

.badge {
  display: inline-flex;
  align-items: center;
  border: 2px solid #bbcff7;
  border-radius: 999px;
  padding: 8px 20px 8px 14px;
  color: #2755bc;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 30px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2f66e9;
  margin-right: 14px;
}

h1 {
  font-size: clamp(48px, 4.25vw, 72px);
  line-height: 1.09;
  font-weight: 700;
  letter-spacing: -1px;
}

h1 .gradient {
  display: block;
  margin-top: 8px;
  background: linear-gradient(90deg, #3159ef, #1aaad6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy p {
  margin-top: 22px;
  max-width: 640px;
  color: #3f5271;
  font-size: clamp(17px, 1.06vw, 19px);
  line-height: 1.58;
  font-weight: 400;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.hero-trust-points {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #4d6388;
  font-size: 14px;
  font-weight: 500;
}

.trust-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #22b663;
  color: #22b663;
  display: grid;
  place-items: center;
  font-size: 13px;
  line-height: 1;
}

.btn {
  border-radius: 999px;
  min-height: 54px;
  padding: 0 34px;
  font-size: 17px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
}

.btn-primary {
  border: 0;
  color: #fff;
  background: linear-gradient(90deg, #2f71ff, #4b36e2);
}

.btn-outline {
  border: 2px solid #141d3d;
  color: #111a35;
  background: transparent;
}

.hero-media {
  margin-bottom: -1px;
}

.photo-wrap {
  position: relative;
  border-radius: 34px;
  padding: 8px;
  border: 6px solid #f2f6ff;
  box-shadow:
    0 20px 34px rgba(29, 55, 106, 0.2),
    inset 0 0 0 1px rgba(255, 255, 255, 0.6);
  overflow: hidden;
}

.photo-wrap img {
  width: 100%;
  height: min(66vh, 610px);
  min-height: 500px;
  object-fit: cover;
  display: block;
  border-radius: 26px;
}

.placement-card {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  min-height: 92px;
  background: rgba(244, 247, 250, 0.95);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
}

.small {
  color: #657391;
  font-size: 12px;
  font-weight: 500;
}

.count {
  margin-top: 2px;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.05;
}

.avatars {
  display: flex;
  align-items: center;
}

.avatars span {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid #f4f7fa;
  background: radial-gradient(circle at 28% 22%, #4b596f 0, #0f1625 65%);
  margin-left: -10px;
}

.avatars span:first-child {
  margin-left: 0;
}

.services {
  padding: 58px 0 62px;
  background: var(--bg);
}

.services-wrap {
  width: min(1520px, calc(100% - 110px));
}

.services-head {
  text-align: center;
}

.services-head h2 {
  font-size: 38px;
  font-weight: 600;
  line-height: 1.1;
  color: #0f193b;
}

.services-line {
  display: block;
  width: 96px;
  height: 4px;
  margin: 12px auto 24px;
  background: #f14f4f;
}

.services-head p {
  max-width: 760px;
  margin: 0 auto;
  color: #334e72;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
}

.services-layout {
  margin-top: 54px;
  min-height: 520px;
  position: relative;
}

.service-card {
  position: absolute;
  width: 300px;
  background: #f7f8fb;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(35, 51, 89, 0.12);
  padding: 18px 18px 16px;
}

.service-card h3 {
  color: #0f193b;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
}

.service-card p {
  margin-top: 8px;
  color: #4f6788;
  font-size: 12px;
  line-height: 1.35;
}

.service-icon {
  position: absolute;
  right: -18px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 16px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.service-icon.pink {
  background: #eb4ca4;
}

.service-icon.coral {
  background: #f77070;
}

.service-icon.magenta {
  background: #ef67b2;
}

.service-icon.yellow {
  background: #efc20c;
}

.service-icon.green {
  background: #3dd27f;
}

.service-icon.red {
  background: #f15353;
}

.card-top-left {
  top: 0;
  left: 320px;
}

.card-top-right {
  top: 0;
  right: 320px;
}

.card-left {
  top: 195px;
  left: 20px;
}

.card-right {
  top: 195px;
  right: 20px;
}

.card-bottom-left {
  top: 380px;
  left: 250px;
}

.card-bottom-right {
  top: 380px;
  right: 250px;
}

.services-center {
  position: absolute;
  left: 50%;
  top: 53%;
  transform: translate(-50%, -50%);
}

.center-ring {
  width: 270px;
  height: 270px;
  border-radius: 50%;
  padding: 12px;
  background: #e8edf6;
  box-shadow: 0 14px 24px rgba(42, 53, 86, 0.1);
}

.center-ring img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.why-choose {
  padding: 54px 0 76px;
  background: var(--bg);
}

.why-wrap h2 {
  text-align: center;
  color: #0f193b;
  font-size: 44px;
  font-weight: 600;
  line-height: 1.15;
}

.why-grid {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.why-grid-bottom {
  margin-top: 34px;
}

.why-card {
  background: #f3f5f8;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #dfe4ee;
}

.why-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.why-body {
  padding: 20px 24px 18px;
}

.why-body h3 {
  color: #0f193b;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 700;
}

.why-body p {
  margin-top: 12px;
  color: #334e72;
  font-size: 12px;
  line-height: 1.55;
}

.apply {
  padding: 58px 0 84px;
  background: var(--bg);
}

.apply-wrap {
  width: min(1220px, calc(100% - 96px));
}

.apply-head {
  text-align: center;
}

.apply-head h2 {
  color: #0f193b;
  font-size: 52px;
  line-height: 1.1;
  font-weight: 700;
}

.apply-head p {
  margin: 18px auto 0;
  max-width: 840px;
  color: #334e72;
  font-size: 16px;
  line-height: 1.55;
}

.apply-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.apply-media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.apply-media img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
  transition: transform 0.28s ease;
}

.apply-media:hover {
  transform: scale(0.99);
}

.apply-media:hover img {
  transform: scale(1.05);
}

.apply-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 26px 24px;
  background: linear-gradient(180deg, rgba(15, 25, 59, 0) 0%, rgba(15, 25, 59, 0.88) 55%, rgba(15, 25, 59, 0.96) 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.apply-overlay ul {
  list-style: none;
}

.apply-overlay li {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 500;
  margin-top: 10px;
  position: relative;
  padding-left: 22px;
}

.apply-overlay li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid #2f9dff;
  position: absolute;
  left: 0;
  top: 7px;
}

.apply-right {
  display: grid;
  gap: 18px;
}

.apply-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.apply-mini-card {
  background: #f3f5f8;
  border: 1px solid #dfe4ee;
  border-radius: 18px;
  padding: 20px 22px;
  min-height: 164px;
  box-shadow: 0 8px 16px rgba(20, 33, 64, 0.06);
  cursor: pointer;
  transform: scale(1);
  transform-origin: center;
  will-change: transform;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.apply-mini-card:hover {
  transform: scale(1.08);
  box-shadow: 0 22px 38px rgba(20, 33, 64, 0.18);
}

.apply-mini-card h4 {
  color: #0f193b;
  font-size: 20px;
  line-height: 1.28;
  font-weight: 700;
}

.apply-mini-card p {
  margin-top: 10px;
  color: #4c6387;
  font-size: 17px;
  line-height: 1.48;
}

.apply-cta-card {
  background: #2f67dd;
  border-radius: 24px;
  padding: 28px 30px 30px;
  box-shadow: 0 14px 24px rgba(37, 76, 161, 0.22);
}

.apply-cta-card h3 {
  color: #08173b;
  font-size: 48px;
  line-height: 1.15;
  font-weight: 700;
}

.apply-cta-card p {
  margin-top: 12px;
  color: #edf4ff;
  font-size: 16px;
  line-height: 1.5;
}

.apply-cta-btn {
  margin-top: 18px;
  width: 100%;
  min-height: 52px;
  border: 2px solid #1e3d72;
  border-radius: 14px;
  background: #f4f7fb;
  color: #0d1f42;
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
}

.mission {
  padding: 28px 0 84px;
  background: var(--bg);
}

.mission-wrap {
  width: min(1140px, calc(100% - 180px));
}

.mission-card {
  border-radius: 56px;
  padding: 86px 70px 92px;
  background:
    radial-gradient(85% 120% at 50% 100%, rgba(84, 130, 205, 0.42) 0%, rgba(52, 89, 156, 0.18) 45%, rgba(9, 22, 62, 0.05) 100%),
    linear-gradient(102deg, #08153d 0%, #1c3668 45%, #09183f 100%);
  box-shadow: 0 24px 40px rgba(12, 26, 63, 0.2);
  text-align: center;
}

.mission-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  min-height: 42px;
  padding: 0 26px;
  border: 1px solid rgba(99, 152, 238, 0.38);
  background: rgba(51, 110, 199, 0.22);
  color: #5ca1ef;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
}

.mission-card h2 {
  margin-top: 26px;
  color: #ffffff;
  font-size: 76px;
  line-height: 1.08;
  font-weight: 700;
}

.mission-card p {
  margin: 28px auto 0;
  max-width: 900px;
  color: rgba(224, 234, 250, 0.76);
  font-size: 28px;
  line-height: 1.35;
  font-weight: 400;
}

.mission-card p strong {
  color: #f8fbff;
  font-weight: 700;
}

.mission-points {
  margin-top: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
}

.mission-point {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(187, 202, 226, 0.72);
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 600;
}

.mission-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(57, 104, 181, 0.26);
  border: 1px solid rgba(70, 127, 216, 0.32);
  color: #58a2f8;
  font-size: 24px;
}

.milestones {
  padding: 14px 0 62px;
  background: var(--bg);
}

.milestones-wrap {
  width: min(1320px, calc(100% - 120px));
}

.milestones-head {
  text-align: center;
}

.milestones-head h2 {
  color: #0f193b;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.15;
}

.milestones-head p {
  margin-top: 12px;
  color: #536d90;
  font-size: 14px;
  line-height: 1.4;
}

.milestones-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.milestone-card {
  background: #f3f5f8;
  border: 1px solid #dfe4ee;
  border-radius: 18px;
  min-height: 220px;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 18px 14px 16px;
  box-shadow: 0 8px 16px rgba(20, 33, 64, 0.07);
}

.milestone-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: #dfe6f2;
  color: #2f67dd;
  display: grid;
  place-items: center;
  font-size: 28px;
}

.milestone-card h3 {
  margin-top: 14px;
  color: #0f193b;
  font-size: 34px;
  line-height: 1.1;
  font-weight: 700;
}

.milestone-card p {
  margin-top: 6px;
  color: #4f698d;
  font-size: 13px;
  letter-spacing: 1.4px;
  font-weight: 600;
}

.home-testimonials-marquee {
  position: relative;
  overflow: hidden;
  padding: 18px 0 62px;
  background:
    radial-gradient(circle at top left, rgba(47, 103, 221, 0.08), transparent 24%),
    radial-gradient(circle at bottom right, rgba(87, 120, 255, 0.1), transparent 26%),
    linear-gradient(180deg, #e9eef6 0%, #eef3fb 100%);
}

.home-testimonials-marquee::before {
  content: "";
  position: absolute;
  left: -120px;
  top: 24px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(76, 117, 255, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.home-testimonials-marquee::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -10px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(23, 174, 216, 0.1) 0%, transparent 72%);
  pointer-events: none;
}

.home-testimonials-wrap {
  width: min(1320px, calc(100% - 120px));
  position: relative;
  z-index: 1;
}

.home-testimonials-head {
  text-align: center;
}

.home-testimonials-head p {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(47, 103, 221, 0.08);
  border: 1px solid rgba(47, 103, 221, 0.16);
  color: #2f67dd;
  font-size: 13px;
  letter-spacing: 2.8px;
  font-weight: 700;
}

.home-testimonials-head h2 {
  margin-top: 14px;
  color: #0f193b;
  font-size: clamp(38px, 4.4vw, 58px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.home-testimonials-marquee-window {
  margin-top: 34px;
  overflow: hidden;
  position: relative;
  padding: 10px 0;
}

.home-testimonials-marquee-window::before,
.home-testimonials-marquee-window::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 1;
  pointer-events: none;
}

.home-testimonials-marquee-window::before {
  left: 0;
  background: linear-gradient(90deg, #e9eef6 0%, rgba(233, 238, 246, 0) 100%);
}

.home-testimonials-marquee-window::after {
  right: 0;
  background: linear-gradient(270deg, #e9eef6 0%, rgba(233, 238, 246, 0) 100%);
}

.home-testimonials-track {
  display: flex;
  align-items: stretch;
  gap: 22px;
  width: max-content;
  animation: homeTestimonialsMove 24s linear infinite;
}

.home-testimonial-card {
  position: relative;
  width: 390px;
  min-height: 250px;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 248, 255, 0.95) 100%);
  border: 1px solid rgba(219, 228, 242, 0.96);
  box-shadow:
    0 20px 38px rgba(20, 35, 70, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  padding: 34px 30px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.home-testimonial-card::before {
  content: '"';
  position: absolute;
  right: 24px;
  top: 8px;
  color: rgba(47, 103, 221, 0.12);
  font-size: 110px;
  line-height: 1;
  font-weight: 800;
}

.home-testimonial-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #2f67dd 0%, #17aed8 100%);
}

.home-testimonial-card p {
  position: relative;
  z-index: 1;
  color: #334d72;
  font-size: 18px;
  line-height: 1.82;
}

.home-testimonial-card strong {
  position: relative;
  z-index: 1;
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #102347;
  font-size: 18px;
  font-weight: 700;
}

.home-testimonial-card strong::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2f67dd 0%, #17aed8 100%);
  box-shadow: 0 0 0 5px rgba(47, 103, 221, 0.08);
}

@keyframes homeTestimonialsMove {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 9px));
  }
}

.india-slider {
  padding: 10px 0 62px;
  background: var(--bg);
}

.india-slider-wrap {
  width: min(1160px, calc(100% - 220px));
}

.india-slider-frame {
  position: relative;
  height: 520px;
  border-radius: 38px;
  overflow: hidden;
}

.india-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
  overflow: hidden;
}

.india-slide.active {
  opacity: 1;
}

.india-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 12, 34, 0.08) 0%, rgba(3, 12, 34, 0.42) 100%);
}

.india-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.india-slide h3 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  color: #ffffff;
  font-size: 62px;
  line-height: 1.1;
  font-weight: 700;
  text-align: center;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.india-slider-dots {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.india-slider-dots button {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 0;
  background: #c9d2e2;
  cursor: pointer;
}

.india-slider-dots button.active {
  background: #6b89be;
}

.home-search-strip {
  padding: 24px 0 34px;
  background: var(--bg);
}

.home-search-wrap {
  width: min(1520px, calc(100% - 96px));
}

.home-search-bar {
  background: #f6f8fc;
  border-radius: 20px;
  padding: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr 200px;
  gap: 10px;
  align-items: center;
}

.home-search-field {
  min-height: 58px;
  border-radius: 14px;
  background: #eef2f8;
  border: 1px solid #e0e6f0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
}

.home-search-field span {
  font-size: 20px;
  color: #60779e;
}

.home-search-field input {
  width: 100%;
  border: 0;
  background: transparent;
  color: #334e72;
  font-size: 13px;
  font-family: inherit;
  outline: none;
}

.home-search-btn {
  min-height: 58px;
  border: 0;
  border-radius: 18px;
  color: #ffffff;
  font-size: 19px;
  font-weight: 600;
  background: linear-gradient(90deg, #2f71ff, #4f39e4);
  box-shadow: 0 10px 18px rgba(52, 95, 214, 0.22);
  cursor: pointer;
}

.site-footer {
  background: #09193f;
  padding: 58px 0 46px;
}

.footer-wrap {
  width: min(1380px, calc(100% - 120px));
}

.footer-top {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1.8fr;
  gap: 52px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(154, 176, 214, 0.18);
}

.footer-brand p {
  margin-top: 0;
  max-width: 320px;
  color: #98add3;
  font-size: 13px;
  line-height: 1.5;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.footer-logo {
  width: 112px;
  height: 82px;
  overflow: hidden;
  background: #ffffff;
  flex-shrink: 0;
}

.footer-logo-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.footer-col h3 {
  color: #ffffff;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 12px;
}

.footer-col a,
.footer-col p {
  display: block;
  color: #98add3;
  text-decoration: none;
  font-size: 13px;
  line-height: 1.5;
  margin: 2px 0 0;
}

.footer-address {
  max-width: 320px;
}

.footer-contact-info {
  display: grid;
  gap: 4px;
  align-content: start;
}

.footer-contact-info p {
  margin: 0;
}

.footer-map-card {
  margin-top: 14px;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(152, 173, 211, 0.22);
}

.footer-map-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 14px;
  background: #1d63d1;
  color: #ffffff !important;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.footer-map-link:hover {
  color: #ffffff !important;
}

.footer-map-card iframe {
  display: block;
  width: 100%;
  height: 220px;
  border: 0;
}

.footer-top > .footer-col:last-child {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  column-gap: 18px;
  row-gap: 10px;
  align-items: start;
}

.footer-top > .footer-col:last-child h3 {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.footer-top > .footer-col:last-child .footer-contact-info {
  grid-column: 1;
  align-self: start;
}

.footer-top > .footer-col:last-child .footer-map-card {
  grid-column: 2;
  grid-row: 2;
  margin-top: 0;
  align-self: start;
}

.footer-col a:hover {
  color: #ffffff;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
}

.footer-links {
  display: inline-flex;
  align-items: center;
  gap: 28px;
}

.footer-links a {
  color: #6f86b0;
  text-decoration: none;
  font-size: 12px;
}

.footer-bottom p {
  margin-top: 10px;
  color: #6f86b0;
  font-size: 12px;
}

.services-page .services-hero {
  min-height: 78vh;
  padding: 120px 0 96px;
  border-bottom: 1px solid #dfe5ef;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.services-page .services-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(8, 20, 46, 0.68) 0%, rgba(8, 20, 46, 0.68) 100%),
    url("https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&w=2200&q=80");
  background-size: 102% auto;
  background-position: center center;
  transform: scale(0.94);
  animation: servicesHeroSlowZoom 38s ease-in-out infinite alternate;
  z-index: 0;
}

.services-page .services-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 25, 55, 0.24) 0%, rgba(11, 25, 55, 0.08) 50%, rgba(11, 25, 55, 0.24) 100%);
  z-index: 0;
}

.services-page .services-hero-wrap {
  width: min(1120px, calc(100% - 220px));
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.services-page .services-hero h1 {
  font-size: 60px;
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.services-page .services-hero p {
  margin: 22px auto 0;
  max-width: 980px;
  color: #dee8ff;
  font-size: 25px;
  line-height: 1.42;
  font-weight: 500;
}

@keyframes servicesHeroSlowZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.12);
  }
}

.services-page .services-catalog {
  padding: 64px 0 100px;
  background: #e9eef6;
}

.services-page .services-catalog-wrap {
  width: min(1180px, calc(100% - 220px));
}

.services-page .plans-block {
  margin: 4px 0 24px;
}

.services-page .plans-dropdown {
  margin-top: 24px;
  width: min(980px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.services-page .plans-head {
  text-align: center;
}

.services-page .plans-head h2 {
  color: #0f193b;
  font-size: 52px;
  line-height: 1.1;
  font-weight: 700;
}

.services-page .plans-head p {
  margin: 16px auto 0;
  max-width: 760px;
  color: #3f5477;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 400;
}

.services-page .plans-tabs {
  width: max-content;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4px;
  border: 1px solid #d0d9e9;
  background: #f3f6fb;
  border-radius: 14px;
  padding: 4px;
}

.services-page .plans-tabs button {
  min-height: 46px;
  border: 0;
  border-radius: 10px;
  padding: 0 30px;
  background: transparent;
  color: #425879;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: none;
}

.services-page .plans-tabs button.active {
  color: #ffffff;
  background: linear-gradient(90deg, #2f71ff, #4f39e4);
  box-shadow: 0 8px 16px rgba(47, 103, 221, 0.26);
}

.services-page .plans-panel {
  margin-top: 28px;
  display: none;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.services-page .plans-panel.active {
  display: grid;
}

.services-page .plans-panel[hidden] {
  display: none !important;
}

.services-page .plan-card {
  position: relative;
  border: 1.5px solid #dde5f0;
  border-radius: 34px;
  background: #ffffff;
  height: 292px;
  min-height: 292px;
  padding: 16px 16px 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0;
  overflow: hidden;
}

.services-page .plan-card.featured {
  border-color: #2f67dd;
  box-shadow: 0 14px 28px rgba(28, 54, 102, 0.12);
}

.services-page .plan-title {
  color: #2f67dd;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.2;
  margin: 0 auto;
}

.services-page .save-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 14px;
  border-radius: 8px;
  background: #22c55e;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
}

.services-page .old-price {
  margin: 5px auto 0;
  color: #96a7c4;
  text-decoration: line-through;
  font-size: 20px;
  line-height: 1;
  font-weight: 600;
}

.services-page .new-price {
  margin: 4px auto 0;
  color: #0f193b;
  font-size: 38px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.services-page .session-pill {
  margin: 8px auto 0;
  padding: 6px 12px;
  border-radius: 999px;
  background: #ecf1f8;
  color: #596f93;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
}

.services-page .plan-meta {
  margin: 8px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-page .seat-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  border-radius: 999px;
  border: 1.5px solid #2f67dd;
  color: #2f67dd;
  font-size: 12px;
  font-weight: 600;
  padding: 0 14px;
}

.services-page .seat-count.low-seat {
  border-color: #e53935;
  color: #e53935;
}

.services-page .plan-standalone {
  margin-top: 4px;
  color: #9aaaca;
  font-size: 14px;
  font-style: italic;
  line-height: 1.45;
}

.services-page .plan-services {
  margin-top: 10px;
  padding: 0;
  list-style: none;
  width: 100%;
  display: grid;
  gap: 8px;
}

.services-page .plan-extra {
  width: 100%;
  margin-top: 0;
  max-height: 120px;
  overflow: hidden;
  position: relative;
}

.services-page .plan-extra::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 92%);
}

.services-page .plan-card.expanded .plan-extra {
  max-height: 900px;
  margin-bottom: 10px;
}

.services-page .plan-card.expanded {
  height: auto;
  min-height: 292px;
}

.services-page .plan-card.expanded .plan-extra::after {
  display: none;
}

.services-page .plan-more-btn {
  margin-top: 8px;
  margin-bottom: 6px;
  min-height: 30px;
  border: 1px solid #b8c7df;
  border-radius: 999px;
  padding: 0 12px;
  color: #2f67dd;
  background: #f3f7ff;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.services-page .plan-services li {
  position: relative;
  padding-left: 28px;
  color: #1f3961;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 500;
}

.services-page .plan-services li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1.5px solid #2f67dd;
}

.services-page .plan-services li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 10px;
  width: 8px;
  height: 4px;
  border-left: 2px solid #2f67dd;
  border-bottom: 2px solid #2f67dd;
  transform: rotate(-45deg);
}

.services-page .plan-note {
  margin-top: 20px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px dashed #b7cdf8;
  background: #eaf2ff;
  color: #2f67dd;
  font-size: 11px;
  line-height: 1.45;
  font-weight: 700;
}

.services-page .buy-btn {
  margin-top: auto;
  width: 100%;
  min-height: 42px;
  border: 0;
  border-radius: 16px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  background: linear-gradient(90deg, #2f71ff, #4f39e4);
  box-shadow: 0 10px 18px rgba(47, 103, 221, 0.24);
  cursor: pointer;
}

.services-page .services-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.services-page .service-offer-card {
  display: flex;
  flex-direction: column;
  background: #f5f7fb;
  border: 1px solid #dde4ef;
  border-radius: 20px;
  padding: 30px 30px 24px;
}

.services-page .offer-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 34px;
  margin-bottom: 20px;
}

.services-page .offer-icon.blue {
  background: #e8efff;
  color: #2f67dd;
}

.services-page .offer-icon.cyan {
  background: #e7f6fb;
  color: #19a6cd;
}

.services-page .offer-icon.indigo {
  background: #ebecff;
  color: #6270df;
}

.services-page .offer-icon.purple {
  background: #f1e9ff;
  color: #9460e9;
}

.services-page .service-offer-card h3 {
  color: #0f193b;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 700;
}

.services-page .service-offer-card p {
  margin-top: 12px;
  color: #4c6182;
  font-size: 14px;
  line-height: 1.55;
}

.services-page .service-offer-card ul {
  margin-top: 16px;
  list-style: none;
}

.services-page .service-offer-card li {
  position: relative;
  padding-left: 22px;
  color: #334f73;
  font-size: 13px;
  line-height: 1.8;
}

.services-page .service-offer-card li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 1px;
  color: #31b565;
  font-weight: 700;
}

.services-page .service-offer-actions {
  margin-top: auto;
  padding-top: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.services-page .service-offer-actions button {
  min-height: 44px;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
}

.services-page .service-enquire-btn {
  border: 0;
  background: linear-gradient(90deg, #2f71ff, #4f39e4);
  color: #ffffff;
  box-shadow: 0 10px 18px rgba(47, 103, 221, 0.24);
}

.services-page .service-more-btn {
  border: 1.6px solid #22395c;
  background: #ffffff;
  color: #1f3050;
}

.jobs-page .jobs-hero {
  padding: 56px 0 68px;
  border-bottom: 1px solid #dfe5ef;
  background: #ffffff;
}

.jobs-page .jobs-banner {
  position: relative;
  overflow: hidden;
  padding: 150px 0 156px;
}

.jobs-page .jobs-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(7, 18, 44, 0.72) 0%, rgba(7, 18, 44, 0.72) 100%),
    url("https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&w=2200&q=80");
  background-size: cover;
  background-position: center;
  transform: scale(1);
  animation: jobsBannerSlowZoom 44s ease-in-out infinite alternate;
  z-index: 0;
}

.jobs-page .jobs-banner-wrap {
  width: min(1320px, calc(100% - 120px));
  position: relative;
  z-index: 1;
  text-align: center;
}

.jobs-page .jobs-banner h1 {
  color: #ffffff;
  font-size: 78px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
}

.jobs-page .jobs-banner p {
  margin-top: 20px;
  color: #dce7ff;
  font-size: 21px;
  line-height: 1.45;
  font-weight: 500;
}

@keyframes jobsBannerSlowZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}

.jobs-page .jobs-hero-wrap {
  width: min(1320px, calc(100% - 120px));
}

.jobs-page .jobs-hero h1 {
  color: #0f193b;
  font-size: 56px;
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: 0;
}

.jobs-page .jobs-search-bar {
  margin-top: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px 160px;
  gap: 16px;
  max-width: 1080px;
}

.jobs-page .search-input-wrap,
.jobs-page .jobs-select-wrap {
  min-height: 56px;
  border: 1px solid #cfd8e7;
  border-radius: 10px;
  background: #f8fafc;
}

.jobs-page .search-input-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
}

.jobs-page .search-icon {
  color: #6a7b99;
  font-size: 23px;
  line-height: 1;
}

.jobs-page .search-input-wrap input {
  width: 100%;
  border: 0;
  background: transparent;
  color: #334e72;
  font-size: 14px;
  font-family: inherit;
  outline: none;
}

.jobs-page .jobs-select-wrap select {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #243957;
  font-size: 16px;
  font-family: inherit;
  outline: none;
  padding: 0 14px;
}

.jobs-page .jobs-search-btn {
  border: 0;
  border-radius: 10px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  background: linear-gradient(90deg, #2f71ff, #4f39e4);
  box-shadow: 0 10px 18px rgba(52, 95, 214, 0.24);
  cursor: pointer;
}

.jobs-page .jobs-listing {
  background: #e9eef6;
  padding: 56px 0 86px;
}

.jobs-page .jobs-listing-wrap {
  width: min(1320px, calc(100% - 120px));
}

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

.jobs-page .job-card {
  background: #f5f7fb;
  border: 1px solid #d8e0ee;
  border-radius: 18px;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  padding: 20px 20px 16px;
}

.jobs-page .job-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.jobs-page .job-type {
  border: 2px solid #263956;
  border-radius: 10px;
  min-height: 28px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  color: #0f193b;
  font-size: 15px;
  font-weight: 500;
}

.jobs-page .job-type.muted {
  border: 0;
  background: #e8edf4;
}

.jobs-page .job-date {
  color: #8b9cb8;
  font-size: 12px;
}

.jobs-page .job-card h3 {
  margin-top: 14px;
  color: #0f193b;
  font-size: 26px;
  line-height: 1.25;
  font-weight: 700;
}

.jobs-page .job-meta {
  margin-top: 10px;
  list-style: none;
}

.jobs-page .job-meta li {
  color: #334e72;
  font-size: 15px;
  line-height: 1.6;
}

.jobs-page .job-card p {
  margin-top: 10px;
  color: #4d6182;
  font-size: 14px;
  line-height: 1.55;
  padding-bottom: 16px;
  border-bottom: 1px solid #d8e0ee;
}

.jobs-page .job-apply-btn {
  margin-top: 16px;
  min-height: 44px;
  border: 0;
  border-radius: 14px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  background: linear-gradient(90deg, #2f71ff, #4f39e4);
  box-shadow: 0 10px 18px rgba(52, 95, 214, 0.2);
  cursor: pointer;
}

.jobs-page .jobs-empty {
  margin-top: 14px;
  text-align: center;
  color: #5a6f92;
  font-size: 15px;
  font-weight: 500;
}

.admin-page .admin-hero {
  background: linear-gradient(90deg, #eef3fc 0%, #f8faff 100%);
  border-bottom: 1px solid #d8e2f3;
  padding: 42px 0;
}

.admin-page .admin-access {
  padding: 56px 0 20px;
}

.admin-page .admin-access-wrap {
  width: min(760px, calc(100% - 120px));
  margin: 0 auto;
  background: #f7f9fc;
  border: 1px solid #d9e2f0;
  border-radius: 16px;
  padding: 18px;
  color: #2a4166;
  font-size: 15px;
  line-height: 1.6;
  text-align: center;
}

.admin-page .admin-access-wrap strong {
  color: #102347;
}

.admin-page .admin-back-btn {
  margin-top: 10px;
  min-height: 40px;
  border: 0;
  border-radius: 10px;
  padding: 0 16px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  background: linear-gradient(90deg, #2f71ff, #4f39e4);
  box-shadow: 0 10px 18px rgba(52, 95, 214, 0.24);
  cursor: pointer;
}

.admin-page .admin-hero-wrap {
  width: min(1100px, calc(100% - 120px));
  text-align: center;
}

.admin-page .admin-hero h1 {
  color: #0f193b;
  font-size: 52px;
  line-height: 1.1;
  font-weight: 700;
}

.admin-page .admin-hero p {
  margin-top: 10px;
  color: #4a6083;
  font-size: 18px;
}

.admin-page .admin-main {
  padding: 40px 0 70px;
}

.admin-page .admin-main-wrap {
  width: min(1100px, calc(100% - 120px));
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.admin-page .admin-form-card,
.admin-page .admin-preview-card {
  background: #f6f8fc;
  border: 1px solid #d9e2f0;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 14px 24px rgba(24, 46, 89, 0.08);
}

.admin-page .admin-form-card h2,
.admin-page .admin-preview-card h2 {
  color: #0f193b;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
}

.admin-page .admin-preview-card p {
  margin-top: 6px;
  color: #506687;
  font-size: 14px;
}

.admin-page .admin-job-form {
  margin-top: 14px;
  display: grid;
  gap: 12px;
}

.admin-page .admin-grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.admin-page .admin-job-form label {
  color: #112041;
  font-size: 14px;
  font-weight: 500;
  display: grid;
  gap: 6px;
}

.admin-page .admin-job-form input,
.admin-page .admin-job-form select,
.admin-page .admin-job-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid #cfd8e7;
  border-radius: 10px;
  background: #ffffff;
  color: #21385c;
  font-size: 15px;
  font-family: inherit;
  padding: 0 12px;
  outline: none;
}

.admin-page .admin-job-form textarea {
  min-height: 110px;
  padding-top: 10px;
  resize: vertical;
}

.admin-page .admin-form-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.admin-page .admin-post-btn,
.admin-page .admin-clear-btn {
  min-height: 44px;
  border-radius: 12px;
  border: 0;
  padding: 0 18px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
}

.admin-page .admin-post-btn {
  color: #ffffff;
  background: linear-gradient(90deg, #2f71ff, #4f39e4);
  box-shadow: 0 10px 18px rgba(52, 95, 214, 0.24);
}

.admin-page .admin-clear-btn {
  color: #183154;
  background: #e7edf8;
  border: 1px solid #cdd8ea;
}

.admin-page .admin-message {
  min-height: 22px;
  color: #2e62d6;
  font-size: 14px;
  font-weight: 500;
}

.admin-page .admin-posted-jobs {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.admin-page .admin-posted-jobs article {
  background: #ffffff;
  border: 1px solid #d7e0ef;
  border-radius: 12px;
  padding: 12px;
}

.admin-page .admin-posted-jobs h3 {
  color: #102145;
  font-size: 18px;
  line-height: 1.3;
}

.admin-page .admin-posted-jobs p {
  margin-top: 4px;
  font-size: 13px;
  color: #4f6386;
}

.admin-page .admin-users-card {
  grid-column: 1 / -1;
  background: #f6f8fc;
  border: 1px solid #d9e2f0;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 14px 24px rgba(24, 46, 89, 0.08);
}

.admin-page .admin-users-card h2 {
  color: #0f193b;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 700;
}

.admin-page .admin-users-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.admin-page .admin-users-head > div > p,
.admin-page .admin-users-card > p {
  margin-top: 6px;
  color: #506687;
  font-size: 14px;
}

.admin-page .admin-download-btn {
  min-height: 42px;
  border: 1px solid #c9d7ef;
  border-radius: 12px;
  background: #ffffff;
  color: #183154;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  padding: 0 16px;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(24, 46, 89, 0.06);
}

.admin-page .admin-users-status {
  margin-top: 10px;
  color: #2f5ec9;
  font-size: 13px;
  font-weight: 500;
}

.admin-page .admin-users-table-wrap {
  margin-top: 12px;
  overflow-x: auto;
}

.admin-page .admin-users-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.admin-page .admin-users-table th,
.admin-page .admin-users-table td {
  border-bottom: 1px solid #d7e0ef;
  text-align: left;
  padding: 12px 10px;
  font-size: 14px;
  color: #22395c;
}

.admin-page .admin-users-table th {
  color: #102347;
  font-size: 13px;
  letter-spacing: 0.5px;
  font-weight: 600;
  background: #edf3fc;
}

.admin-page .admin-users-empty {
  text-align: center !important;
  color: #607496 !important;
  font-weight: 500;
}

.admin-page .admin-role-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  border-radius: 999px;
  padding: 0 10px;
  background: #e6eefc;
  color: #1d4fba;
  font-size: 12px;
  font-weight: 600;
}

.admin-page .admin-role-badge.is-complete {
  background: #e8f8ef;
  color: #148b4f;
}

.admin-page .admin-role-badge.is-pending {
  background: #fff4df;
  color: #b26a00;
}

.admin-page .admin-view-btn {
  min-height: 34px;
  border: 1px solid #c8d6ef;
  border-radius: 9px;
  background: #ffffff;
  color: #21437c;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  padding: 0 12px;
  cursor: pointer;
}

.admin-page .admin-delete-btn {
  min-height: 34px;
  border: 1px solid #f3b7bf;
  border-radius: 9px;
  background: #fff1f3;
  color: #b4233c;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  padding: 0 12px;
  cursor: pointer;
}

.admin-page .admin-delete-btn:disabled {
  opacity: 0.7;
  cursor: wait;
}

.admin-page .admin-action-note {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: 999px;
  padding: 0 10px;
  background: #eef2f8;
  color: #667894;
  font-size: 12px;
  font-weight: 600;
}

.admin-page .admin-contact-table {
  min-width: 980px;
}

.admin-page .admin-contact-table td:nth-child(5) {
  min-width: 280px;
  white-space: normal;
  line-height: 1.55;
}

.admin-page .admin-onboarding-details {
  margin-top: 14px;
}

.admin-page .admin-onboarding-empty {
  padding: 20px;
  border-radius: 16px;
  border: 1px dashed #cbd7ea;
  background: #ffffff;
  color: #607496;
  font-size: 14px;
  font-weight: 500;
}

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

.admin-page .admin-onboarding-item {
  padding: 16px;
  border-radius: 16px;
  border: 1px solid #dbe3f2;
  background: #ffffff;
}

.admin-page .admin-onboarding-item span {
  display: block;
  color: #7185a7;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.admin-page .admin-onboarding-item strong {
  display: block;
  margin-top: 8px;
  color: #12234b;
  font-size: 14px;
  line-height: 1.55;
  word-break: break-word;
}

.about-page .mini {
  color: #2f67dd;
  font-size: 16px;
  letter-spacing: 3.2px;
  font-weight: 700;
  margin-bottom: 12px;
}

.about-page .mini.center {
  text-align: center;
}

.about-page .about-hero {
  padding: 52px 0 70px;
  background: linear-gradient(90deg, #e8edf6 0%, #f4f7fc 100%);
}

.about-page .about-hero-wrap {
  width: min(1140px, calc(100% - 220px));
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.about-page .about-hero h1 {
  margin-top: 14px;
  color: #0f193b;
  font-size: 72px;
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -1px;
}

.about-page .about-hero h1 .accent {
  color: #2f67dd;
}

.about-page .about-hero p {
  margin-top: 20px;
  color: #3f5271;
  max-width: 470px;
  font-size: 15px;
  line-height: 1.55;
}

.about-page .about-hero-preview {
  max-width: 520px;
}

.about-page .about-hero-preview-more {
  display: none;
}

.about-page .about-hero-preview-more.is-visible {
  display: inline;
}

.about-page .about-hero-more-inline {
  display: inline;
  margin-left: 8px;
  border: 0;
  background: transparent;
  color: #2f67dd;
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
  box-shadow: none;
}

.about-page .about-hero-more-inline:hover {
  transform: none;
  filter: none;
  box-shadow: none;
}

.about-page .about-hero-actions {
  margin-top: 20px;
  display: flex;
  gap: 12px;
}

.about-page .about-btn-primary,
.about-page .about-btn-outline {
  min-height: 42px;
  border-radius: 999px;
  padding: 0 20px;
  font-size: 13px;
  font-family: inherit;
  cursor: pointer;
}

.about-page .about-btn-primary {
  border: 0;
  color: #fff;
  background: linear-gradient(90deg, #2f71ff, #4f39e4);
  box-shadow: 0 10px 16px rgba(52, 95, 214, 0.2);
}

.about-page .about-btn-outline {
  border: 1px dashed #22395d;
  background: #fff;
  color: #0f193b;
}

.about-page .about-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 24px;
}

.about-page .about-modal.is-open {
  display: flex;
}

.about-page .about-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 20, 44, 0.6);
  backdrop-filter: blur(4px);
}

.about-page .about-modal-card {
  position: relative;
  z-index: 1;
  width: min(820px, 100%);
  max-height: 85vh;
  overflow: auto;
  background: #ffffff;
  border-radius: 20px;
  padding: 28px 26px;
  box-shadow: 0 20px 40px rgba(8, 18, 40, 0.25);
}

.about-page .about-modal-card h2 {
  font-size: 28px;
  color: #0f193b;
}

.about-page .about-modal-body {
  margin-top: 12px;
  display: grid;
  gap: 14px;
}

.about-page .about-modal-body p {
  color: #3d5476;
  font-size: 16px;
  line-height: 1.65;
}

.about-page .about-modal-close {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 32px;
  height: 32px;
  border: 1px solid #d3dced;
  border-radius: 10px;
  background: #ffffff;
  color: #556b8d;
  font-size: 18px;
  cursor: pointer;
}

.about-page .about-hero-media {
  max-width: 520px;
  justify-self: center;
  border-radius: 34px;
  padding: 8px;
  border: 6px solid #f2f6ff;
  box-shadow: 0 20px 34px rgba(29, 55, 106, 0.2);
  overflow: hidden;
}

.about-page .about-hero-media img {
  width: 100%;
  display: block;
  height: 490px;
  object-fit: cover;
  border-radius: 26px;
}

.about-page .about-stats {
  padding: 52px 0;
  background: #f3f6fb;
}

.about-page .about-stats-wrap {
  width: min(1080px, calc(100% - 120px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.about-page .about-stats article {
  text-align: center;
}

.about-page .about-stats article span {
  width: 44px;
  height: 44px;
  margin: 0 auto;
  border-radius: 13px;
  background: #e7eef9;
  color: #2f67dd;
  display: grid;
  place-items: center;
}

.about-page .about-stats h3 {
  margin-top: 8px;
  font-size: 46px;
  line-height: 1.1;
  color: #0f193b;
}

.about-page .about-stats p {
  margin-top: 4px;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: #4f698d;
}

.about-page .about-mv {
  padding: 58px 0;
  background: #eef2f8;
}

.about-page .about-mv-wrap {
  width: min(1140px, calc(100% - 220px));
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 34px;
  align-items: center;
}

.about-page .about-mv-copy h2 {
  color: #0f193b;
  font-size: 46px;
  line-height: 1.1;
  margin-bottom: 8px;
}

.about-page .about-mv-copy h2 span {
  color: #315fe0;
}

.about-page .about-mv-copy p {
  margin-bottom: 20px;
  color: #3c5172;
  font-size: 14px;
  line-height: 1.55;
  max-width: 500px;
}

.about-page .about-mv-media {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 14px 24px rgba(30, 52, 96, 0.2);
}

.about-page .about-mv-media img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  display: block;
}

.about-page .quote-card {
  position: absolute;
  right: 16px;
  top: 16px;
  background: #ffffff;
  border-radius: 16px;
  padding: 14px;
  max-width: 180px;
  box-shadow: 0 12px 16px rgba(0, 0, 0, 0.12);
}

.about-page .quote-card p {
  color: #2a4064;
  font-size: 11px;
  line-height: 1.35;
}

.about-page .person-tag {
  position: absolute;
  left: 16px;
  bottom: 16px;
  color: #ffffff;
}

.about-page .person-tag strong {
  display: block;
  font-size: 17px;
}

.about-page .person-tag span {
  font-size: 10px;
  letter-spacing: 1.2px;
  color: #cad8f4;
}

.about-page .about-services {
  padding: 54px 0 70px;
  background: var(--bg);
}

.about-page .about-services-wrap {
  width: min(1120px, calc(100% - 120px));
  margin: 0 auto;
}

.about-page .about-services h2 {
  text-align: center;
  color: #0f193b;
  font-size: 46px;
  line-height: 1.12;
  font-weight: 700;
}

.about-page .about-services h2 span {
  color: #2f67dd;
}

.about-page .about-services-intro {
  margin: 18px auto 0;
  max-width: 880px;
  text-align: center;
  color: #3a5176;
  font-size: 16px;
  line-height: 1.65;
}

.about-page .about-services-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.about-page .about-service-card {
  background: #f6f8fc;
  border: 1px solid #dfe5f1;
  border-radius: 18px;
  padding: 22px 22px 20px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  box-shadow: 0 10px 20px rgba(20, 35, 70, 0.08);
}

.about-page .about-service-card h3 {
  color: #0f193b;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
}

.about-page .about-service-card p {
  margin-top: 10px;
  color: #3f567b;
  font-size: 14px;
  line-height: 1.6;
}

.about-page .about-service-card p + p {
  margin-top: 12px;
}

.about-page .service-number {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #e8f0ff;
  color: #2f67dd;
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 700;
}

.about-page .about-values {
  padding: 54px 0 64px;
  background: #f3f6fb;
}

.about-page .about-values-wrap {
  width: min(1140px, calc(100% - 220px));
}

.about-page .about-values h2 {
  text-align: center;
  color: #0f193b;
  font-size: 48px;
  margin-bottom: 24px;
}

.about-page .about-values h2 span {
  color: #315fe0;
}

.about-page .values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.about-page .values-grid article {
  background: #ffffff;
  border: 1px solid #dfe5ef;
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 10px 18px rgba(24, 39, 74, 0.08);
}

.about-page .values-grid article span {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #e7eef9;
  color: #2f67dd;
  display: grid;
  place-items: center;
}

.about-page .values-grid article h3 {
  margin-top: 12px;
  font-size: 20px;
  color: #0f193b;
}

.about-page .values-grid article p {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.5;
  color: #465c7f;
}

.about-page .about-adv {
  padding: 58px 0;
  background: #f2f6fb;
}

.about-page .about-adv-wrap {
  width: min(1140px, calc(100% - 220px));
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 36px;
  align-items: center;
}

.about-page .about-adv-left h2 {
  color: #0f193b;
  font-size: 52px;
  line-height: 1.05;
}

.about-page .about-adv-left h2 span {
  color: #315fe0;
}

.about-page .about-adv-left > p {
  margin-top: 12px;
  color: #405578;
  font-size: 14px;
  max-width: 470px;
}

.about-page .about-adv-left ul {
  margin-top: 20px;
  list-style: none;
}

.about-page .about-adv-left li {
  margin-top: 14px;
  padding-left: 52px;
  position: relative;
}

.about-page .about-adv-left li::before {
  content: "◎";
  position: absolute;
  left: 0;
  top: 2px;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #e6edf9;
  color: #2f67dd;
  display: grid;
  place-items: center;
}

.about-page .about-adv-left li strong {
  display: block;
  font-size: 18px;
  color: #0f193b;
}

.about-page .about-adv-left li span {
  display: block;
  margin-top: 3px;
  font-size: 12px;
  line-height: 1.45;
  color: #4b5f81;
}

.about-page .about-adv-right {
  border-radius: 34px;
  min-height: 520px;
  padding: 42px 30px;
  background: linear-gradient(130deg, #07143a 0%, #0f2252 60%, #08153d 100%);
  box-shadow: 0 18px 30px rgba(19, 37, 79, 0.28);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-page .about-adv-right .step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  align-items: start;
  margin-bottom: 0;
}

.about-page .about-adv-right .step:last-child {
  margin-bottom: 0;
}

.about-page .about-adv-right .step > span {
  color: rgba(111, 141, 199, 0.35);
  font-size: 56px;
  line-height: 1;
  font-weight: 700;
}

.about-page .about-adv-right h4 {
  color: #ffffff;
  font-size: 23px;
}

.about-page .about-adv-right p {
  margin-top: 4px;
  color: #aec1e8;
  font-size: 18px;
  line-height: 1.45;
}

.about-page .about-testimonials {
  padding: 72px 0 84px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.12) 1.4px, transparent 1.5px) 0 0 / 42px 42px,
    linear-gradient(180deg, #2f67dd 0%, #2a5fcc 52%, #2655bd 100%);
}

.about-page .about-testimonials-wrap {
  width: min(1150px, calc(100% - 130px));
}

.about-page .about-testimonials .mini {
  color: #c5d8ff;
  margin-bottom: 14px;
}

.about-page .about-testimonials h2 {
  text-align: center;
  color: #ffffff;
  font-size: 54px;
  line-height: 1.1;
}

.about-page .about-testimonials .sub {
  margin: 12px auto 0;
  max-width: 760px;
  text-align: center;
  color: #d8e5ff;
  font-size: 15px;
  line-height: 1.45;
}

.about-page .testimonial-grid {
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.about-page .testimonial-grid article {
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(217, 230, 255, 0.2);
  border-radius: 36px;
  min-height: 360px;
  padding: 42px 34px 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.about-page .testimonial-grid article::before {
  content: none;
}

.about-page .testimonial-grid article > p {
  margin-top: 12px;
  color: #f4f8ff;
  font-size: 18px;
  line-height: 1.45;
  font-style: italic;
}

.about-page .testimonial-grid .testimonial-rating {
  margin-top: 0;
  margin-bottom: 20px;
}

.about-page .who {
  margin-top: 50px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.about-page .who span {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 20px;
}

.about-page .who strong {
  display: block;
  color: #fff;
  font-size: 18px;
  line-height: 1.2;
}

.about-page .who small {
  color: #c8d9ff;
  font-size: 11px;
  letter-spacing: 1.2px;
}

.about-page .testimonial-grid article:nth-child(2) .who {
  margin-top: 72px;
}

.contact-page {
  background:
    linear-gradient(180deg, #ffffff 0 53%, #edf2fb 53% 100%);
}

.contact-page .contact-hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 170px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    radial-gradient(circle at top center, rgba(104, 139, 255, 0.22), transparent 34%),
    linear-gradient(135deg, #123d9e 0%, #244dd4 48%, #3d37d8 100%);
  background-size: 34px 34px, 34px 34px, auto, auto;
}

.contact-page .contact-hero::after {
  content: "";
  position: absolute;
  inset: auto -120px -180px auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 213, 71, 0.26) 0%, rgba(255, 213, 71, 0) 70%);
  pointer-events: none;
}

.contact-page .contact-hero-wrap {
  width: min(1200px, calc(100% - 96px));
  position: relative;
  z-index: 1;
  text-align: center;
}

.contact-page .contact-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #dbe7ff;
  font-size: 14px;
  font-weight: 600;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.contact-page .contact-hero-badge-icon {
  color: #ffd24c;
  font-size: 15px;
}

.contact-page .contact-hero-kicker {
  margin-top: 26px;
  color: rgba(219, 231, 255, 0.86);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.contact-page .contact-hero h1 {
  margin-top: 14px;
  color: #ffffff;
  font-size: clamp(48px, 6vw, 72px);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.contact-page .contact-hero h1 span {
  color: #ffd24c;
}

.contact-page .contact-hero p {
  margin: 22px auto 0;
  max-width: 760px;
  color: rgba(232, 238, 255, 0.88);
  font-size: 20px;
  line-height: 1.7;
}

.contact-page .contact-main {
  padding: 0 0 94px;
}

.contact-page .contact-main-wrap {
  width: min(1200px, calc(100% - 96px));
  margin-top: -98px;
  display: grid;
  grid-template-columns: minmax(290px, 0.9fr) minmax(0, 1.35fr);
  gap: 24px;
  align-items: start;
}

.contact-page .contact-side-column {
  display: grid;
  gap: 18px;
}

.contact-page .contact-info-card,
.contact-page .contact-form-card,
.contact-page .contact-reasons-card {
  position: relative;
  border-radius: 30px;
  isolation: isolate;
  transform: none !important;
  filter: none !important;
}

.contact-page .contact-info-card,
.contact-page .contact-info-card.reveal-on-scroll.is-visible {
  padding: 36px 28px;
  color: #ffffff;
  background:
    radial-gradient(circle at top left, rgba(113, 156, 255, 0.35), transparent 40%),
    linear-gradient(180deg, #2757df 0%, #343ed7 100%);
  box-shadow: 0 26px 40px rgba(44, 75, 194, 0.3);
}

.contact-page .contact-form-card,
.contact-page .contact-form-card.reveal-on-scroll.is-visible,
.contact-page .contact-reasons-card,
.contact-page .contact-reasons-card.reveal-on-scroll.is-visible {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(217, 226, 242, 0.92);
  box-shadow: 0 20px 42px rgba(23, 43, 87, 0.12);
}

.contact-page .contact-form-card {
  padding: 34px 34px 28px;
}

.contact-page .contact-reasons-card {
  padding: 24px 24px 22px;
}

.contact-page .contact-info-card:hover,
.contact-page .contact-form-card:hover,
.contact-page .contact-reasons-card:hover,
.contact-page .contact-info-card.reveal-on-scroll.is-visible:hover,
.contact-page .contact-form-card.reveal-on-scroll.is-visible:hover,
.contact-page .contact-reasons-card.reveal-on-scroll.is-visible:hover {
  transform: translateY(-5px) !important;
}

.contact-page .contact-card-kicker {
  color: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.8;
}

.contact-page .contact-info-card h2,
.contact-page .contact-form-card h2 {
  margin-top: 10px;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 800;
}

.contact-page .contact-info-card h2 {
  color: #ffffff;
}

.contact-page .contact-form-card h2 {
  color: #13244a;
}

.contact-page .contact-info-list {
  margin-top: 28px;
  display: grid;
  gap: 18px;
}

.contact-page .contact-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: start;
}

.contact-page .contact-item .icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  color: #dce7ff;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-page .contact-item .icon svg,
.contact-page .contact-reasons-icon svg {
  width: 22px;
  height: 22px;
}

.contact-page .contact-item small {
  display: block;
  color: rgba(227, 236, 255, 0.74);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-page .contact-item p {
  margin-top: 6px;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 600;
}

.contact-page .contact-reasons-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(47, 103, 221, 0.08);
  color: #4371e7;
}

.contact-page .contact-reasons-card h3 {
  margin-top: 16px;
  color: #13244a;
  font-size: 22px;
  font-weight: 800;
}

.contact-page .contact-reasons-card ul {
  list-style: none;
  margin-top: 18px;
  display: grid;
  gap: 14px;
}

.contact-page .contact-reasons-card li {
  position: relative;
  padding-left: 30px;
  color: #576d8f;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 500;
}

.contact-page .contact-reasons-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(53, 196, 116, 0.12);
  border: 1px solid rgba(53, 196, 116, 0.35);
}

.contact-page .contact-reasons-card li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 11px;
  width: 6px;
  height: 3px;
  border-left: 2px solid #29b15f;
  border-bottom: 2px solid #29b15f;
  transform: rotate(-45deg);
}

.contact-page .contact-info-card *,
.contact-page .contact-form-card *,
.contact-page .contact-reasons-card * {
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

.contact-page .contact-form-card form {
  margin-top: 26px;
  display: grid;
  gap: 18px;
}

.contact-page .contact-form-card .grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-page .contact-form-card label {
  color: #20365c;
  font-size: 14px;
  font-weight: 600;
  display: block;
}

.contact-page .contact-form-card label span {
  color: #e65353;
}

.contact-page .contact-form-card label em {
  color: #9aa9c0;
  font-style: normal;
  font-size: 12px;
  font-weight: 600;
}

.contact-page .contact-form-card input,
.contact-page .contact-form-card select,
.contact-page .contact-form-card textarea {
  display: block;
  width: 100%;
  margin-top: 10px;
  border: 1px solid #d9e1ef;
  border-radius: 14px;
  background: #ffffff;
  padding: 0 16px;
  color: #21375d;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  box-shadow: inset 0 1px 2px rgba(19, 36, 74, 0.03);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.contact-page .contact-form-card input::placeholder,
.contact-page .contact-form-card textarea::placeholder {
  color: #9aa8bc;
}

.contact-page .contact-form-card input:focus,
.contact-page .contact-form-card select:focus,
.contact-page .contact-form-card textarea:focus {
  border-color: #3d63f4;
  box-shadow: 0 0 0 4px rgba(61, 99, 244, 0.12);
}

.contact-page .contact-form-card input,
.contact-page .contact-form-card select {
  min-height: 52px;
}

.contact-page .contact-form-card textarea {
  min-height: 160px;
  padding-top: 14px;
  resize: vertical;
}

.contact-page .contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 14px;
  min-height: 54px;
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  background: linear-gradient(90deg, #2f71ff, #4f39e4);
  box-shadow: 0 16px 30px rgba(52, 95, 214, 0.24);
  cursor: pointer;
}

.contact-page .contact-submit:disabled {
  opacity: 0.72;
  cursor: wait;
}

.contact-page .contact-form-note {
  color: #9ca9bb;
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
}

.contact-page .contact-form-message {
  min-height: 22px;
  color: #2f5ec9;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

.contact-page .contact-form-message.is-error {
  color: #c1324f;
}

.contact-page .contact-form-message.is-success {
  color: #1e8f56;
}

.fraud-page .fraud-main {
  padding: 0 0 70px;
}

.fraud-page .fraud-hero {
  min-height: 500px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #d8e0ef;
}

.fraud-page .fraud-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(7, 19, 44, 0.74) 0%, rgba(7, 19, 44, 0.72) 100%),
    url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=2200&q=80");
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.fraud-page .fraud-hero-wrap {
  position: relative;
  z-index: 1;
  min-height: 500px;
  display: grid;
  place-content: center;
  text-align: center;
}

.fraud-page .fraud-hero h1 {
  color: #ffffff;
  font-size: 60px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.6px;
}

.fraud-page .fraud-hero p {
  margin-top: 10px;
  color: #d9e7ff;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 500;
}

.fraud-page .fraud-content {
  padding: 40px 0 0;
}

.fraud-page .fraud-content-wrap {
  width: min(1120px, calc(100% - 120px));
  margin: 0 auto;
}

.fraud-page .fraud-content-card {
  background: #f7f9fd;
  border: 1px solid #dbe3f1;
  border-radius: 20px;
  padding: 32px 34px;
  box-shadow: 0 12px 24px rgba(18, 42, 82, 0.08);
}

.fraud-page .fraud-content-card p {
  margin-top: 14px;
  color: #374f74;
  font-size: 18px;
  line-height: 1.74;
}

.fraud-page .fraud-content-card .fraud-quote-box {
  margin-top: 24px;
  text-align: center;
  font-weight: 700;
  color: #1e3f74;
  background: #edf4ff;
  border: 1px solid #cdddf7;
  border-radius: 14px;
  padding: 18px 16px;
  box-shadow: 0 8px 18px rgba(23, 50, 97, 0.1);
}

.refund-page .refund-main {
  padding: 0 0 70px;
}

.refund-page .refund-hero {
  min-height: 500px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #d8e0ef;
}

.refund-page .refund-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(7, 19, 44, 0.74) 0%, rgba(7, 19, 44, 0.7) 100%),
    url("https://images.unsplash.com/photo-1554224155-6726b3ff858f?auto=format&fit=crop&w=2200&q=80");
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.refund-page .refund-hero-wrap {
  position: relative;
  z-index: 1;
  min-height: 500px;
  display: grid;
  place-content: center;
  text-align: center;
}

.refund-page .refund-hero h1 {
  color: #ffffff;
  margin-top: 10px;
  font-size: 34px;
  line-height: 1.18;
  font-weight: 600;
  letter-spacing: -0.2px;
}

.refund-page .refund-hero p {
  margin-top: 0;
  color: #d9e7ff;
  font-size: 52px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.refund-page .refund-content {
  padding: 40px 0 0;
}

.refund-page .refund-content-wrap {
  width: min(1120px, calc(100% - 120px));
  margin: 0 auto;
}

.refund-page .refund-content-card {
  background: #f7f9fd;
  border: 1px solid #dbe3f1;
  border-radius: 20px;
  padding: 32px 34px;
  box-shadow: 0 12px 24px rgba(18, 42, 82, 0.08);
}

.refund-page .refund-content-card p {
  margin-top: 16px;
  color: #374f74;
  font-size: 18px;
  line-height: 1.74;
}

.refund-page .refund-content-card strong {
  color: #0f193b;
  font-weight: 700;
}

.refund-page .refund-inline-link {
  color: #2f67dd;
  font-weight: 700;
  text-decoration: none;
  margin: 0 4px;
}

.terms-page .terms-main {
  padding: 0 0 70px;
}

.terms-page .terms-hero {
  min-height: 500px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #d8e0ef;
}

.terms-page .terms-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(7, 19, 44, 0.74) 0%, rgba(7, 19, 44, 0.7) 100%),
    url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=2200&q=80");
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.terms-page .terms-hero-wrap {
  position: relative;
  z-index: 1;
  min-height: 500px;
  display: grid;
  place-content: center;
  text-align: center;
}

.terms-page .terms-hero h1 {
  color: #ffffff;
  font-size: 60px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.6px;
}

.terms-page .terms-hero p {
  margin-top: 10px;
  color: #d9e7ff;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 500;
}

.terms-page .terms-content {
  padding: 40px 0 0;
}

.terms-page .terms-content-wrap {
  width: min(1120px, calc(100% - 120px));
  margin: 0 auto;
}

.terms-page .terms-content-card {
  background: #f7f9fd;
  border: 1px solid #dbe3f1;
  border-radius: 20px;
  padding: 32px 34px;
  box-shadow: 0 12px 24px rgba(18, 42, 82, 0.08);
}

.terms-page .terms-content-card p {
  margin-top: 16px;
  color: #374f74;
  font-size: 18px;
  line-height: 1.74;
}

.terms-page .terms-content-card .terms-highlight-note {
  margin-top: 22px;
  padding: 18px 20px;
  border-left: 5px solid #1f5eff;
  border-radius: 16px;
  background: linear-gradient(135deg, #eef4ff 0%, #f8fbff 100%);
  color: #173a74;
  font-weight: 600;
  box-shadow: 0 10px 22px rgba(31, 94, 255, 0.08);
}

.privacy-page .privacy-main {
  padding: 0 0 70px;
}

.privacy-page .privacy-hero {
  min-height: 470px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #d8e0ef;
}

.privacy-page .privacy-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(7, 19, 44, 0.76) 0%, rgba(7, 19, 44, 0.72) 100%),
    url("https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&w=2200&q=80");
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.privacy-page .privacy-hero-wrap {
  position: relative;
  z-index: 1;
  min-height: 470px;
  display: grid;
  place-content: center;
  text-align: center;
}

.privacy-page .privacy-hero h1 {
  color: #ffffff;
  font-size: 60px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.6px;
}

.privacy-page .privacy-hero p {
  margin-top: 10px;
  color: #d9e7ff;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 500;
}

.privacy-page .privacy-content {
  padding: 40px 0 0;
}

.privacy-page .privacy-content-wrap {
  width: min(1120px, calc(100% - 120px));
  margin: 0 auto;
}

.privacy-page .privacy-content-card {
  background: #f7f9fd;
  border: 1px solid #dbe3f1;
  border-radius: 20px;
  padding: 32px 34px;
  box-shadow: 0 12px 24px rgba(18, 42, 82, 0.08);
}

.privacy-page .privacy-content-card h2 {
  margin-top: 30px;
  color: #0f193b;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 700;
}

.privacy-page .privacy-content-card p {
  margin-top: 16px;
  color: #374f74;
  font-size: 18px;
  line-height: 1.74;
}

.privacy-page .privacy-content-card hr {
  border: 0;
  border-top: 1px solid #d9e2f0;
  margin: 26px 0 8px;
}

.privacy-page .privacy-highlight {
  margin-top: 22px;
  border-left: 4px solid #2f67dd;
  background: #eef4ff;
  color: #1e4cab;
  border-radius: 12px;
  padding: 14px 16px;
  font-weight: 600;
}

.shipping-page {
  background:
    linear-gradient(180deg, #f4f7fd 0%, #ecf2fb 46%, #f7faff 100%);
}

.shipping-page .shipping-main {
  padding: 0 0 84px;
}

.shipping-page .shipping-hero {
  position: relative;
  overflow: hidden;
  min-height: 470px;
  border-bottom: 1px solid #d8e2f1;
  background:
    radial-gradient(circle at top left, rgba(255, 211, 82, 0.2), transparent 24%),
    radial-gradient(circle at right center, rgba(101, 138, 255, 0.2), transparent 28%),
    linear-gradient(135deg, #09183f 0%, #17357a 52%, #2952c8 100%);
}

.shipping-page .shipping-hero::after {
  content: "";
  position: absolute;
  inset: auto -80px -120px auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 211, 82, 0.24) 0%, rgba(255, 211, 82, 0) 72%);
  pointer-events: none;
}

.shipping-page .shipping-hero-wrap {
  position: relative;
  z-index: 1;
  min-height: 470px;
  display: grid;
  place-content: center;
  text-align: center;
}

.shipping-page .shipping-hero-badge {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #dce7ff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.shipping-page .shipping-hero h1 {
  margin-top: 20px;
  color: #ffffff;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.shipping-page .shipping-hero p {
  margin: 18px auto 0;
  max-width: 700px;
  color: rgba(225, 234, 255, 0.88);
  font-size: 19px;
  line-height: 1.7;
}

.shipping-page .shipping-content {
  padding: 0;
}

.shipping-page .shipping-content-wrap {
  width: min(1180px, calc(100% - 96px));
  margin-top: -84px;
}

.shipping-page .shipping-content-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 249, 255, 0.98) 100%);
  border: 1px solid rgba(216, 226, 241, 0.92);
  border-radius: 34px;
  padding: 40px;
  box-shadow: 0 24px 44px rgba(17, 38, 80, 0.12);
}

.shipping-page .shipping-intro {
  padding: 8px 4px 30px;
}

.shipping-page .shipping-kicker {
  color: #2f67dd;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.shipping-page .shipping-intro h2 {
  margin-top: 14px;
  color: #0f193b;
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 1.08;
  font-weight: 800;
  max-width: 720px;
}

.shipping-page .shipping-intro > p:last-child {
  margin-top: 16px;
  max-width: 760px;
  color: #425978;
  font-size: 18px;
  line-height: 1.7;
}

.shipping-page .shipping-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.shipping-page .shipping-point-card {
  position: relative;
  min-height: 100%;
  padding: 28px 26px 24px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid #dfe7f4;
  box-shadow: 0 14px 28px rgba(21, 42, 86, 0.08);
  overflow: hidden;
}

.shipping-page .shipping-point-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #2f67dd 0%, #5ca7ff 100%);
}

.shipping-page .shipping-point-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(47, 103, 221, 0.1);
  color: #2f67dd;
  font-size: 18px;
  font-weight: 700;
}

.shipping-page .shipping-point-card h3 {
  margin-top: 18px;
  color: #0f193b;
  font-size: 22px;
  line-height: 1.28;
  font-weight: 700;
}

.shipping-page .shipping-point-card p {
  margin-top: 12px;
  color: #526987;
  font-size: 15px;
  line-height: 1.75;
}

.shipping-page .shipping-note-box {
  margin-top: 26px;
  padding: 24px 26px;
  border-radius: 24px;
  background: linear-gradient(135deg, #edf4ff 0%, #f8fbff 100%);
  border: 1px solid #d7e4fb;
}

.shipping-page .shipping-note-box strong {
  display: block;
  color: #17357a;
  font-size: 18px;
  font-weight: 700;
}

.shipping-page .shipping-note-box p {
  margin-top: 10px;
  color: #46617f;
  font-size: 15px;
  line-height: 1.75;
}

@media (max-width: 900px) {
  .shipping-page .shipping-content-wrap {
    width: min(100%, calc(100% - 40px));
    margin-top: -56px;
  }

  .shipping-page .shipping-content-card {
    padding: 28px 22px;
    border-radius: 26px;
  }

  .shipping-page .shipping-points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .shipping-page .shipping-hero {
    min-height: 390px;
  }

  .shipping-page .shipping-hero-wrap {
    min-height: 390px;
  }

  .shipping-page .shipping-hero p {
    font-size: 16px;
  }

  .shipping-page .shipping-intro h2 {
    font-size: 30px;
  }

  .shipping-page .shipping-intro > p:last-child,
  .shipping-page .shipping-point-card p,
  .shipping-page .shipping-note-box p {
    font-size: 14px;
    line-height: 1.7;
  }
}

.auth-page .auth-section {
  padding: 64px 0 84px;
  background: linear-gradient(180deg, #e9eef6 0%, #f2f6fc 100%);
}

.auth-page .auth-wrap {
  width: min(760px, calc(100% - 96px));
}

.auth-page .auth-card {
  background: #f7f9fc;
  border: 1px solid #dbe2ef;
  border-radius: 22px;
  box-shadow: 0 14px 26px rgba(22, 43, 84, 0.1);
  padding: 30px 28px 24px;
}

.auth-page .auth-card h1 {
  color: #0f193b;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.1;
}

.auth-page .auth-card > p {
  margin-top: 8px;
  color: #4a5f80;
  font-size: 14px;
}

.auth-page .auth-form {
  margin-top: 16px;
  display: grid;
  gap: 12px;
}

.auth-page .auth-form label {
  color: #213a60;
  font-size: 12px;
  font-weight: 500;
  display: grid;
  gap: 7px;
}

.auth-page .auth-form input {
  width: 100%;
  min-height: 46px;
  border: 1px solid #d2dbea;
  border-radius: 10px;
  background: #f7f9fc;
  padding: 0 14px;
  color: #2f4467;
  font-size: 14px;
  font-family: inherit;
  outline: none;
}

.auth-page .auth-submit {
  margin-top: 4px;
  min-height: 48px;
  border: 0;
  border-radius: 12px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  background: linear-gradient(90deg, #2f71ff, #4f39e4);
  box-shadow: 0 10px 18px rgba(52, 95, 214, 0.22);
  cursor: pointer;
}

.auth-page .auth-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.auth-page .auth-message {
  margin-top: 10px;
  min-height: 20px;
  color: #385d95;
  font-size: 13px;
  font-weight: 500;
}

.auth-page .auth-message.is-error {
  color: #c0354a;
}

.auth-page .auth-message.is-success {
  color: #1b9b56;
}

.auth-page .auth-switch {
  margin-top: 14px;
  color: #4d6285;
  font-size: 13px;
}

.auth-page .auth-switch a {
  color: #2f67dd;
  text-decoration: none;
  font-weight: 600;
}

/* Global hover effects for buttons and cards across the project */
button,
.plans-tabs button,
.footer-links a,
.footer-col a {
  transition: transform 0.14s ease, box-shadow 0.14s ease, filter 0.14s ease,
    background-color 0.14s ease, color 0.14s ease;
}

button:hover,
.plans-tabs button:hover {
  transform: translateY(-2px) scale(1.02);
  filter: brightness(1.05) saturate(1.08);
  box-shadow: 0 14px 26px rgba(24, 48, 95, 0.2);
}

button:active,
.plans-tabs button:active {
  transform: translateY(0) scale(0.99);
}

.service-card,
.service-offer-card,
.why-card,
.plan-card,
.job-card,
.milestone-card,
.contact-info-card,
.contact-form-card,
.values-grid article,
.testimonial-grid article,
.about-adv-right,
.about-mv-media,
.photo-wrap,
.center-ring {
  transition: transform 0.16s ease, box-shadow 0.16s ease,
    background-color 0.16s ease, border-color 0.16s ease, filter 0.16s ease;
}

.photo-wrap img,
.why-card img,
.india-slide img,
.about-hero-media img,
.about-mv-media img {
  transition: transform 0.24s ease, filter 0.24s ease;
  transform: scale(1);
}

.service-card:hover,
.service-offer-card:hover,
.why-card:hover,
.plan-card:hover,
.job-card:hover,
.milestone-card:hover,
.contact-info-card:hover,
.contact-form-card:hover,
.values-grid article:hover,
.testimonial-grid article:hover,
.about-adv-right:hover,
.about-mv-media:hover,
.photo-wrap:hover,
.center-ring:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 18px 34px rgba(22, 43, 84, 0.2);
  filter: brightness(1.02);
}

.photo-wrap:hover img,
.why-card:hover img,
.india-slide:hover img,
.about-hero-media:hover img,
.about-mv-media:hover img {
  transform: scale(1.08);
  filter: saturate(1.05);
}

.footer-col a:hover,
.footer-links a:hover {
  transform: translateY(-1px);
}

/* Global scroll reveal animation */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Keep hover response fast after scroll reveal becomes visible */
.service-card.reveal-on-scroll.is-visible,
.service-offer-card.reveal-on-scroll.is-visible,
.why-card.reveal-on-scroll.is-visible,
.plan-card.reveal-on-scroll.is-visible,
.job-card.reveal-on-scroll.is-visible,
.milestone-card.reveal-on-scroll.is-visible,
.contact-info-card.reveal-on-scroll.is-visible,
.contact-form-card.reveal-on-scroll.is-visible,
.values-grid article.reveal-on-scroll.is-visible,
.testimonial-grid article.reveal-on-scroll.is-visible,
.about-adv-right.reveal-on-scroll.is-visible,
.about-mv-media.reveal-on-scroll.is-visible,
.photo-wrap.reveal-on-scroll.is-visible,
.center-ring.reveal-on-scroll.is-visible {
  transition: transform 0.16s ease, box-shadow 0.16s ease,
    background-color 0.16s ease, border-color 0.16s ease, filter 0.16s ease,
    opacity 0.45s ease;
}

button.reveal-on-scroll.is-visible,
.plans-tabs button.reveal-on-scroll.is-visible {
  transition: transform 0.14s ease, box-shadow 0.14s ease, filter 0.14s ease,
    background-color 0.14s ease, color 0.14s ease, opacity 0.45s ease;
}

@media (max-width: 1280px) {
  .container {
    width: min(1200px, calc(100% - 48px));
  }

  .menu {
    gap: 20px;
  }

  .nav-cta {
    font-size: 16px;
    min-height: 44px;
    padding: 0 18px;
  }

  .btn {
    min-height: 50px;
    font-size: 16px;
  }

  .photo-wrap img {
    height: min(63vh, 560px);
    min-height: 430px;
  }

  .count {
    font-size: 36px;
  }

  .services-wrap {
    width: min(1200px, calc(100% - 48px));
  }

  .services-head h2 {
    font-size: 46px;
  }

  .services-head p {
    font-size: 20px;
  }

  .services-layout {
    min-height: 940px;
  }

  .service-card {
    width: 360px;
  }

  .service-card h3 {
    font-size: 29px;
  }

  .card-top-left {
    left: 140px;
  }

  .card-top-right {
    right: 140px;
  }

  .card-left {
    left: 0;
  }

  .card-right {
    right: 0;
  }

  .card-bottom-left {
    left: 70px;
  }

  .card-bottom-right {
    right: 70px;
  }

  .center-ring {
    width: 300px;
    height: 300px;
  }

  .why-wrap h2 {
    font-size: 44px;
  }

  .why-grid {
    gap: 22px;
  }

  .why-grid-bottom {
    margin-top: 22px;
  }

  .why-card img {
    height: 280px;
  }

  .why-body {
    padding: 24px 24px 22px;
  }

  .why-body h3 {
    font-size: 30px;
  }

  .why-body p {
    font-size: 16px;
    line-height: 1.58;
  }

  .apply-wrap {
    width: min(1120px, calc(100% - 48px));
  }

  .apply-head h2 {
    font-size: 44px;
  }

  .apply-grid {
    gap: 26px;
    grid-template-columns: 1fr 1fr;
  }

  .apply-media img {
    height: 500px;
  }

  .apply-copy h3 {
    font-size: 32px;
  }

  .mission-wrap {
    width: min(1160px, calc(100% - 56px));
  }

  .mission-card {
    border-radius: 42px;
    padding: 64px 40px 70px;
  }

  .mission-card h2 {
    font-size: 62px;
  }

  .mission-card p {
    max-width: 760px;
    font-size: 24px;
  }

  .milestones-wrap {
    width: min(1200px, calc(100% - 48px));
  }

  .milestones-head h2 {
    font-size: 46px;
  }

  .milestones-head p {
    font-size: 20px;
  }

  .milestones-grid {
    gap: 18px;
  }

  .milestone-card {
    min-height: 245px;
    border-radius: 18px;
  }

  .milestone-icon {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    font-size: 30px;
  }

  .milestone-card h3 {
    margin-top: 16px;
    font-size: 48px;
  }

  .milestone-card p {
    font-size: 14px;
    letter-spacing: 1.4px;
  }

  .india-slider-wrap {
    width: min(1200px, calc(100% - 48px));
  }

  .india-slider-frame {
    height: 430px;
    border-radius: 30px;
  }

  .india-slide h3 {
    font-size: 48px;
  }

  .home-search-wrap {
    width: min(1200px, calc(100% - 48px));
  }

  .home-search-bar {
    grid-template-columns: 1fr 1fr 170px;
  }

  .footer-wrap {
    width: min(1200px, calc(100% - 48px));
  }

  .footer-top {
    gap: 28px;
  }

  .footer-col h3 {
    font-size: 28px;
  }

  .footer-col a,
  .footer-col p,
  .footer-brand p {
    font-size: 15px;
  }

  .footer-address {
    max-width: none;
  }

  .footer-top > .footer-col:last-child {
    grid-template-columns: minmax(0, 1fr) 240px;
    column-gap: 16px;
  }

  .footer-logo {
    width: 102px;
    height: 74px;
  }

  .services-page .services-hero h1 {
    font-size: 56px;
  }

  .services-page .services-hero p {
    font-size: 24px;
  }

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

  .services-page .services-catalog-wrap {
    width: min(1200px, calc(100% - 48px));
  }

  .services-page .service-offer-card h3 {
    font-size: 17px;
  }

  .jobs-page .jobs-hero-wrap,
  .jobs-page .jobs-listing-wrap {
    width: min(1200px, calc(100% - 48px));
  }

  .jobs-page .jobs-banner-wrap {
    width: min(1200px, calc(100% - 48px));
  }

  .jobs-page .jobs-banner {
    padding: 94px 0 96px;
  }

  .jobs-page .jobs-banner h1 {
    font-size: 56px;
  }

  .jobs-page .jobs-banner p {
    font-size: 18px;
  }

  .jobs-page .jobs-hero h1 {
    font-size: 42px;
  }

  .jobs-page .jobs-search-bar {
    max-width: 980px;
    grid-template-columns: minmax(0, 1fr) 220px 140px;
  }

  .jobs-page .jobs-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-page .about-hero-wrap,
  .about-page .about-mv-wrap,
  .about-page .about-services-wrap,
  .about-page .about-values-wrap,
  .about-page .about-adv-wrap,
  .about-page .about-testimonials-wrap {
    width: min(1080px, calc(100% - 90px));
  }

  .about-page .about-hero h1 {
    font-size: 58px;
  }

  .about-page .mini {
    font-size: 14px;
    letter-spacing: 2.8px;
  }

  .about-page .about-mv-copy h2,
  .about-page .about-services h2,
  .about-page .about-values h2,
  .about-page .about-adv-left h2 {
    font-size: 40px;
  }

  .about-page .about-testimonials h2 {
    font-size: 44px;
  }

  .about-page .about-testimonials .sub {
    font-size: 14px;
  }

  .about-page .testimonial-grid article {
    min-height: 320px;
    border-radius: 28px;
    padding: 28px 22px 22px;
  }

  .about-page .testimonial-grid article > p {
    font-size: 16px;
  }

  .about-page .who span {
    width: 40px;
    height: 40px;
    font-size: 17px;
  }

  .about-page .who strong {
    font-size: 16px;
  }

  .contact-page .contact-hero-wrap,
  .contact-page .contact-main-wrap {
    width: min(1200px, calc(100% - 48px));
  }

  .contact-page .contact-main-wrap {
    grid-template-columns: 1fr 1.35fr;
  }

  .auth-page .auth-wrap {
    width: min(760px, calc(100% - 48px));
  }

  .fraud-page .fraud-content-wrap {
    width: min(1040px, calc(100% - 48px));
  }

  .refund-page .refund-content-wrap {
    width: min(1040px, calc(100% - 48px));
  }

  .terms-page .terms-content-wrap {
    width: min(1040px, calc(100% - 48px));
  }

  .privacy-page .privacy-content-wrap {
    width: min(1040px, calc(100% - 48px));
  }

  .fraud-page .fraud-hero h1 {
    font-size: 52px;
  }

  .fraud-page .fraud-hero p {
    font-size: 22px;
  }

  .fraud-page .fraud-content-card p {
    font-size: 17px;
  }

  .refund-page .refund-hero h1 {
    font-size: 30px;
  }

  .refund-page .refund-hero p {
    font-size: 42px;
  }

  .refund-page .refund-content-card p {
    font-size: 17px;
  }

  .terms-page .terms-hero h1 {
    font-size: 52px;
  }

  .terms-page .terms-hero p {
    font-size: 22px;
  }

  .terms-page .terms-content-card p {
    font-size: 17px;
  }

  .privacy-page .privacy-hero h1 {
    font-size: 52px;
  }

  .privacy-page .privacy-hero p {
    font-size: 22px;
  }

  .privacy-page .privacy-content-card h2 {
    font-size: 32px;
  }

  .privacy-page .privacy-content-card p {
    font-size: 17px;
  }

  .admin-page .admin-hero-wrap,
  .admin-page .admin-main-wrap {
    width: min(1080px, calc(100% - 90px));
  }

  .admin-page .admin-access-wrap {
    width: min(760px, calc(100% - 90px));
  }
}

@media (max-width: 980px) {
  body {
    padding-top: 112px;
  }

  .header-topbar-wrap {
    min-height: 34px;
  }

  .header-contact-item {
    font-size: 12px;
  }

  .header-socials a {
    width: 26px;
    height: 26px;
    font-size: 10px;
  }

  .hero {
    min-height: auto;
    padding-top: 56px;
  }

  .nav-wrap {
    min-height: 76px;
    gap: 10px;
  }

  .brand-image {
    width: 106px;
  }

  .menu {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 82px;
    background: #ffffff;
    border: 1px solid #dbe3f1;
    border-radius: 16px;
    padding: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    z-index: 10;
  }

  .menu > a {
    width: 100%;
    display: block;
    text-align: left;
  }

  .menu .menu-item-about {
    width: 100%;
    display: block;
  }

  .menu .menu-item-about > a {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    width: 100%;
    color: #566a8d;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.35;
  }

  .menu .about-dropdown {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    min-width: 0;
    margin-top: 6px;
    border-radius: 10px;
    box-shadow: none;
    background: #f3f7ff;
    border-color: #dde6f6;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    padding: 0 8px;
  }

  .menu .about-dropdown-close {
    position: static;
    width: 24px;
    height: 24px;
    margin-left: auto;
    margin-bottom: 6px;
  }

  .menu .about-dropdown a:first-of-type {
    margin-top: 0;
  }

  .menu .about-dropdown a {
    font-size: 13px;
    padding: 8px 10px;
    width: 100%;
    text-align: left;
  }

  .menu .menu-item-about.force-open .about-dropdown {
    opacity: 1;
    max-height: 260px;
    overflow: visible;
    padding: 8px;
    transform: none;
  }

  .menu.open {
    display: flex;
  }

  .nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 12px;
    font-size: 12px;
    white-space: nowrap;
    box-shadow: 0 8px 14px rgba(39, 89, 226, 0.2);
  }

  .menu-toggle {
    display: block;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .badge {
    margin-bottom: 26px;
  }

  .hero-copy p {
    margin-top: 20px;
    font-size: 18px;
  }

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

  .hero-trust-points {
    gap: 16px;
    margin-top: 12px;
  }

  .trust-item {
    font-size: 13px;
  }

  .trust-icon {
    width: 20px;
    height: 20px;
    font-size: 11px;
  }

  .btn {
    min-height: 54px;
    font-size: 21px;
    padding: 0 28px;
  }

  .photo-wrap {
    border-radius: 18px;
  }

  .photo-wrap img {
    height: 420px;
  }

  .placement-card {
    left: 14px;
    right: 14px;
    bottom: 14px;
    min-height: 96px;
    padding: 14px 16px;
    border-radius: 16px;
  }

  .small {
    font-size: 12px;
  }

  .count {
    font-size: 32px;
  }

  .avatars span {
    width: 36px;
    height: 36px;
  }

  .services {
    padding: 56px 0 52px;
  }

  .services-wrap {
    width: min(700px, calc(100% - 28px));
  }

  .services-head h2 {
    font-size: 40px;
  }

  .services-line {
    width: 92px;
    margin-bottom: 20px;
  }

  .services-head p {
    font-size: 18px;
    max-width: 560px;
  }

  .services-layout {
    position: static;
    min-height: auto;
    margin-top: 36px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card {
    position: relative;
    width: 100%;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    padding-right: 72px;
  }

  .service-card h3 {
    font-size: 26px;
  }

  .services-center {
    position: static;
    transform: none;
    order: -1;
    display: grid;
    place-items: center;
    margin-bottom: 8px;
  }

  .center-ring {
    width: 240px;
    height: 240px;
    padding: 12px;
  }

  .service-icon {
    right: 14px;
    width: 44px;
    height: 44px;
    font-size: 19px;
  }

  .why-choose {
    padding: 46px 0 58px;
  }

  .why-wrap h2 {
    font-size: 36px;
  }

  .why-grid {
    margin-top: 30px;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .why-grid-bottom {
    margin-top: 16px;
  }

  .why-card {
    border-radius: 16px;
  }

  .why-card img {
    height: 220px;
  }

  .why-body {
    padding: 18px 18px 20px;
  }

  .why-body h3 {
    font-size: 24px;
  }

  .why-body p {
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.5;
  }

  .apply {
    padding: 46px 0 56px;
  }

  .apply-wrap {
    width: min(700px, calc(100% - 28px));
  }

  .apply-head h2 {
    font-size: 36px;
  }

  .apply-head p {
    margin-top: 12px;
    font-size: 15px;
  }

  .apply-grid {
    margin-top: 26px;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .apply-media {
    border-radius: 16px;
  }

  .apply-media img {
    height: 430px;
  }

  .apply-overlay {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 14px 14px 16px;
  }

  .apply-overlay li {
    font-size: 14px;
    margin-top: 8px;
  }

  .apply-right {
    gap: 12px;
  }

  .apply-cards-grid {
    gap: 10px;
  }

  .apply-mini-card {
    border-radius: 14px;
    min-height: 150px;
    padding: 14px;
  }

  .apply-mini-card h4 {
    font-size: 18px;
  }

  .apply-mini-card p {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.45;
  }

  .apply-cta-card {
    border-radius: 16px;
    padding: 16px 14px;
  }

  .apply-cta-card h3 {
    font-size: 28px;
  }

  .apply-cta-card p {
    font-size: 14px;
    margin-top: 8px;
  }

  .apply-cta-btn {
    margin-top: 12px;
    min-height: 44px;
    border-radius: 12px;
    font-size: 15px;
  }

  .mission {
    padding: 22px 0 56px;
  }

  .mission-wrap {
    width: min(700px, calc(100% - 28px));
  }

  .mission-card {
    border-radius: 24px;
    padding: 34px 18px 34px;
  }

  .mission-badge {
    min-height: 34px;
    padding: 0 16px;
    font-size: 11px;
    letter-spacing: 2px;
  }

  .mission-card h2 {
    margin-top: 16px;
    font-size: 40px;
  }

  .mission-card p {
    margin-top: 16px;
    font-size: 18px;
    line-height: 1.4;
  }

  .mission-points {
    margin-top: 24px;
    gap: 10px;
    flex-wrap: wrap;
  }

  .mission-point {
    font-size: 11px;
    gap: 8px;
  }

  .mission-icon {
    width: 34px;
    height: 34px;
    font-size: 16px;
  }

  .milestones {
    padding: 14px 0 56px;
  }

  .milestones-wrap {
    width: min(700px, calc(100% - 28px));
  }

  .milestones-head h2 {
    font-size: 34px;
  }

  .milestones-head p {
    margin-top: 10px;
    font-size: 16px;
  }

  .milestones-grid {
    margin-top: 28px;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .milestone-card {
    min-height: 170px;
    border-radius: 14px;
    padding: 16px 10px;
  }

  .milestone-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    font-size: 22px;
  }

  .milestone-card h3 {
    margin-top: 12px;
    font-size: 36px;
  }

  .milestone-card p {
    margin-top: 4px;
    font-size: 11px;
    letter-spacing: 1px;
  }

  .india-slider {
    padding: 0 0 50px;
  }

  .india-slider-wrap {
    width: min(700px, calc(100% - 28px));
  }

  .india-slider-frame {
    height: 280px;
    border-radius: 18px;
  }

  .india-slide h3 {
    font-size: 30px;
  }

  .india-slider-dots {
    margin-top: 14px;
    gap: 10px;
  }

  .india-slider-dots button {
    width: 12px;
    height: 12px;
  }

  .home-search-strip {
    padding: 16px 0 24px;
  }

  .home-search-wrap {
    width: min(700px, calc(100% - 28px));
  }

  .home-search-bar {
    grid-template-columns: 1fr;
    padding: 10px;
  }

  .home-search-field,
  .home-search-btn {
    min-height: 46px;
    border-radius: 12px;
  }

  .home-search-btn {
    font-size: 16px;
  }

  .site-footer {
    padding: 46px 0 42px;
  }

  .footer-wrap {
    width: min(700px, calc(100% - 28px));
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-bottom: 28px;
  }

  .footer-col h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .footer-col a,
  .footer-col p,
  .footer-brand p {
    font-size: 14px;
    line-height: 1.45;
  }

  .footer-map-card iframe {
    height: 200px;
  }

  .footer-top > .footer-col:last-child {
    display: block;
  }

  .footer-top > .footer-col:last-child h3 {
    margin-bottom: 10px;
  }

  .footer-contact-info {
    gap: 2px;
  }

  .footer-top > .footer-col:last-child .footer-map-card {
    margin-top: 14px;
  }

  .footer-logo {
    width: 92px;
    height: 66px;
  }

  .footer-brand p {
    margin-top: 0;
  }

  .footer-bottom {
    padding-top: 24px;
  }

  .footer-links a,
  .footer-bottom p {
    font-size: 13px;
  }

  .services-page .services-hero {
    min-height: 64vh;
    padding: 82px 0 48px;
  }

  .services-page .services-hero h1 {
    font-size: 46px;
  }

  .services-page .services-hero p {
    margin-top: 14px;
    font-size: 20px;
  }

  .services-page .services-catalog {
    padding: 38px 0 56px;
  }

  .services-page .services-catalog-wrap {
    width: min(700px, calc(100% - 28px));
  }

  .services-page .plans-head h2 {
    font-size: 36px;
  }

  .services-page .plans-head p {
    font-size: 15px;
  }

  .services-page .plans-tabs {
    width: 100%;
    justify-content: center;
  }

  .services-page .plans-tabs button {
    flex: 1;
    min-height: 42px;
    font-size: 13px;
    padding: 0 10px;
  }

  .services-page .plans-panel {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .services-page .plan-card {
    height: auto;
    min-height: auto;
    border-radius: 22px;
    padding: 18px 16px;
  }

  .services-page .plan-title {
    font-size: 18px;
  }

  .services-page .save-badge {
    top: 10px;
    right: 10px;
    min-height: 24px;
    font-size: 11px;
  }

  .services-page .old-price {
    font-size: 16px;
  }

  .services-page .new-price {
    font-size: 32px;
  }

  .services-page .session-pill {
    font-size: 12px;
    padding: 7px 12px;
  }

  .services-page .seat-count {
    min-height: 26px;
    font-size: 11px;
  }

  .services-page .plan-standalone {
    margin-top: 26px;
    font-size: 18px;
  }

  .services-page .plan-services {
    margin-top: 16px;
    gap: 9px;
  }

  .services-page .plan-services li {
    font-size: 15px;
    padding-left: 24px;
  }

  .services-page .plan-services li::before {
    width: 14px;
    height: 14px;
    top: 4px;
  }

  .services-page .plan-services li::after {
    left: 4px;
    top: 8px;
    width: 7px;
    height: 4px;
  }

  .services-page .plan-note {
    margin-top: 14px;
    border-radius: 12px;
    font-size: 12px;
    padding: 10px 12px;
  }

  .services-page .buy-btn {
    margin-top: 14px;
    min-height: 44px;
    border-radius: 12px;
    font-size: 14px;
  }

  .services-page .services-cards-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .services-page .service-offer-card {
    border-radius: 14px;
    padding: 18px 16px 16px;
  }

  .services-page .offer-icon {
    width: 52px;
    height: 52px;
    border-radius: 13px;
    font-size: 28px;
    margin-bottom: 14px;
  }

  .services-page .service-offer-card h3 {
    font-size: 26px;
  }

  .services-page .service-offer-card p {
    margin-top: 8px;
    font-size: 14px;
  }

  .services-page .service-offer-card li {
    font-size: 14px;
    line-height: 1.7;
  }

  .services-page .service-offer-actions {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .services-page .service-offer-actions button {
    min-height: 40px;
    font-size: 14px;
  }

  .jobs-page .jobs-hero {
    padding: 38px 0 44px;
  }

  .jobs-page .jobs-hero-wrap,
  .jobs-page .jobs-listing-wrap {
    width: min(700px, calc(100% - 28px));
  }

  .jobs-page .jobs-banner-wrap {
    width: min(700px, calc(100% - 28px));
  }

  .jobs-page .jobs-banner {
    padding: 66px 0 70px;
  }

  .jobs-page .jobs-banner h1 {
    font-size: 36px;
  }

  .jobs-page .jobs-banner p {
    margin-top: 10px;
    font-size: 14px;
  }

  .jobs-page .jobs-hero h1 {
    font-size: 34px;
  }

  .jobs-page .jobs-search-bar {
    margin-top: 16px;
    grid-template-columns: 1fr;
    max-width: none;
    gap: 10px;
  }

  .jobs-page .search-input-wrap,
  .jobs-page .jobs-select-wrap,
  .jobs-page .jobs-search-btn {
    min-height: 46px;
  }

  .jobs-page .jobs-listing {
    padding: 28px 0 56px;
  }

  .jobs-page .jobs-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .jobs-page .job-card {
    border-radius: 14px;
    padding: 14px 14px 12px;
  }

  .jobs-page .job-card h3 {
    font-size: 22px;
  }

  .jobs-page .job-meta li {
    font-size: 14px;
  }

  .jobs-page .job-card p {
    font-size: 13px;
  }

  .jobs-page .job-apply-btn {
    min-height: 40px;
    font-size: 16px;
  }

  .admin-page .admin-hero {
    padding: 34px 0;
  }

  .admin-page .admin-hero-wrap,
  .admin-page .admin-main-wrap {
    width: min(700px, calc(100% - 28px));
  }

  .admin-page .admin-access-wrap {
    width: min(700px, calc(100% - 28px));
    padding: 14px;
    border-radius: 14px;
    font-size: 14px;
  }

  .admin-page .admin-hero h1 {
    font-size: 36px;
  }

  .admin-page .admin-hero p {
    font-size: 14px;
  }

  .admin-page .admin-main {
    padding: 26px 0 56px;
  }

  .admin-page .admin-main-wrap {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .admin-page .admin-form-card,
  .admin-page .admin-preview-card,
  .admin-page .admin-users-card {
    border-radius: 14px;
    padding: 16px;
  }

  .admin-page .admin-form-card h2,
  .admin-page .admin-preview-card h2,
  .admin-page .admin-users-card h2 {
    font-size: 24px;
  }

  .admin-page .admin-grid2 {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .admin-page .admin-post-btn,
  .admin-page .admin-clear-btn {
    min-height: 42px;
    font-size: 14px;
  }

  .about-page .about-hero {
    padding: 34px 0 44px;
  }

  .about-page .about-hero-wrap,
  .about-page .about-stats-wrap,
  .about-page .about-mv-wrap,
  .about-page .about-services-wrap,
  .about-page .about-values-wrap,
  .about-page .about-adv-wrap,
  .about-page .about-testimonials-wrap {
    width: min(700px, calc(100% - 28px));
  }

  .about-page .about-hero-wrap,
  .about-page .about-mv-wrap,
  .about-page .about-adv-wrap {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .about-page .about-adv-right {
    min-height: 460px;
    padding: 30px 20px;
  }

  .about-page .about-adv-right .step {
    margin-bottom: 0;
  }

  .about-page .about-hero h1 {
    font-size: 46px;
  }

  .about-page .about-hero-media img {
    height: 340px;
  }

  .about-page .mini {
    font-size: 13px;
    letter-spacing: 2.4px;
    margin-bottom: 10px;
  }

  .about-page .about-stats-wrap {
    grid-template-columns: 1fr 1fr;
  }

  .about-page .about-mv-copy h2,
  .about-page .about-services h2,
  .about-page .about-values h2,
  .about-page .about-adv-left h2 {
    font-size: 34px;
  }

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

  .about-page .values-grid,
  .about-page .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .about-page .about-testimonials h2 {
    font-size: 32px;
  }

  .about-page .about-testimonials .sub {
    font-size: 14px;
  }

  .about-page .testimonial-grid {
    margin-top: 24px;
    gap: 12px;
  }

  .about-page .testimonial-grid article {
    min-height: 280px;
    border-radius: 16px;
    padding: 24px 14px 14px;
  }

  .about-page .testimonial-grid article > p {
    font-size: 16px;
  }

  .about-page .who {
    margin-top: 14px;
  }

  .about-page .who span {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }

  .about-page .who strong {
    font-size: 18px;
  }

  .about-page .who small {
    font-size: 11px;
  }

  .contact-page .contact-hero {
    padding: 52px 0 150px;
  }

  .contact-page .contact-hero-wrap,
  .contact-page .contact-main-wrap {
    width: min(760px, calc(100% - 28px));
  }

  .contact-page .contact-hero-badge {
    min-height: 46px;
    padding: 0 18px;
    font-size: 13px;
  }

  .contact-page .contact-hero-kicker {
    margin-top: 20px;
    font-size: 12px;
  }

  .contact-page .contact-hero h1 {
    font-size: 42px;
  }

  .contact-page .contact-hero p {
    font-size: 16px;
    line-height: 1.6;
  }

  .contact-page .contact-main-wrap {
    margin-top: -94px;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-page .contact-info-card,
  .contact-page .contact-form-card,
  .contact-page .contact-reasons-card {
    border-radius: 24px;
  }

  .contact-page .contact-info-card {
    padding: 26px 20px;
  }

  .contact-page .contact-form-card,
  .contact-page .contact-reasons-card {
    padding: 24px 20px;
  }

  .contact-page .contact-info-card h2,
  .contact-page .contact-form-card h2,
  .contact-page .contact-reasons-card h3 {
    font-size: 28px;
  }

  .contact-page .contact-item {
    grid-template-columns: 48px 1fr;
  }

  .contact-page .contact-item .icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  .contact-page .contact-item p {
    font-size: 16px;
  }

  .contact-page .contact-form-card .grid2 {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-page .contact-form-card textarea {
    min-height: 132px;
  }

  .contact-page .contact-submit {
    min-height: 50px;
    font-size: 16px;
  }

  .auth-page .auth-section {
    padding: 42px 0 56px;
  }

  .auth-page .auth-wrap {
    width: min(700px, calc(100% - 28px));
  }

  .auth-page .auth-card {
    border-radius: 14px;
    padding: 18px 16px;
  }

  .auth-page .auth-card h1 {
    font-size: 32px;
  }

  .auth-page .auth-submit {
    min-height: 42px;
    font-size: 15px;
  }

  .fraud-page .fraud-main {
    padding: 0 0 52px;
  }

  .refund-page .refund-main {
    padding: 24px 0 52px;
  }

  .terms-page .terms-main {
    padding: 24px 0 52px;
  }

  .privacy-page .privacy-main {
    padding: 24px 0 52px;
  }

  .fraud-page .fraud-content-wrap {
    width: min(700px, calc(100% - 28px));
  }

  .refund-page .refund-content-wrap {
    width: min(700px, calc(100% - 28px));
  }

  .terms-page .terms-content-wrap {
    width: min(700px, calc(100% - 28px));
  }

  .privacy-page .privacy-content-wrap {
    width: min(700px, calc(100% - 28px));
  }

  .fraud-page .fraud-hero {
    min-height: 260px;
  }

  .fraud-page .fraud-hero-wrap {
    min-height: 260px;
  }

  .fraud-page .fraud-hero h1 {
    font-size: 38px;
  }

  .fraud-page .fraud-hero p {
    font-size: 18px;
  }

  .refund-page .refund-hero {
    min-height: 260px;
  }

  .refund-page .refund-hero-wrap {
    min-height: 260px;
  }

  .refund-page .refund-hero h1 {
    font-size: 22px;
  }

  .refund-page .refund-hero p {
    font-size: 30px;
  }

  .terms-page .terms-hero {
    min-height: 260px;
  }

  .terms-page .terms-hero-wrap {
    min-height: 260px;
  }

  .terms-page .terms-hero h1 {
    font-size: 38px;
  }

  .terms-page .terms-hero p {
    font-size: 18px;
  }

  .privacy-page .privacy-hero {
    min-height: 260px;
  }

  .privacy-page .privacy-hero-wrap {
    min-height: 260px;
  }

  .privacy-page .privacy-hero h1 {
    font-size: 38px;
  }

  .privacy-page .privacy-hero p {
    font-size: 18px;
  }

  .refund-page .refund-content {
    padding-top: 24px;
  }

  .refund-page .refund-content-card {
    border-radius: 14px;
    padding: 16px 14px;
  }

  .refund-page .refund-content-card p {
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.62;
  }

  .fraud-page .fraud-content {
    padding-top: 24px;
  }

  .fraud-page .fraud-content-card {
    border-radius: 14px;
    padding: 16px 14px;
  }

  .fraud-page .fraud-content-card p {
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.62;
  }

  .refund-page .refund-card {
    margin-top: 12px;
    padding: 2px;
  }

  .refund-page .refund-card h2 {
    font-size: 28px;
  }

  .refund-page .refund-card p {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.54;
  }

  .terms-page .terms-content {
    padding-top: 24px;
  }

  .terms-page .terms-content-card {
    border-radius: 14px;
    padding: 16px 14px;
  }

  .terms-page .terms-content-card p {
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.62;
  }

  .terms-page .terms-content-card .terms-highlight-note {
    margin-top: 16px;
    padding: 14px 14px 14px 16px;
    border-radius: 12px;
  }

  .privacy-page .privacy-content {
    padding-top: 24px;
  }

  .privacy-page .privacy-content-card {
    border-radius: 14px;
    padding: 16px 14px;
  }

  .privacy-page .privacy-content-card h2 {
    margin-top: 22px;
    font-size: 24px;
  }

  .privacy-page .privacy-content-card p {
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.62;
  }
}

@media (max-width: 760px) {
  .nav-wrap {
    min-height: 72px;
    gap: 8px;
  }

  .brand-image {
    width: 88px;
  }

  .menu {
    left: 12px;
    right: 12px;
    top: 76px;
    padding: 12px;
    gap: 10px;
  }

  .nav-cta {
    min-height: 34px;
    padding: 0 10px;
    font-size: 11px;
  }

  .menu-toggle span {
    width: 22px;
    height: 2.5px;
  }

  .admin-page .admin-access {
    padding: 36px 0 14px;
  }

  .admin-page .admin-hero {
    padding: 24px 0;
  }

  .admin-page .admin-hero h1 {
    font-size: 30px;
  }

  .admin-page .admin-hero p {
    margin-top: 8px;
    font-size: 13px;
  }

  .admin-page .admin-main {
    padding: 18px 0 44px;
  }

  .admin-page .admin-form-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .admin-page .admin-post-btn,
  .admin-page .admin-clear-btn {
    width: 100%;
  }

  .admin-page .admin-posted-jobs h3 {
    font-size: 16px;
  }

  .admin-page .admin-posted-jobs p {
    font-size: 12px;
  }

  .apply-cards-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .apply-mini-card {
    min-height: auto;
  }

  .apply-cta-card h3 {
    font-size: 24px;
  }

  .admin-page .admin-users-table {
    min-width: 0;
  }

  .admin-page .admin-users-table thead {
    display: none;
  }

  .admin-page .admin-users-table,
  .admin-page .admin-users-table tbody,
  .admin-page .admin-users-table tr,
  .admin-page .admin-users-table td {
    display: block;
    width: 100%;
  }

  .admin-page .admin-users-table tr {
    background: #ffffff;
    border: 1px solid #d7e0ef;
    border-radius: 12px;
    padding: 10px;
    margin-bottom: 10px;
  }

  .admin-page .admin-users-table td {
    border: 0;
    padding: 6px 2px;
    font-size: 13px;
  }

  .admin-page .admin-users-table td::before {
    content: attr(data-label) ": ";
    color: #102347;
    font-weight: 600;
  }

  .admin-page .admin-users-empty {
    border: 0 !important;
    text-align: left !important;
    padding: 4px 2px !important;
  }

  .admin-page .admin-users-empty::before {
    content: "";
  }

  .admin-page .admin-onboarding-grid {
    grid-template-columns: 1fr;
  }
}

/* Keep hover zoom working even with scroll-reveal transforms */
.service-card.reveal-on-scroll.is-visible:hover,
.service-offer-card.reveal-on-scroll.is-visible:hover,
.why-card.reveal-on-scroll.is-visible:hover,
.plan-card.reveal-on-scroll.is-visible:hover,
.job-card.reveal-on-scroll.is-visible:hover,
.milestone-card.reveal-on-scroll.is-visible:hover,
.contact-info-card.reveal-on-scroll.is-visible:hover,
.contact-form-card.reveal-on-scroll.is-visible:hover,
.values-grid article.reveal-on-scroll.is-visible:hover,
.testimonial-grid article.reveal-on-scroll.is-visible:hover,
.about-adv-right.reveal-on-scroll.is-visible:hover,
.about-mv-media.reveal-on-scroll.is-visible:hover,
.photo-wrap.reveal-on-scroll.is-visible:hover,
.center-ring.reveal-on-scroll.is-visible:hover {
  transform: translateY(-5px) scale(1.01) !important;
}

button.reveal-on-scroll.is-visible:hover,
.plans-tabs button.reveal-on-scroll.is-visible:hover {
  transform: translateY(-2px) scale(1.02) !important;
}

.guarantee-feature {
  padding: 22px 0 48px;
  background: #ffffff;
}

.guarantee-feature-card {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 56px;
  align-items: center;
  padding: 14px 0 0;
}

.guarantee-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0;
  color: #16213f;
}

.guarantee-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  border: 1px solid #d4f6df;
  border-radius: 999px;
  background: linear-gradient(180deg, #f5fff8 0%, #eefff3 100%);
  color: #2f8a57;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.guarantee-pill-icon {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #3fd36f;
  box-shadow: 0 0 0 6px rgba(63, 211, 111, 0.13);
  animation: guaranteeDotBlink 0.95s ease-in-out infinite;
}

@keyframes guaranteeDotBlink {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(63, 211, 111, 0.13), 0 0 0 rgba(63, 211, 111, 0);
  }

  50% {
    opacity: 0.35;
    transform: scale(1.22);
    box-shadow: 0 0 0 10px rgba(63, 211, 111, 0.2), 0 0 18px rgba(63, 211, 111, 0.42);
  }
}

.guarantee-copy h2 {
  margin: 24px 0 18px;
  max-width: 640px;
  color: #101b3c;
  font-size: 64px;
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.guarantee-copy h2 span {
  color: #3560ff;
}

.guarantee-copy p {
  margin: 0;
  max-width: 620px;
  color: #5c6789;
  line-height: 1.68;
}

.guarantee-copy .guarantee-lead {
  color: #27314f;
  font-size: 20px;
  font-weight: 600;
}

.guarantee-copy .guarantee-subcopy {
  margin-top: 22px;
  font-size: 18px;
}

.guarantee-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.guarantee-tags span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 16px;
  border: 1px solid #edf1f8;
  background: #ffffff;
  color: #37415d;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(30, 52, 104, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.guarantee-tags span:hover {
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(83, 104, 154, 0.12), 0 0 24px rgba(83, 104, 154, 0.18);
  transform: translateY(-2px);
  animation: guaranteeTagBlink 0.75s ease-in-out 2;
}

.guarantee-tags span b {
  font-size: 18px;
  line-height: 1;
}

@keyframes guaranteeTagBlink {
  0%,
  100% {
    opacity: 1;
  }

  35% {
    opacity: 0.34;
  }

  70% {
    opacity: 1;
  }
}

.guarantee-quote-card {
  margin-top: 22px;
  width: min(100%, 620px);
  padding: 18px 20px 18px 24px;
  border-radius: 18px;
  border: 1px solid #edf1f8;
  border-left: 4px solid #3560ff;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(24, 41, 85, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.guarantee-quote-card:hover {
  transform: scale(1.02);
  box-shadow: 0 18px 34px rgba(24, 41, 85, 0.12);
}

.guarantee-quote-card p {
  color: #222e4d;
  font-size: 17px;
  font-style: italic;
  font-weight: 600;
}

.guarantee-feature-btn {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 56px;
  padding: 0 26px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, #2e61ff 0%, #6144ff 100%);
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 16px 36px rgba(57, 85, 219, 0.28);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.guarantee-feature-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 42px rgba(57, 85, 219, 0.34);
}

.guarantee-visual {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guarantee-photo-frame {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 1;
  border-radius: 34px;
  overflow: hidden;
  background: #dfe6f2;
  box-shadow: 0 26px 60px rgba(14, 23, 56, 0.12);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.guarantee-photo-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(10, 18, 45, 0.08));
  z-index: 1;
}

.guarantee-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.guarantee-photo-frame:hover {
  transform: scale(0.99);
  box-shadow: 0 30px 64px rgba(14, 23, 56, 0.16);
}

.guarantee-photo-frame:hover img {
  transform: scale(1.05);
}

.guarantee-ready-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.guarantee-ready-card:hover {
  transform: scale(1.02);
  box-shadow: 0 22px 42px rgba(13, 28, 72, 0.22);
}

.guarantee-ready-card {
  position: absolute;
  left: 50px;
  right: 50px;
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 18px 40px rgba(13, 28, 72, 0.18);
}

.guarantee-ready-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: linear-gradient(135deg, #d9ffe8 0%, #b4f1cc 100%);
  font-size: 24px;
}

.guarantee-ready-card strong {
  display: block;
  color: #162546;
  font-size: 17px;
  font-weight: 700;
}

.guarantee-ready-card p {
  margin: 4px 0 0;
  color: #5f6c8f;
  font-size: 14px;
}

@media (max-width: 1024px) {
  .guarantee-feature-card {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .guarantee-copy h2 {
    font-size: 52px;
  }

  .guarantee-copy .guarantee-lead {
    font-size: 19px;
  }

  .guarantee-visual {
    min-height: 460px;
  }

  .guarantee-ready-card {
    left: 34px;
    right: 34px;
    bottom: 26px;
  }
}

@media (max-width: 760px) {
  .guarantee-feature {
    padding: 8px 0 34px;
  }

  .guarantee-copy {
    padding: 0;
  }

  .guarantee-pill {
    font-size: 12px;
    padding: 10px 14px;
  }

  .guarantee-copy h2 {
    margin: 20px 0 14px;
    font-size: 40px;
  }

  .guarantee-copy .guarantee-lead {
    font-size: 16px;
  }

  .guarantee-copy .guarantee-subcopy {
    margin-top: 16px;
    font-size: 15px;
  }

  .guarantee-tags {
    gap: 10px;
    margin-top: 22px;
  }

  .guarantee-tags span {
    font-size: 13px;
    padding: 12px 14px;
  }

  .guarantee-feature-btn {
    margin-top: 26px;
    width: 100%;
    justify-content: center;
    min-height: 52px;
    font-size: 15px;
    border-radius: 18px;
  }

  .guarantee-visual {
    min-height: auto;
    padding-bottom: 94px;
  }

  .guarantee-photo-frame {
    width: 100%;
    max-width: 100%;
    border-radius: 26px;
  }

  .guarantee-ready-card {
    left: 16px;
    right: 16px;
    bottom: 12px;
    min-width: 0;
    transform: none;
  }

  .guarantee-ready-card strong {
    font-size: 15px;
  }

  .guarantee-ready-card p {
    font-size: 12px;
  }

  .guarantee-quote-card {
    width: 100%;
    padding: 16px 16px 16px 18px;
  }

  .guarantee-quote-card p {
    font-size: 15px;
  }
}

.interview-feature {
  padding: 28px 0 88px;
  background: #ffffff;
}

.interview-feature-card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  padding: 64px 28px 66px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, #22397f 0%, #2348d0 60%, #4a59ff 100%);
  background-size: 38px 38px, 38px 38px, 100% 100%;
  box-shadow: 0 30px 65px rgba(35, 63, 166, 0.24);
}

.interview-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  color: #ffffff;
  text-align: center;
}

.interview-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  animation: interviewPillBlink 1.05s ease-in-out infinite;
}

.interview-pill span:last-child {
  animation: interviewPillTextBlink 0.95s ease-in-out infinite;
}

.interview-pill-icon {
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #61f08a;
  font-size: 14px;
  line-height: 1;
}

@keyframes interviewPillBlink {
  0%,
  100% {
    opacity: 1;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      0 0 0 rgba(255, 218, 104, 0),
      0 0 0 rgba(255, 255, 255, 0);
  }

  35% {
    opacity: 0.38;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.18),
      0 0 20px rgba(255, 218, 104, 0.32),
      0 0 28px rgba(255, 255, 255, 0.12);
  }

  70% {
    opacity: 0.92;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.14),
      0 0 10px rgba(255, 218, 104, 0.16),
      0 0 16px rgba(255, 255, 255, 0.08);
  }
}

@keyframes interviewPillTextBlink {
  0%,
  100% {
    opacity: 1;
    text-shadow: 0 0 0 rgba(255, 255, 255, 0);
  }

  45% {
    opacity: 0.52;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.22);
  }
}

.interview-copy h2 {
  margin: 26px 0 18px;
  max-width: 790px;
  color: #ffffff;
  font-size: 64px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.interview-copy h2 span {
  color: #ffc83d;
}

.interview-copy p {
  margin: 0;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
  line-height: 1.55;
}

.interview-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 26px;
}

.interview-tags a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.interview-tags a:hover {
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12), 0 10px 22px rgba(18, 33, 88, 0.18);
  transform: translateY(-2px);
  animation: interviewTagBlink 0.7s ease-in-out 2;
}

.service-offer-card {
  scroll-margin-top: 120px;
}

@keyframes interviewTagBlink {
  0%,
  100% {
    opacity: 1;
  }

  35% {
    opacity: 0.35;
  }

  70% {
    opacity: 1;
  }
}

.interview-feature-btn {
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 56px;
  padding: 0 30px;
  border: 0;
  border-radius: 16px;
  background: #ffffff;
  color: #2350d7;
  font-size: 17px;
  font-weight: 700;
  box-shadow: 0 16px 34px rgba(16, 34, 92, 0.24);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.interview-feature-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 40px rgba(16, 34, 92, 0.28);
}

@media (max-width: 1024px) {
  .interview-feature-card {
    padding: 56px 24px 58px;
  }

  .interview-copy h2 {
    font-size: 54px;
  }
}

@media (max-width: 760px) {
  .interview-feature {
    padding: 16px 0 64px;
  }

  .interview-feature-card {
    border-radius: 26px;
    padding: 34px 18px 40px;
  }

  .interview-copy {
    padding: 0;
  }

  .interview-pill {
    font-size: 12px;
    padding: 9px 14px;
  }

  .interview-copy h2 {
    margin: 20px 0 14px;
    font-size: 40px;
    line-height: 1.08;
  }

  .interview-copy p {
    font-size: 16px;
    line-height: 1.6;
  }

  .interview-tags {
    gap: 10px 8px;
    margin-top: 22px;
  }

  .interview-tags a {
    font-size: 13px;
    padding: 10px 14px;
  }

  .interview-feature-btn {
    margin-top: 26px;
    min-height: 52px;
    padding: 0 24px;
    font-size: 16px;
    border-radius: 18px;
  }
}

.dashboard-page .dashboard-main {
  padding-bottom: 72px;
}

.dashboard-page .dashboard-hero {
  padding: 34px 0 28px;
}

.dashboard-page .dashboard-hero-wrap {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  align-items: stretch;
}

.dashboard-page .dashboard-copy,
.dashboard-page .dashboard-summary-card,
.dashboard-page .dashboard-profile-card,
.dashboard-page .dashboard-mini-card {
  border-radius: 30px;
  border: 1px solid rgba(215, 225, 241, 0.95);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 40px rgba(30, 57, 105, 0.08);
}

.dashboard-page .dashboard-copy {
  padding: 42px 42px 46px;
  background:
    radial-gradient(circle at top left, rgba(55, 113, 255, 0.16), transparent 36%),
    linear-gradient(135deg, #ffffff 0%, #f4f7ff 100%);
}

.dashboard-page .dashboard-chip {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(61, 99, 244, 0.1);
  color: #2958d7;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.dashboard-page .dashboard-copy h1 {
  margin-top: 18px;
  font-size: clamp(40px, 4vw, 60px);
  line-height: 1.06;
  color: #10204a;
}

.dashboard-page .dashboard-copy h1 span {
  display: block;
  color: #355df1;
}

.dashboard-page .dashboard-copy p {
  margin-top: 18px;
  max-width: 640px;
  color: #526584;
  font-size: 18px;
  line-height: 1.72;
}

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

.dashboard-page .dashboard-primary-btn,
.dashboard-page .dashboard-secondary-btn,
.dashboard-page .dashboard-inline-link {
  text-decoration: none;
}

.dashboard-page .dashboard-primary-btn,
.dashboard-page .dashboard-secondary-btn {
  min-height: 54px;
  padding: 0 28px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.dashboard-page .dashboard-primary-btn {
  background: linear-gradient(90deg, #2f71ff, #4f39e4);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(56, 93, 232, 0.28);
}

.dashboard-page .dashboard-secondary-btn {
  border: 1px solid #cbd8ef;
  background: #ffffff;
  color: #183166;
}

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

.dashboard-page .dashboard-summary-card {
  padding: 34px 30px;
  background:
    radial-gradient(circle at top right, rgba(55, 113, 255, 0.14), transparent 36%),
    linear-gradient(180deg, #ffffff 0%, #f5f8ff 100%);
}

.dashboard-page .dashboard-avatar {
  width: 78px;
  height: 78px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #2f71ff, #4f39e4);
  color: #ffffff;
  font-size: 29px;
  font-weight: 800;
  box-shadow: 0 16px 30px rgba(54, 92, 225, 0.24);
}

.dashboard-page .dashboard-summary-meta {
  margin-top: 18px;
}

.dashboard-page .dashboard-summary-label,
.dashboard-page .dashboard-section-kicker {
  color: #6f84a7;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.dashboard-page .dashboard-summary-meta h2,
.dashboard-page .dashboard-mini-card h3,
.dashboard-page .dashboard-profile-top h3 {
  margin-top: 8px;
  font-size: 28px;
  line-height: 1.18;
  color: #13244a;
}

.dashboard-page .dashboard-status-pill,
.dashboard-page .dashboard-profile-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(46, 197, 111, 0.12);
  color: #179654;
  font-size: 13px;
  font-weight: 700;
  margin-top: 14px;
}

.dashboard-page .dashboard-summary-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.dashboard-page .dashboard-summary-item,
.dashboard-page .dashboard-mini-list div {
  padding: 16px 18px;
  border-radius: 18px;
  background: #f6f8fd;
  border: 1px solid #e1e8f6;
}

.dashboard-page .dashboard-summary-item span,
.dashboard-page .dashboard-mini-list span {
  display: block;
  color: #6d82a5;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
}

.dashboard-page .dashboard-summary-item strong,
.dashboard-page .dashboard-mini-list strong,
.dashboard-page .dashboard-info-row strong {
  color: #11214a;
  font-size: 16px;
  font-weight: 700;
  word-break: break-word;
}

.dashboard-page .dashboard-details {
  padding: 8px 0 0;
}

.dashboard-page .dashboard-details-head {
  margin-bottom: 22px;
}

.dashboard-page .dashboard-details-head h2 {
  font-size: 34px;
  line-height: 1.14;
  color: #10204a;
}

.dashboard-page .dashboard-details-head p,
.dashboard-page .dashboard-mini-card p {
  margin-top: 8px;
  color: #5b6f8f;
  font-size: 16px;
  line-height: 1.7;
}

.dashboard-page .dashboard-details-grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 28px;
  align-items: start;
}

.dashboard-page .dashboard-profile-card {
  padding: 30px;
}

.dashboard-page .dashboard-profile-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.dashboard-page .dashboard-info-list {
  margin-top: 24px;
  display: grid;
  gap: 14px;
}

.dashboard-page .dashboard-info-row {
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid #e2e8f5;
  background: #f8faff;
  display: grid;
  gap: 6px;
}

.dashboard-page .dashboard-info-row span {
  color: #7185a7;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.dashboard-page .dashboard-side-grid {
  display: grid;
  gap: 20px;
}

.dashboard-page .dashboard-mini-card {
  padding: 26px;
}

.dashboard-page .dashboard-mini-card-accent {
  background:
    linear-gradient(135deg, rgba(47, 113, 255, 0.08), rgba(79, 57, 228, 0.12)),
    #ffffff;
}

.dashboard-page .dashboard-mini-list {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.dashboard-page .dashboard-inline-link {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  background: #17316a;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(23, 49, 106, 0.18);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.dashboard-page .dashboard-jobs-toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.dashboard-page .dashboard-jobs-status {
  margin: 0;
  color: #5b6f8f;
  font-size: 15px;
  font-weight: 600;
}

.dashboard-page .dashboard-jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.dashboard-page .dashboard-jobs-empty {
  margin-top: 18px;
  color: #6f84a7;
  font-size: 15px;
}

.dashboard-page .dashboard-jobs-grid .job-card {
  background: #f5f7fb;
  border: 1px solid #d8e0ee;
  border-radius: 18px;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  padding: 20px 20px 16px;
}

.dashboard-page .dashboard-jobs-grid .job-card-head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.dashboard-page .dashboard-jobs-grid .job-type {
  border: 2px solid #263956;
  border-radius: 10px;
  min-height: 28px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  color: #0f193b;
  font-size: 15px;
  font-weight: 500;
}

.dashboard-page .dashboard-jobs-grid .job-type.muted {
  border: 0;
  background: #e8edf4;
}

.dashboard-page .dashboard-jobs-grid .job-date {
  color: #8b9cb8;
  font-size: 12px;
}

.dashboard-page .dashboard-jobs-grid .job-card h3 {
  margin-top: 14px;
  color: #0f193b;
  font-size: 26px;
  line-height: 1.25;
  font-weight: 700;
}

.dashboard-page .dashboard-jobs-grid .job-meta {
  margin-top: 10px;
  list-style: none;
}

.dashboard-page .dashboard-jobs-grid .job-meta li {
  color: #334e72;
  font-size: 15px;
  line-height: 1.6;
}

.dashboard-page .dashboard-jobs-grid .job-card p {
  margin-top: 10px;
  color: #4d6182;
  font-size: 14px;
  line-height: 1.55;
  padding-bottom: 16px;
  border-bottom: 1px solid #d8e0ee;
}

.dashboard-page .dashboard-jobs-grid .job-apply-btn {
  margin-top: 16px;
  min-height: 44px;
  border: 0;
  border-radius: 14px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  background: linear-gradient(90deg, #2f71ff, #4f39e4);
  box-shadow: 0 10px 18px rgba(52, 95, 214, 0.2);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.dashboard-page .dashboard-applied-jobs-grid .job-card.is-applied {
  background: linear-gradient(180deg, #f4fbf7 0%, #eef8f2 100%);
  border-color: #cfe5d6;
}

.dashboard-page .dashboard-applied-jobs-grid .job-apply-btn.is-applied {
  background: linear-gradient(90deg, #1f9d62, #157347);
  box-shadow: 0 10px 18px rgba(21, 115, 71, 0.18);
  cursor: default;
  opacity: 1;
}

@media (max-width: 1024px) {
  .dashboard-page .dashboard-hero-wrap,
  .dashboard-page .dashboard-details-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-page .dashboard-jobs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .dashboard-page .dashboard-hero {
    padding: 18px 0 18px;
  }

  .dashboard-page .dashboard-copy,
  .dashboard-page .dashboard-summary-card,
  .dashboard-page .dashboard-profile-card,
  .dashboard-page .dashboard-mini-card {
    border-radius: 24px;
  }

  .dashboard-page .dashboard-copy {
    padding: 28px 20px 32px;
  }

  .dashboard-page .dashboard-copy h1 {
    font-size: 34px;
  }

  .dashboard-page .dashboard-copy p {
    font-size: 15px;
  }

  .dashboard-page .dashboard-summary-card,
  .dashboard-page .dashboard-profile-card,
  .dashboard-page .dashboard-mini-card {
    padding: 22px 18px;
  }

  .dashboard-page .dashboard-jobs-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-page .dashboard-profile-top {
    flex-direction: column;
  }

    .dashboard-page .dashboard-details-head h2 {
    font-size: 28px;
  }
}

.candidate-form-page .candidate-form-main {
  padding-bottom: 72px;
}

.candidate-form-page .candidate-form-hero {
  padding: 34px 0 18px;
}

.candidate-form-page .candidate-form-hero-wrap {
  padding: 42px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(62, 126, 255, 0.18), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #f4f7ff 100%);
  border: 1px solid #d9e3f3;
  box-shadow: 0 18px 38px rgba(31, 58, 106, 0.08);
}

.candidate-form-page .candidate-form-chip {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(61, 99, 244, 0.1);
  color: #2958d7;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.candidate-form-page .candidate-form-hero h1 {
  margin-top: 18px;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.08;
  color: #10204a;
}

.candidate-form-page .candidate-form-hero p {
  margin-top: 16px;
  max-width: 880px;
  color: #556986;
  font-size: 18px;
  line-height: 1.7;
}

.candidate-form-page .candidate-form-section {
  padding: 18px 0 0;
}

.candidate-form-page .candidate-form-card {
  display: grid;
  gap: 22px;
}

.candidate-form-page .candidate-form-group {
  padding: 28px;
  border-radius: 26px;
  border: 1px solid #dbe4f3;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 30px rgba(27, 49, 91, 0.06);
}

.candidate-form-page .candidate-form-group-head {
  margin-bottom: 18px;
}

.candidate-form-page .candidate-form-group-head span {
  display: inline-block;
  color: #6980a6;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.candidate-form-page .candidate-form-group-head h2 {
  margin-top: 6px;
  font-size: 28px;
  color: #10204a;
}

.candidate-form-page .candidate-form-grid {
  display: grid;
  gap: 18px;
}

.candidate-form-page .candidate-form-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.candidate-form-page label,
.candidate-form-page legend {
  color: #183166;
  font-size: 15px;
  font-weight: 600;
}

.candidate-form-page input,
.candidate-form-page select,
.candidate-form-page textarea {
  width: 100%;
  margin-top: 10px;
  border: 1px solid #d6e0f0;
  border-radius: 16px;
  background: #f8faff;
  color: #14244d;
  font: inherit;
  padding: 15px 16px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.candidate-form-page input:focus,
.candidate-form-page select:focus,
.candidate-form-page textarea:focus {
  border-color: #3b69f5;
  box-shadow: 0 0 0 4px rgba(59, 105, 245, 0.12);
}

.candidate-form-page textarea {
  resize: vertical;
}

.candidate-form-page .candidate-checkbox-group {
  margin-top: 18px;
  border: 1px solid #dbe3f2;
  border-radius: 20px;
  padding: 18px;
  background: #f9fbff;
}

.candidate-form-page .candidate-checkbox-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.candidate-form-page .candidate-checkbox-grid label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid #d7e0ef;
  background: #ffffff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.candidate-form-page .candidate-checkbox-grid input {
  width: 18px;
  height: 18px;
  margin-top: 0;
  padding: 0;
}

.candidate-form-page .candidate-form-actions {
  padding: 24px 28px 10px;
  border-radius: 26px;
  border: 1px solid #dbe4f3;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 30px rgba(27, 49, 91, 0.06);
}

.candidate-form-page .candidate-form-message {
  min-height: 24px;
  color: #526684;
  font-size: 14px;
  font-weight: 500;
}

.candidate-form-page .candidate-form-message.is-error {
  color: #c03838;
}

.candidate-form-page .candidate-form-message.is-success {
  color: #15914f;
}

.candidate-form-page .candidate-form-submit {
  margin-top: 12px;
  min-height: 56px;
  padding: 0 34px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(90deg, #2f71ff, #4f39e4);
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 16px 32px rgba(51, 88, 223, 0.24);
  cursor: pointer;
}

.candidate-form-page .candidate-form-submit:disabled {
  opacity: 0.75;
  cursor: wait;
}

@media (max-width: 1024px) {
  .candidate-form-page .candidate-form-grid-2,
  .candidate-form-page .candidate-checkbox-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .candidate-form-page .candidate-form-hero-wrap,
  .candidate-form-page .candidate-form-group,
  .candidate-form-page .candidate-form-actions {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .candidate-form-page .candidate-form-hero h1 {
    font-size: 32px;
  }

  .candidate-form-page .candidate-form-hero p {
    font-size: 15px;
  }

  .candidate-form-page .candidate-form-grid-2,
  .candidate-form-page .candidate-checkbox-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1280px) {
  .home-testimonials-wrap {
    width: min(1200px, calc(100% - 48px));
  }
}

@media (max-width: 760px) {
  .home-testimonials-head h2 {
    font-size: 32px;
  }

  .home-testimonials-head p {
    font-size: 12px;
    letter-spacing: 2.4px;
    min-height: 36px;
    padding: 0 14px;
  }

  .home-testimonial-card {
    width: 300px;
    min-height: 220px;
    padding: 24px 20px 22px;
    border-radius: 24px;
  }

  .home-testimonial-card p,
  .home-testimonial-card strong {
    font-size: 16px;
  }

  .home-testimonial-card::before {
    right: 16px;
    top: 10px;
    font-size: 78px;
  }
}
