:root {
  --navy: #0b2a4a;
  --navy-mid: #123a62;
  --navy-deep: #071f38;
  --green: #1a7a4c;
  --green-dark: #14603c;
  --green-soft: #e8f5ee;
  --gold: #1a7a4c;
  --ink: #1a2332;
  --muted: #5a6a7a;
  --line: #e2e8f0;
  --bg: #f4f7fb;
  --white: #ffffff;
  --shadow: 0 12px 32px rgba(11, 42, 74, 0.08);
  --font: "Manrope", system-ui, sans-serif;
  --display: "Outfit", "Manrope", system-ui, sans-serif;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

ul,
ol {
  list-style: none;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.4rem;
  border-radius: 8px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.btn--primary {
  background: var(--green);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

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

.btn--navy:hover {
  background: var(--navy-deep);
  transform: translateY(-1px);
}

.btn--outline {
  background: var(--white);
  color: var(--green);
  border-color: var(--green);
}

.btn--outline:hover {
  background: var(--green-soft);
  transform: translateY(-1px);
}

.btn--lg {
  padding: 1rem 1.6rem;
  font-size: 0.92rem;
}

.btn--nav {
  padding: 0.7rem 1.15rem;
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* Top bar + nav */
.top-bar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  padding: 0.55rem 0;
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.top-bar__item,
.top-bar__contacts a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.top-bar__contacts {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
}

.top-bar__social {
  display: flex;
  gap: 0.85rem;
}

.top-bar a:hover {
  color: #9fe0bc;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.navbar.scrolled {
  box-shadow: 0 8px 24px rgba(11, 42, 74, 0.08);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 78px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
}

.logo__img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  border-radius: 8px;
}

.logo__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.05;
}

.logo__text strong {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.06em;
  text-shadow: 0 1px 0 rgba(11, 42, 74, 0.12);
}

.logo__text > span {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.12rem;
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: 0 1px 0 rgba(11, 42, 74, 0.08);
}

.logo__tm {
  font-size: 0.55em;
  font-weight: 800;
  color: #e11d2e;
  line-height: 1;
  position: relative;
  top: -0.15em;
  left: 0.05em;
  letter-spacing: 0;
  font-style: normal;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav__link {
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.55rem;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 6px;
  white-space: nowrap;
}

.nav__link:hover,
.nav__dropdown:hover > .nav__trigger {
  color: var(--green);
}

.nav__link i {
  font-size: 0.65rem;
}

.nav__dropdown {
  position: relative;
}

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 0;
  min-width: 230px;
  max-height: min(70vh, 420px);
  overflow-y: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 0.45rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: 0.2s ease;
  z-index: 120;
}

.nav__dropdown-menu--cols {
  min-width: 520px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-height: none;
}

.nav__dropdown--wide .nav__dropdown-menu {
  left: 50%;
  transform: translate(-50%, 6px);
}

.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown:focus-within .nav__dropdown-menu,
.nav__dropdown.open .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown--wide:hover .nav__dropdown-menu,
.nav__dropdown--wide:focus-within .nav__dropdown-menu,
.nav__dropdown--wide.open .nav__dropdown-menu {
  transform: translate(-50%, 0);
}

.nav__dropdown-menu a {
  display: block;
  padding: 0.55rem 0.75rem;
  border-radius: 6px;
  font-size: 0.86rem;
  color: var(--ink);
}

.nav__dropdown-menu a:hover,
.nav__dropdown-menu a.is-active {
  background: var(--green-soft);
  color: var(--green);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--navy);
}

/* Hero */
.gst-hero {
  padding: clamp(1.75rem, 3.5vw, 2.5rem) 0 clamp(1.25rem, 2.5vw, 1.75rem);
  background:
    radial-gradient(ellipse 50% 40% at 90% 10%, rgba(26, 122, 76, 0.1), transparent 60%),
    linear-gradient(165deg, #eef3f8, #f8fafc 55%, #fff);
  overflow: hidden;
}

.gst-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(1.5rem, 3.5vw, 2.75rem);
  align-items: center;
}

.breadcrumb {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.85rem;
}

.breadcrumb a:hover {
  color: var(--green);
}

.gst-hero h1 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.8vw, 3.4rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 1rem;
}

.gst-hero h1 span {
  color: var(--navy);
}

.gst-hero h1 em {
  font-style: normal;
  color: var(--green);
}

.gst-hero__banner {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.55rem 1.1rem;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.gst-hero__text {
  color: var(--muted);
  max-width: 34rem;
  margin-bottom: 1.15rem;
  font-size: 1.02rem;
}

.gst-hero__why-title {
  font-family: var(--display);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--navy);
  margin: 0 0 1rem;
  line-height: 1.3;
}

.gst-hero__perks {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.35rem 0.45rem;
  margin-bottom: 1.6rem;
  max-width: none;
  width: 100%;
}

.gst-hero__perks .perk {
  text-align: center;
  font-size: clamp(0.58rem, 1.05vw, 0.72rem);
  font-weight: 700;
  color: var(--navy);
  display: grid;
  gap: 0.35rem;
  justify-items: center;
  line-height: 1.25;
  flex: 1 1 0;
  min-width: 0;
}

.gst-hero__perks .perk i {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--green);
  display: grid;
  place-items: center;
  box-shadow: 0 6px 16px rgba(11, 42, 74, 0.05);
  font-size: 0.95rem;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.gst-hero__perks .perk:hover i {
  transform: translateY(-3px);
  background: var(--green);
  color: var(--white);
}

.gst-hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}

.gst-hero__glow {
  position: absolute;
  width: 78%;
  height: 68%;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 122, 76, 0.18) 0%, rgba(11, 42, 74, 0.1) 45%, transparent 70%);
  filter: blur(16px);
  z-index: 0;
  pointer-events: none;
}

.gst-hero__figure {
  position: relative;
  z-index: 1;
  margin: 0;
  width: 100%;
  max-width: 600px;
  border-radius: 24px;
  overflow: hidden;
  padding: 0.7rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(231, 239, 247, 0.95));
  border: 1px solid rgba(197, 210, 224, 0.8);
  box-shadow:
    0 10px 24px rgba(11, 42, 74, 0.08),
    0 24px 56px rgba(11, 42, 74, 0.09);
}

.gst-hero__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  transition: transform 0.55s ease;
}

.gst-hero__figure:hover .gst-hero__img {
  
}

/* Why */
.why {
  padding: 0 0 1.75rem;
  background: var(--white);
}

.why__banner {
  background: var(--green);
  color: var(--white);
  border-radius: 10px;
  padding: 0.95rem 1.25rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 8px 20px rgba(26, 122, 76, 0.2);
}

.why__banner h2 {
  font-family: var(--display);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.04em;
  margin: 0;
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  column-gap: 0.75rem;
  row-gap: 0.85rem;
  align-items: start;
}

.why-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  padding: 0.25rem 0.15rem;
  margin: 0;
  min-width: 0;
}

.why-card i {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.why-card:hover i {
  transform: translateY(-3px);
  background: var(--green);
  color: var(--white);
}

.why-card h3 {
  font-size: 0.8rem;
  color: var(--navy);
  font-weight: 800;
  line-height: 1.3;
  max-width: 9.5rem;
  margin: 0;
}

/* Info panels */
.info {
  padding: 0.5rem 0 1.25rem;
  background: var(--white);
}

.info__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 1rem;
  row-gap: 1rem;
  align-items: stretch;
}

.info-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(11, 42, 74, 0.05);
  padding-bottom: 1.15rem;
  display: flex;
  flex-direction: column;
}

.info-panel h2 {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 0 0 1rem;
  padding: 0.9rem 1.2rem;
}

.info-panel--services h2 {
  background: var(--white);
  color: var(--green);
  border-bottom: 1px solid var(--line);
}

.info-panel--who h2 {
  background: var(--green);
  color: var(--white);
}

.check-list,
.who-list {
  display: grid;
  gap: 0.7rem;
  padding: 0 1.2rem;
  flex: 1;
}

.check-list li,
.who-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
  line-height: 1.4;
}

.check-list i {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 0.65rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.who-list i {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* Mid CTA */
.mid-cta {
  padding: 0.35rem 0 1.25rem;
  background: var(--white);
}

.mid-cta__bar {
  background: var(--navy);
  color: var(--white);
  border-radius: 10px;
  padding: 0.95rem 1.25rem;
}

.mid-cta p {
  text-align: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.98rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin: 0;
}

.mid-cta i {
  color: #7dcf9f;
}

/* Process — matches Income Tax Filing process layout */
.process {
  padding: 1.25rem 0 1.75rem;
  background: var(--white);
}

.process__banner {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-align: center;
  padding: 0.85rem 1.25rem;
  border-radius: 8px;
  margin: 0 0 1.75rem;
}

.process__track {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
}

.process__step {
  flex: 1;
  text-align: center;
  max-width: 170px;
}

.process__num {
  width: 58px;
  height: 58px;
  margin: 0 auto 0.9rem;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.05rem;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px rgba(26, 122, 76, 0.28);
}

.process__step h3 {
  font-family: var(--display);
  font-size: 0.95rem;
  color: var(--navy);
  font-weight: 800;
  margin: 0 0 0.35rem;
}

.process__step p {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.4;
}

.process__arrow {
  color: var(--green);
  padding-top: 1.15rem;
  opacity: 0.7;
  flex-shrink: 0;
  font-size: 0.95rem;
}

/* Details */
.details {
  padding: 0.5rem 0 1.35rem;
  background: var(--white);
}

.details__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  column-gap: 0.9rem;
  row-gap: 0.9rem;
  align-items: stretch;
}

.details-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0 0 1.15rem;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(11, 42, 74, 0.05);
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

.details-card__head {
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--white);
  background: var(--green);
  margin: 0;
  padding: 0.85rem 1.15rem;
}

.details-card--trust {
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.1rem;
  text-align: left;
}

.returns-list,
.benefits-list,
.highlights {
  display: grid;
  gap: 0.7rem;
  width: 100%;
  padding: 0 1.15rem;
}

.details-card--trust .highlights {
  padding: 0;
  flex: 1;
}

.returns-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
}

.returns-list i,
.benefits-list i {
  color: var(--green);
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.returns-list strong {
  color: var(--navy);
  font-weight: 800;
}

.highlights li,
.benefits-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
}

.highlights i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.guarantee {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, #2a9d66, var(--green-dark));
  color: var(--white);
  display: grid;
  place-content: center;
  text-align: center;
  gap: 0.25rem;
  padding: 0.85rem;
  box-shadow: 0 12px 28px rgba(20, 96, 60, 0.3);
  border: 4px solid rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.guarantee strong {
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 800;
}

.guarantee span {
  font-family: var(--display);
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.25;
}

/* CTA */
.cta {
  padding: 0.5rem 0 2.25rem;
  background: var(--white);
}

.cta__box {
  background: linear-gradient(120deg, var(--navy-deep), var(--navy) 55%, #163a5c);
  color: var(--white);
  border-radius: 14px;
  padding: 1.35rem 1.6rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 1.25rem;
  box-shadow: 0 16px 36px rgba(11, 42, 74, 0.28);
}

.cta__tagline {
  font-family: var(--display);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
}

.cta__action {
  display: grid;
  gap: 0.85rem;
  justify-items: start;
}

.cta__action h2 {
  font-family: var(--display);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 800;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 0.02em;
}

/* Footer */
.footer {
  background: var(--navy-deep);
  color: var(--white);
}

.footer__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem 2.25rem;
  padding: 1.25rem 0;
  font-size: 0.9rem;
}

.footer__grid a,
.footer__grid span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer__grid a:hover {
  color: #9fe0bc;
}

.footer__grid i {
  color: #7dcf9f;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.9rem 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

.footer-bottom a {
  color: #9fe0bc;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.55s ease;
}

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

@media (max-width: 1100px) {
  .why__grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .details-card--trust {
    grid-column: 1 / -1;
  }

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

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .btn--nav {
    display: none;
  }

  .nav {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1.25rem 1.1rem;
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .nav__dropdown-menu,
  .nav__dropdown-menu--cols {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none !important;
    box-shadow: none;
    border: none;
    display: none;
    min-width: 0;
    grid-template-columns: 1fr;
    padding-left: 0.75rem;
  }

  .nav__dropdown.open .nav__dropdown-menu {
    display: grid;
  }

  .gst-hero__grid,
  .info__grid,
  .details__grid {
    grid-template-columns: 1fr;
  }

  .gst-hero__visual {
    order: -1;
  }

  .gst-hero__figure {
    max-width: 520px;
    margin-inline: auto;
  }

  .details-card--trust {
    flex-direction: column;
    text-align: center;
  }

  .details-card--trust .highlights {
    justify-items: start;
  }

  .process__track {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem 0.75rem;
  }

  .process__arrow {
    display: none;
  }

  .process__step {
    flex: 0 0 calc(50% - 1rem);
    max-width: none;
  }
}

@media (max-width: 700px) {
  .top-bar__contacts {
    display: none;
  }

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

  .process__step {
    flex-basis: calc(50% - 1rem);
  }
  .mid-cta p {
    font-size: 0.88rem;
    flex-direction: column;
  }

  .cta__action {
    justify-items: stretch;
  }

  .cta__action .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 420px) {
  .why__grid {
    grid-template-columns: 1fr;
  }

  .process__step {
    flex-basis: 100%;
  }
}
