@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Orbitron:wght@600&display=swap");

:root {
  --bg: #000000;
  --line: rgba(255, 197, 80, 0.2);
  --brand: #f1a61c;
  --text: #e6e6e6;
  --muted: #bdbdbd;
  --yellow-1: #ffb700;
  --yellow-2: #de9904;
  --yellow-3: #ad7805;
}

* {
  box-sizing: border-box;
}

html {
  scrollbar-width: thin;
  scrollbar-color: #ffb700 #000000;
  scroll-behavior: smooth;
}

body {
  scrollbar-color: #ffb700 #000000;
}

body::-webkit-scrollbar {
  width: 10px;
}

body::-webkit-scrollbar-track {
  background: #000000;
}

body::-webkit-scrollbar-thumb {
  background: #ffb700;
  border-radius: 999px;
  border: 2px solid #000000;
}

body::-webkit-scrollbar-button {
  display: none;
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 183, 0, 0.6);
  background: rgba(8, 8, 8, 0.8);
  color: #ffb700;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
  z-index: 2000;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  box-shadow: 0 0 16px rgba(255, 183, 0, 0.35);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.25'/></svg>");
  opacity: 0.03;
  pointer-events: none;
  z-index: 1;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
}

.block2 {
  margin: 0 auto;
  padding: 0 80px;
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: #0b0b0b;
  position: relative;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  min-height: 54px;
  padding: 6px 0;
  column-gap: 12px;
}

.logo {
  font-family: "Orbitron", Arial, sans-serif;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.5px;
  background: linear-gradient(90deg, var(--yellow-1), var(--yellow-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-decoration: none;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
  justify-self: center;
  overflow: hidden;
  min-width: 0;
}

.main-nav a {
  font-size: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #bdbdbd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition:
    color 0.2s ease,
    text-shadow 0.2s ease,
    transform 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: linear-gradient(180deg, #ffd65a 0%, #d9a52f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 8px rgba(255, 183, 0, 0.35);
  transform: translateY(-1px);
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    90deg,
    var(--yellow-3) 0%,
    var(--yellow-1) 50%,
    var(--yellow-3) 100%
  );
  background-size: 200% 100%;
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 20px;
  white-space: nowrap;
  box-shadow:
    0 0 10px rgba(255, 183, 0, 0.35),
    0 2px 6px rgba(0, 0, 0, 0.4);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-position 0.3s ease;
  justify-self: end;
}

.cta:hover,
.cta:focus-visible {
  background-position: 100% 0;
  transform: translateY(-1px);
  box-shadow:
    0 0 16px rgba(255, 183, 0, 0.55),
    0 4px 10px rgba(0, 0, 0, 0.45);
}

.burger {
  display: none;
  width: 46px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 183, 0, 0.6);
  background:
    linear-gradient(180deg, rgba(255, 183, 0, 0.18), rgba(0, 0, 0, 0.35)),
    rgba(16, 16, 16, 0.75);
  padding: 9px 10px;
  gap: 6px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
  box-shadow:
    0 0 14px rgba(255, 183, 0, 0.28),
    inset 0 0 10px rgba(255, 183, 0, 0.08);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.burger span {
  width: 100%;
  height: 2.5px;
  border-radius: 2px;
  background: linear-gradient(90deg, #ffe08a, var(--yellow-1));
  transition:
    transform 0.25s ease,
    opacity 0.2s ease,
    width 0.2s ease;
}

.burger:hover,
.burger:focus-visible {
  transform: translateY(-1px);
  box-shadow:
    0 0 18px rgba(255, 183, 0, 0.45),
    inset 0 0 14px rgba(255, 183, 0, 0.12);
  border-color: rgba(255, 183, 0, 0.9);
}

.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 20px 80px 24px;
  background: rgba(11, 11, 11, 0.98);
  border-bottom: 1px solid rgba(255, 197, 80, 0.2);
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.mobile-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 24px;
  margin-bottom: 18px;
}

.mobile-nav a {
  font-size: 18px;
  text-decoration: none;
  background: linear-gradient(180deg, #ffffff 0%, #bdbdbd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.site-header.is-open .mobile-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

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

.site-header.is-open .burger span:nth-child(2) {
  opacity: 0;
}

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

.site-header.is-open .burger {
  box-shadow:
    0 0 22px rgba(255, 183, 0, 0.6),
    inset 0 0 18px rgba(255, 183, 0, 0.18);
  border-color: rgba(255, 183, 0, 0.95);
}

@media (max-width: 1300px) {
  .container {
    padding: 0 20px;
  }

  .block2 {
    padding: 0 20px;
  }

  .main-nav {
    display: none;
  }

  .burger {
    display: inline-flex;
    justify-self: end;
  }

  .mobile-menu {
    display: block;
    padding: 18px 40px 22px;
  }

  .cta {
    font-size: 16px;
    padding: 6px 12px;
  }
}

@media (max-width: 1700px) {
  .block2 {
    padding: 0 40px;
  }
}

@media (max-width: 1500px) {
  .services-grid {
    grid-template-columns: repeat(2, 444px);
    column-gap: 25px;
    row-gap: 25px;
  }
}

@media (max-width: 640px) {
  .cta {
    font-size: 14px;
    padding: 6px 10px;
  }

  .burger {
    width: 40px;
    height: 34px;
  }
}

@media (max-width: 480px) {
  .block2 {
    padding: 0 12px;
  }
}

@media (max-width: 430px) {
  .logo {
    font-size: 24px;
  }
}

.hero {
  background: url("../img/backlsa.png") center top / cover no-repeat;
  padding: 70px 0 90px;
  text-align: center;
  min-height: 520px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 220px;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.55) 45%,
    rgba(0, 0, 0, 0.9) 100%
  );
  pointer-events: none;
}

.hero-inner {
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-pill {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 24px;
  color: #d9d9d9;
  border: 1px solid rgba(255, 183, 0, 0.35);
  background: rgba(16, 16, 16, 0.35);
  box-shadow: 0 0 10px rgba(255, 183, 0, 0.12);
  margin-bottom: 22px;
}

.hero-title {
  margin: 0 0 18px;
  font-weight: 600;
}

.hero-title-top {
  display: block;
  font-size: 79px;
  line-height: 1.1;
  white-space: nowrap;
  background: linear-gradient(180deg, #ffffff 0%, #bdbdbd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-title-brand {
  display: block;
  margin-top: 10px;
  font-family: "Orbitron", Arial, sans-serif;
  font-size: 77px;
  letter-spacing: 1px;
  background: linear-gradient(90deg, var(--yellow-1), var(--yellow-2));
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: goldShift 10s ease infinite;
}

.about-title,
.benefits-title,
.services-title,
.calculator-title,
.faq-title,
.forums-title,
.request-title {
  position: relative;
}

.about-title::after,
.benefits-title::after,
.services-title::after,
.calculator-title::after,
.faq-title::after,
.forums-title::after,
.request-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 200px;
  height: 40px;
  transform: translateX(-50%);
  background: radial-gradient(
    50% 50% at 50% 50%,
    rgba(255, 183, 0, 0.25),
    transparent 70%
  );
  opacity: 0.6;
  filter: blur(8px);
  pointer-events: none;
}

.hero-text {
  margin: 0 auto 34px;
  max-width: 980px;
  width: min(92%, 980px);
  font-size: 34px;
  line-height: 1.4;
  color: #cfcfcf;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 32px;
  font-weight: 600;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-position 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn::after,
.cta::after,
.service-btn::after,
.forum-btn::after,
.calc-btn::after,
.request-cta::after,
.about-cta::after,
.footer-cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.22) 45%,
    transparent 80%
  );
  transition: left 0.6s ease;
}

.cta,
.service-btn,
.forum-btn,
.calc-btn,
.request-cta,
.about-cta,
.footer-cta {
  position: relative;
  overflow: hidden;
}

.btn:hover::after,
.cta:hover::after,
.service-btn:hover::after,
.forum-btn:hover::after,
.calc-btn:hover::after,
.request-cta:hover::after,
.about-cta:hover::after,
.footer-cta:hover::after {
  left: 120%;
}

.btn-primary {
  background: linear-gradient(
    90deg,
    var(--yellow-3) 0%,
    var(--yellow-1) 50%,
    var(--yellow-3) 100%
  );
  background-size: 200% 100%;
  color: #ffffff;
  box-shadow: 0 0 12px rgba(255, 183, 0, 0.4);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background-position: 100% 0;
  transform: translateY(-1px);
  box-shadow: 0 0 18px rgba(255, 183, 0, 0.55);
}

.btn-outline {
  border: 1px solid rgba(255, 183, 0, 0.5);
  color: #e6e6e6;
  background: rgba(16, 16, 16, 0.6);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 0 12px rgba(255, 183, 0, 0.25);
}

.about {
  background: #000000;
  padding: 50px 0 80px;
  text-align: center;
}

.about-inner {
  margin: 0 auto;
}

.about-title {
  margin: 0 0 18px;
  font-size: 79px;
  font-weight: 600;
  color: #d8d8d8;
}

.about-text {
  margin: 0 auto 18px;
  font-size: 43px;
  line-height: 1.55;
  color: #d0d0d0;
}

.about-subtext {
  margin: 0 auto 28px;
  font-size: 31px;
  line-height: 1.55;
  color: #ffb700;
  max-width: 1100px;
}

.accent {
  color: #ffb700;
}

.about-cta {
  font-size: 32px;
  padding: 10px 22px;
}

.request {
  background: #000000;
  padding: 60px 0 90px;
  text-align: center;
}

.request-inner {
  max-width: 980px;
  margin: 0 auto;
}

.request-title {
  margin: 0 0 12px;
  font-size: 79px;
  font-weight: 600;
  color: #d8d8d8;
}

.request-subtitle {
  margin: 0 0 24px;
  font-size: 36px;
  color: #ffb700;
}

.request-cta {
  font-size: 32px;
  padding: 12px 26px;
  margin-bottom: 24px;
  display: inline-flex;
}

.request-list {
  margin: 0 auto;
  padding: 0;
  list-style: decimal;
  max-width: 900px;
  font-size: 32px;
  color: #e6e6e6;
  text-align: left;
}

.request-list li {
  margin-bottom: 12px;
}

.request-list li::marker {
  color: #e6e6e6;
  font-weight: 600;
}

.request-strong {
  background: linear-gradient(90deg, #ffb700 0%, #ff8f00 60%, #ffb700 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 600;
}

.forums {
  background: #000000;
  padding: 50px 0 90px;
  text-align: center;
}

.forums-title {
  margin: 0 0 26px;
  font-size: 56px;
  font-weight: 600;
  color: #d8d8d8;
}

.forums-grid {
  display: grid;
  grid-template-columns: repeat(2, 360px);
  gap: 24px;
  justify-content: center;
  justify-items: center;
}

.forum-card {
  border: 1px solid rgba(255, 183, 0, 0.35);
  border-radius: 18px;
  padding: 20px;
  background: rgba(8, 8, 8, 0.7);
  box-shadow: inset 0 0 18px rgba(255, 183, 0, 0.08);
  display: grid;
  gap: 12px;
  justify-items: center;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.forum-logo {
  width: 280px;
  height: 140px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}

.forum-logo img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  animation: floatSoft 6s ease-in-out infinite;
}

.forum-card h3 {
  margin: 0;
  font-size: 34px;
  color: #ffb700;
}

.forum-card p {
  margin: 0;
  font-size: 20px;
  color: #d0d0d0;
  text-align: center;
}

.forum-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 59px;
  width: 100%;
  border-radius: 999px;
  font-size: 32px;
  font-weight: 600;
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(
    90deg,
    var(--yellow-3) 0%,
    var(--yellow-1) 50%,
    var(--yellow-3) 100%
  );
  box-shadow: 0 0 12px rgba(255, 183, 0, 0.35);
}

.forum-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 183, 0, 0.8);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.45),
    0 0 26px rgba(255, 183, 0, 0.2),
    inset 0 0 20px rgba(255, 183, 0, 0.12);
}

.site-footer {
  background: #000000;
  padding: 50px 0 40px;
  color: #d0d0d0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 0.8fr;
  gap: 32px;
  align-items: start;
}

.footer-logo {
  font-family: "Orbitron", Arial, sans-serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.5px;
  background: linear-gradient(90deg, var(--yellow-1), var(--yellow-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 10px;
}

.footer-text {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.4;
  color: #cfcfcf;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffb700;
  text-decoration: none;
  font-size: 14px;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.footer-cta-icon {
  display: inline-flex;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ffb700;
  color: #1b1200;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.footer-col h4 {
  margin: 0 0 10px;
  color: #ffb700;
  font-size: 14px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
  font-size: 14px;
}

.footer-col a {
  text-decoration: none;
  color: #d0d0d0;
  transition: color 0.2s ease;
}

.footer-col a:hover,
.footer-col a:focus-visible {
  color: #ffb700;
}

.footer-cta:hover,
.footer-cta:focus-visible {
  color: #ffd86b;
  transform: translateY(-1px);
}

.footer-bottom {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  color: #9b9b9b;
  font-size: 13px;
}

.footer-offer-link {
  text-decoration: none;
  color: #9b9b9b;
  font-size: 13px;
  transition: color 0.2s ease;
}

.footer-offer-link:hover,
.footer-offer-link:focus-visible {
  color: #ffb700;
}

.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #d0d0d0;
  text-decoration: none;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.footer-link:hover,
.footer-link:focus-visible {
  color: #ffb700;
  transform: translateY(-1px);
}

.edu-hero {
  background: url("../img/backlsa.png") center top / cover no-repeat;
  padding: 100px 0 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.edu-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 220px;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.55) 45%,
    rgba(0, 0, 0, 0.9) 100%
  );
  pointer-events: none;
}

.edu-hero-inner {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.edu-title {
  font-family: "Orbitron", Arial, sans-serif;
  font-size: 54px;
  letter-spacing: 1px;
  color: #d8d8d8;
  margin-bottom: 18px;
}

.edu-subtitle {
  font-size: 22px;
  color: #bdbdbd;
  margin-bottom: 28px;
}

.edu-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .edu-hero {
    padding: 90px 0 120px;
  }

  .edu-title {
    font-size: 38px;
  }

  .edu-subtitle {
    font-size: 18px;
  }
}

.edu-benefits {
  background: #000000;
  padding: 50px 0 80px;
  text-align: center;
}

.edu-benefits-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.edu-benefits-title {
  margin: 0 0 10px;
  font-size: 48px;
  font-weight: 600;
  color: #d8d8d8;
}

.edu-benefits-subtitle {
  margin: 0 0 36px;
  font-size: 18px;
  color: #bdbdbd;
}

.edu-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 260px);
  gap: 24px;
  justify-content: center;
  align-items: stretch;
}

.edu-benefit-card {
  border-radius: 16px;
  border: 1px solid rgba(255, 183, 0, 0.35);
  background: rgba(12, 12, 12, 0.8);
  padding: 18px 16px;
  text-align: center;
  box-shadow: inset 0 0 14px rgba(255, 183, 0, 0.08);
  min-height: 210px;
  display: grid;
  grid-template-rows: 40px auto auto;
  gap: 8px;
  place-content: center;
}

.edu-benefit-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #ffb700;
  margin-bottom: 10px;
  background: rgba(255, 183, 0, 0.08);
  margin-left: auto;
  margin-right: auto;
}

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

.edu-topics {
  background: #000000;
  padding: 50px 0 80px;
  text-align: center;
}

.edu-topics-inner {
  max-width: 980px;
  margin: 0 auto;
}

.edu-topics-title {
  margin: 0 0 8px;
  font-size: 40px;
  font-weight: 600;
  color: #d8d8d8;
}

.edu-topics-subtitle {
  margin: 0 0 26px;
  font-size: 18px;
  color: #bdbdbd;
}

.edu-topics-list {
  display: grid;
  gap: 14px;
}

.edu-topic-item {
  background: #111111;
  border: 1px solid rgba(255, 183, 0, 0.25);
  border-radius: 14px;
  padding: 14px 18px 14px 44px;
  text-align: left;
  color: #e6e6e6;
  position: relative;
  font-size: 16px;
  line-height: 1.45;
}

.edu-topic-item::before {
  content: "✓";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 183, 0, 0.9);
  color: #1b1200;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
}

@media (max-width: 640px) {
  .edu-topics-title {
    font-size: 30px;
  }

  .edu-topic-item {
    font-size: 14px;
    padding-left: 40px;
  }
}

.edu-start {
  background: #000000;
  padding: 50px 0 80px;
  text-align: center;
}

.edu-start-inner {
  max-width: 760px;
  margin: 0 auto;
}

.edu-start-title {
  margin: 0 0 8px;
  font-size: 40px;
  font-weight: 600;
  color: #d8d8d8;
}

.edu-start-subtitle {
  margin: 0 0 24px;
  font-size: 18px;
  color: #bdbdbd;
}

.edu-start-btn {
  margin: 0 auto 20px;
}

.edu-start-note {
  margin: 0;
  font-size: 16px;
  color: #bdbdbd;
}

.edu-footer {
  background: #0b0b0b;
  padding: 24px 0;
  text-align: center;
}

.edu-footer-inner {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #cfcfcf;
  font-size: 13px;
}

.edu-footer a {
  color: #ffb700;
  text-decoration: none;
}

.offer {
  background: #000000;
  padding: 60px 0 90px;
  position: relative;
  z-index: 2;
}

.offer-inner {
  display: flex;
  justify-content: center;
}

.offer-card {
  width: min(900px, 100%);
  background: #111111;
  border: 1px solid rgba(255, 183, 0, 0.25);
  border-radius: 16px;
  padding: 28px 30px;
  color: #e6e6e6;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  line-height: 1.6;
  font-size: 15px;
}

.offer.reveal {
  opacity: 1;
  transform: none;
}

.offer-card h1 {
  margin: 0 0 18px;
  text-align: center;
  font-size: 22px;
  color: #ffb700;
  letter-spacing: 0.5px;
}

.offer-card h2 {
  margin: 18px 0 10px;
  font-size: 16px;
  color: #ffb700;
}

.offer-card p {
  margin: 0 0 10px;
  color: #d0d0d0;
}

.offer-card ul {
  margin: 0 0 12px 18px;
  padding: 0;
  color: #d0d0d0;
}

.offer-lead {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.6px;
  color: #bdbdbd;
}

@media (max-width: 768px) {
  .offer-card {
    padding: 20px;
    font-size: 14px;
  }

  .offer-card h1 {
    font-size: 20px;
  }
}

.edu-benefit-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  color: #ffb700;
}

.edu-benefit-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  color: #d0d0d0;
}

@media (max-width: 1200px) {
  .edu-benefits-grid {
    grid-template-columns: repeat(2, 280px);
  }
}

@media (max-width: 640px) {
  .edu-benefits-title {
    font-size: 34px;
  }

  .edu-benefits-grid {
    grid-template-columns: 1fr;
  }

  .edu-benefit-card {
    text-align: center;
  }
}

@media (max-width: 980px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .forums-title {
    font-size: 36px;
  }

  .forums-grid {
    grid-template-columns: 1fr;
    justify-content: center;
  }

  .forum-card {
    width: min(420px, 100%);
  }
}

@media (max-width: 1200px) {
  .request-title {
    font-size: 60px;
  }

  .request-subtitle {
    font-size: 28px;
  }

  .request-list {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .request-title {
    font-size: 44px;
  }

  .request-subtitle {
    font-size: 22px;
  }

  .request-cta {
    font-size: 24px;
  }

  .request-list {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .request-title {
    font-size: 34px;
  }

  .request-subtitle {
    font-size: 18px;
  }

  .request-cta {
    font-size: 20px;
  }

  .request-list {
    font-size: 16px;
  }
}

.benefits {
  background: #000000;
  padding: 50px 0 90px;
  text-align: center;
}

.benefits-inner {
  position: relative;
}

.benefits-title {
  margin: 0 0 34px;
  font-size: 56px;
  font-weight: 600;
  color: #d8d8d8;
}

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

.benefit-card {
  border: 1px solid rgba(255, 183, 0, 0.35);
  border-radius: 18px;
  padding: 25px;
  text-align: left;
  background: rgba(8, 8, 8, 0.6);
  box-shadow: inset 0 0 12px rgba(255, 183, 0, 0.08);
  min-width: 444px;
  min-height: 184px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.benefit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    140% 120% at 10% 0%,
    rgba(255, 183, 0, 0.18),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.benefit-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow:
    0 0 0 1px rgba(255, 183, 0, 0.25),
    0 0 26px rgba(255, 183, 0, 0.25);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.benefit-card:hover,
.benefit-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(255, 183, 0, 0.8);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.45),
    0 0 26px rgba(255, 183, 0, 0.2),
    inset 0 0 18px rgba(255, 183, 0, 0.12);
}

.benefit-card:hover::before,
.benefit-card:focus-within::before,
.benefit-card:hover::after,
.benefit-card:focus-within::after {
  opacity: 1;
}

.benefit-card h3 {
  margin: 0 0 8px;
  font-size: 28px;
  color: #ffb700;
}

.benefit-card p {
  margin: 0;
  font-size: 19px;
  line-height: 1.45;
  color: #d0d0d0;
}

.services {
  background: #000000;
  padding: 50px 0 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.services-inner {
  position: relative;
  z-index: 1;
}

.services-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.services-title {
  margin: 0 0 34px;
  font-size: 56px;
  font-weight: 600;
  color: #d8d8d8;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 444px);
  column-gap: 25px;
  row-gap: 25px;
  justify-content: center;
  justify-items: center;
}

.service-card {
  border: 1px solid rgba(255, 183, 0, 0.35);
  border-radius: 18px;
  padding: 20px;
  background: rgba(8, 8, 8, 0.7);
  text-align: left;
  box-shadow: inset 0 0 18px rgba(255, 183, 0, 0.08);
  display: grid;
  grid-template-rows: auto auto 1fr auto auto;
  gap: 10px;
  width: 444px;
  height: 511px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
  cursor: pointer;
}

.service-icon {
  width: 304px;
  height: 178px;
  border-radius: 12px;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  margin: 0 auto;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: floatSoft 6s ease-in-out infinite;
}

.service-card h3 {
  margin: 0;
  font-size: 34px;
  color: #ffb700;
}

.service-card p {
  margin: 0;
  font-size: 23px;
  line-height: 1.45;
  color: #d0d0d0;
}

.service-price {
  font-size: 23px;
  color: #ffb700;
  font-weight: 600;
}

.service-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
  height: 59px;
  width: 100%;
  border-radius: 999px;
  font-size: 32px;
  font-weight: 600;
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(
    90deg,
    var(--yellow-3) 0%,
    var(--yellow-1) 50%,
    var(--yellow-3) 100%
  );
  background-size: 200% 100%;
  box-shadow: 0 0 12px rgba(255, 183, 0, 0.35);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-position 0.3s ease;
}

.service-btn:hover,
.service-btn:focus-visible {
  background-position: 100% 0;
  transform: translateY(-1px);
  box-shadow: 0 0 16px rgba(255, 183, 0, 0.55);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 183, 0, 0.8);
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.45),
    0 0 24px rgba(255, 183, 0, 0.18),
    inset 0 0 20px rgba(255, 183, 0, 0.12);
}

.service-card:hover .service-icon img {
  transform: scale(1.03);
}

.service-icon img {
  transition: transform 0.25s ease;
}

.calculator {
  background: #000000;
  padding: 60px 0 90px;
  text-align: center;
}

.calculator-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.calculator-title {
  margin: 0 0 6px;
  font-size: 56px;
  font-weight: 600;
  color: #d8d8d8;
}

.calculator-subtitle {
  margin: 0 0 24px;
  font-size: 24px;
  color: #ffb700;
}

.calculator-card {
  width: min(860px, 100%);
  background:
    radial-gradient(
      120% 120% at 50% 0%,
      rgba(255, 183, 0, 0.06),
      transparent 60%
    ),
    linear-gradient(180deg, #1b1b1b 0%, #0f0f0f 100%);
  border-radius: 22px;
  padding: 32px 34px 24px;
  border: 1px solid rgba(255, 183, 0, 0.35);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.55),
    0 0 28px rgba(255, 183, 0, 0.08),
    inset 0 0 26px rgba(255, 183, 0, 0.08);
  text-align: left;
}

.calc-panel {
  display: none;
}

.calc-panel.is-active {
  display: block;
}

.calc-budget-row {
  display: grid;
  grid-template-columns: 1fr 110px;
  gap: 12px;
  align-items: center;
}

.budget-select .calc-select-trigger {
  text-align: center;
  padding: 0 0;
}

.calc-budget-table {
  margin-top: 18px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 183, 0, 0.25);
  background: rgba(10, 10, 10, 0.6);
}

.calc-budget-head,
.calc-budget-row-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 12px 16px;
  align-items: center;
}

.calc-budget-head {
  background: rgba(255, 183, 0, 0.25);
  color: #f5d58a;
  font-weight: 600;
}

.calc-budget-head span:last-child {
  text-align: right;
}

.calc-budget-row-item:nth-child(even) {
  background: rgba(255, 255, 255, 0.03);
}

.calc-budget-row-item span:last-child {
  text-align: right;
  color: #e6e6e6;
  font-weight: 600;
}

.calculator-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  justify-content: center;
}

.calc-tab {
  border: 1px solid rgba(255, 183, 0, 0.35);
  background: rgba(12, 12, 12, 0.85);
  color: #d8d8d8;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 22px;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.calc-tab.is-active {
  background: linear-gradient(
    90deg,
    var(--yellow-3) 0%,
    var(--yellow-1) 50%,
    var(--yellow-3) 100%
  );
  color: #ffffff;
  box-shadow: 0 0 18px rgba(255, 183, 0, 0.35);
  border-color: rgba(255, 183, 0, 0.75);
}

.calc-tab:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 183, 0, 0.7);
}

.calc-label {
  display: block;
  margin: 10px 0 8px;
  font-size: 20px;
  color: #e6e6e6;
}

.calc-input {
  width: 100%;
  height: 52px;
  border-radius: 12px;
  border: 1px solid transparent;
  background:
    linear-gradient(#0a0a0a, #0a0a0a) padding-box,
    linear-gradient(90deg, #ad7805, #ffb700, #ad7805) border-box;
  color: #ffffff;
  padding: 0 44px 0 16px;
  font-size: 26px;
  appearance: none;
  outline: none;
  box-shadow: none;
}

.calc-select {
  position: relative;
}

.calc-select-trigger {
  width: 100%;
  height: 52px;
  border-radius: 12px;
  border: 1px solid transparent;
  background:
    linear-gradient(#0a0a0a, #0a0a0a) padding-box,
    linear-gradient(90deg, #ad7805, #ffb700, #ad7805) border-box;
  color: #ffffff;
  padding: 0 44px 0 16px;
  font-size: 26px;
  text-align: left;
  cursor: pointer;
  outline: none;
  box-shadow: inset 0 0 18px rgba(255, 183, 0, 0.08);
}

.calc-select.is-open .calc-select-trigger {
  box-shadow:
    0 0 0 2px rgba(255, 183, 0, 0.35),
    inset 0 0 18px rgba(255, 183, 0, 0.12);
}

.calc-options {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #0b0b0b;
  border: 1px solid rgba(255, 183, 0, 0.45);
  border-radius: 12px;
  padding: 6px 0;
  list-style: none;
  margin: 0;
  display: none;
  z-index: 5;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.6);
}

.calc-select.is-open .calc-options {
  display: block;
}

.calc-option {
  padding: 10px 16px;
  font-size: 22px;
  color: #ffffff;
  cursor: pointer;
}

.calc-option:hover,
.calc-option.is-selected {
  background: linear-gradient(
    90deg,
    rgba(255, 183, 0, 0.25),
    rgba(255, 183, 0, 0.55)
  );
}

.calc-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-right: 2px solid #ffb700;
  border-bottom: 2px solid #ffb700;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.2s ease;
  pointer-events: none;
}

.calc-select.is-open .calc-arrow {
  transform: translateY(-50%) rotate(-135deg);
}

.calc-input option {
  background: #0a0a0a;
  color: #ffffff;
}

input[type="number"].calc-input::-webkit-outer-spin-button,
input[type="number"].calc-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"].calc-input {
  -moz-appearance: textfield;
}

.calc-number {
  position: relative;
}

.calc-number input {
  padding-right: 70px;
}

.calc-number-controls {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}

.calc-number-btn {
  width: 26px;
  height: 18px;
  border-radius: 6px;
  border: 1px solid rgba(255, 183, 0, 0.45);
  background: linear-gradient(90deg, #ad7805, #ffb700, #ad7805);
  color: #111111;
  font-size: 0;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: relative;
}

.calc-number-btn:active {
  transform: translateY(1px);
}

.calc-number-btn::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 6px solid #1a1200;
}

.calc-number-btn[data-step="-1"]::before {
  border-bottom: none;
  border-top: 6px solid #1a1200;
}

.calc-result {
  margin-top: 16px;
  font-size: 36px;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
}

.calc-result span {
  color: #ffb700;
}

.calc-rate {
  margin-top: 15px;
  font-size: 24px;
  color: #9b9b9b;
  text-align: center;
}

.calc-actions {
  margin-top: 20px;
  margin-bottom: 12px;
  display: flex;
  gap: 14px;
  justify-content: center;
}

.faq {
  background: #000000;
  padding: 50px 0 90px;
  text-align: center;
}

.faq-title {
  margin: 0 0 26px;
  font-size: 56px;
  font-weight: 600;
  color: #d8d8d8;
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 960px;
  margin: 0 auto;
}

.faq-item {
  border-radius: 14px;
  border: 1px solid rgba(255, 183, 0, 0.35);
  background: rgba(12, 12, 12, 0.8);
  padding: 0 16px;
  text-align: left;
  color: #e6e6e6;
  box-shadow: inset 0 0 14px rgba(255, 183, 0, 0.08);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 12px 28px 12px 0;
  position: relative;
  font-size: 32px;
}

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

.faq-item summary::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid #ffb700;
  border-bottom: 2px solid #ffb700;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(-135deg);
}

.faq-item p {
  margin: 0 0 12px;
  color: #bdbdbd;
  font-size: 26px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .faq-title {
    font-size: 32px;
  }

  .faq-item summary {
    font-size: 15px;
  }

  .faq-item p {
    font-size: 13px;
  }
}

.calc-addon {
  margin-top: 16px;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 183, 0, 0.25);
  background: rgba(12, 12, 12, 0.7);
  box-shadow: inset 0 0 12px rgba(255, 183, 0, 0.08);
}

.calc-addon-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.calc-addon-title {
  font-size: 22px;
  font-weight: 600;
  color: #e6e6e6;
}

.calc-addon-price {
  font-size: 18px;
  color: #ffb700;
}

.calc-addon-toggle {
  width: 54px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(255, 183, 0, 0.5);
  background: #141414;
  cursor: pointer;
  position: relative;
  padding: 0;
}

.calc-addon-toggle span {
  position: absolute;
  top: 50%;
  left: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #2a2a2a;
  transform: translateY(-50%);
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.calc-addon-toggle.is-on {
  background: rgba(255, 183, 0, 0.35);
  border-color: rgba(255, 183, 0, 0.7);
}

.calc-addon-toggle.is-on span {
  transform: translate(26px, -50%);
  background: #ffb700;
}

.calc-addon-qty {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.calc-chip {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 183, 0, 0.6);
  background: transparent;
  color: #e6e6e6;
  font-size: 18px;
  cursor: pointer;
}

.calc-chip.is-active {
  background: rgba(255, 183, 0, 0.8);
  color: #1b1200;
  border-color: rgba(255, 183, 0, 0.9);
}

.calc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 59px;
  padding: 0 26px;
  border-radius: 999px;
  border: none;
  font-size: 32px;
  font-weight: 600;
  cursor: pointer;
  color: #ffffff;
  text-decoration: none;
  background: linear-gradient(
    90deg,
    var(--yellow-3) 0%,
    var(--yellow-1) 50%,
    var(--yellow-3) 100%
  );
  box-shadow: 0 0 12px rgba(255, 183, 0, 0.35);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.calc-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 18px rgba(255, 183, 0, 0.55);
}

@media (max-width: 1200px) {
  .about {
    padding: 60px 0 90px;
  }

  .about-title {
    font-size: 60px;
  }

  .about-text {
    font-size: 32px;
    max-width: 900px;
  }

  .about-subtext {
    font-size: 24px;
    max-width: 900px;
  }

  .benefits {
    padding: 60px 0 100px;
  }

  .benefits-title {
    font-size: 44px;
  }

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

  .services {
    padding: 60px 0 100px;
  }

  .services-title {
    font-size: 44px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 420px);
    column-gap: 22px;
    row-gap: 22px;
  }

  .service-card {
    width: 420px;
    height: 500px;
  }

  .service-icon {
    width: 280px;
    height: 164px;
  }

  .calculator-title {
    font-size: 44px;
  }

  .calc-result {
    font-size: 30px;
  }

  .calc-btn {
    font-size: 26px;
    height: 52px;
  }
}

@media (max-width: 768px) {
  .about {
    padding: 50px 0 80px;
  }

  .about-title {
    font-size: 44px;
  }

  .about-text {
    font-size: 24px;
    max-width: 680px;
  }

  .about-subtext {
    font-size: 18px;
    max-width: 680px;
  }

  .about-cta {
    font-size: 18px;
    padding: 8px 18px;
  }

  .benefits {
    padding: 50px 0 90px;
  }

  .benefits-title {
    font-size: 36px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    text-align: center;
    width: 100%;
    min-width: 0;
  }

  .services {
    padding: 50px 0 90px;
  }

  .services-title {
    font-size: 36px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .service-card {
    text-align: center;
    width: min(420px, 100%);
    height: auto;
  }

  .service-btn {
    margin: 8px auto 0;
  }

  .calculator {
    padding: 60px 0 90px;
  }

  .calculator-title {
    font-size: 36px;
  }

  .calculator-subtitle {
    font-size: 20px;
  }

  .calc-tab {
    font-size: 18px;
  }

  .calc-input {
    font-size: 22px;
  }

  .calc-result {
    font-size: 26px;
  }

  .calc-rate {
    font-size: 18px;
  }

  .calc-actions {
    flex-direction: column;
  }

  .calc-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .about {
    padding: 40px 0 70px;
  }

  .about-title {
    font-size: 34px;
  }

  .about-text {
    font-size: 18px;
    max-width: 360px;
  }

  .about-subtext {
    font-size: 16px;
    max-width: 360px;
  }

  .benefits-title {
    font-size: 28px;
  }

  .benefit-card h3 {
    font-size: 18px;
  }

  .benefit-card p {
    font-size: 14px;
  }

  .benefit-card {
    width: 100%;
    min-width: 0;
  }

  .services-title {
    font-size: 28px;
  }

  .service-card {
    width: 100%;
  }

  .service-icon {
    width: 240px;
    height: 140px;
  }

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

  .service-card p {
    font-size: 20px;
  }

  .service-price {
    font-size: 20px;
  }

  .service-btn {
    font-size: 24px;
    height: 50px;
  }

  .calculator-title {
    font-size: 28px;
  }

  .calculator-subtitle {
    font-size: 18px;
  }

  .calculator-card {
    padding: 22px;
  }

  .calc-input {
    font-size: 20px;
  }

  .calc-result {
    font-size: 22px;
  }

  .calc-rate {
    font-size: 16px;
  }

  .calc-btn {
    font-size: 22px;
    height: 50px;
  }
}

@media (max-width: 1200px) {
  .hero {
    padding: 70px 0 90px;
    min-height: 480px;
  }

  .hero-title-top {
    font-size: 60px;
    white-space: normal;
  }

  .hero-title-brand {
    font-size: 58px;
  }

  .hero-text {
    font-size: 26px;
    max-width: 820px;
    width: min(92%, 820px);
  }

  .btn {
    font-size: 24px;
    padding: 10px 20px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 0 80px;
    min-height: 420px;
  }

  .hero-pill {
    font-size: 18px;
  }

  .hero-title-top {
    font-size: 42px;
  }

  .hero-title-brand {
    font-size: 44px;
  }

  .hero-text {
    font-size: 20px;
    max-width: 640px;
    width: min(94%, 640px);
  }

  .btn {
    font-size: 18px;
    padding: 8px 16px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 50px 0 70px;
    min-height: 360px;
  }

  .hero-pill {
    font-size: 16px;
  }

  .hero-title-top {
    font-size: 32px;
  }

  .hero-title-brand {
    font-size: 34px;
  }

  .hero-text {
    font-size: 16px;
    max-width: 520px;
    width: min(96%, 520px);
  }

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

.main-nav a.is-active,
.mobile-nav a.is-active {
  color: #ffb700;
}

@keyframes goldShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes floatSoft {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .service-icon img,
  .forum-logo img,
  .hero-title-brand {
    animation: none;
    transition: none;
  }
}
