:root {
  --t24-blue: #0087d2;
  --t24-cyan: #00a3d4;
  --t24-blue-dark: #006da9;
  --t24-graphite: #3e3c40;
  --t24-ink: #24252a;
  --t24-muted: #626873;
  --t24-line: #dfe4e8;
  --t24-soft: #f4f6f7;
  --t24-blue-soft: #eaf8fc;
  --t24-white: #fff;
}

.tax24-standalone {
  margin: 0;
  background: var(--t24-white);
  color: var(--t24-ink);
  font-family: Poppins, Arial, sans-serif;
}

.tax24-standalone * {
  box-sizing: border-box;
}

.tax24-standalone a {
  color: inherit;
}

.t24-page {
  min-height: 100vh;
  overflow: hidden;
  background: var(--t24-white);
}

.t24-header,
.t24-footer,
.t24-page > main {
  width: min(1220px, calc(100% - 48px));
  margin-inline: auto;
}

.t24-header {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-bottom: 1px solid var(--t24-line);
}

.t24-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.t24-logo {
  display: block;
  width: 176px;
  height: auto;
}

.t24-logo-footer {
  width: 210px;
}

.t24-contact {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--t24-graphite);
  font-size: 13px;
  font-weight: 650;
}

.t24-contact a {
  text-decoration: none;
}

.t24-contact a:not(.t24-header-cta):hover {
  color: var(--t24-blue);
}

.t24-header-cta {
  border: 1px solid var(--t24-blue);
  border-radius: 8px;
  padding: 10px 15px;
  color: var(--t24-blue) !important;
  transition: background-color .2s, color .2s;
}

.t24-header-cta:hover {
  background: var(--t24-blue);
  color: #fff !important;
}

.t24-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(480px, 1.08fr);
  gap: clamp(54px, 6vw, 92px);
  align-items: start;
  padding: 72px 0 76px;
}

.t24-hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -160px;
  right: -250px;
  width: 720px;
  height: 560px;
  background: linear-gradient(135deg, rgba(0, 163, 212, .11), rgba(0, 135, 210, .025));
  clip-path: polygon(100% 0, 100% 100%, 0 0);
  pointer-events: none;
}

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

.t24-hero-copy {
  padding-top: 24px;
}

.t24-kicker {
  margin: 0 0 14px;
  color: var(--t24-blue);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.t24-hero h1,
.t24-thanks h1 {
  margin: 0;
  color: var(--t24-graphite);
  font-family: Sora, Poppins, sans-serif;
  font-size: clamp(46px, 5.2vw, 68px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -.045em;
}

.t24-lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--t24-muted);
  font-size: 18px;
  line-height: 1.65;
}

.t24-hero-points {
  display: grid;
  gap: 13px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.t24-hero-points li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: var(--t24-graphite);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}

.t24-hero-points svg {
  flex: 0 0 auto;
  width: 21px;
  height: 21px;
  color: var(--t24-cyan);
}

.t24-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 17px;
  margin-top: 32px;
}

.t24-actions > span {
  max-width: 210px;
  color: var(--t24-muted);
  font-size: 12px;
  line-height: 1.5;
}

.t24-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  background: var(--t24-blue);
  padding: 13px 21px;
  color: #fff !important;
  font: inherit;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(0, 135, 210, .19);
  cursor: pointer;
  transition: transform .2s, background-color .2s, box-shadow .2s;
}

.t24-button:hover {
  transform: translateY(-1px);
  background: var(--t24-blue-dark);
  box-shadow: 0 15px 32px rgba(0, 135, 210, .25);
}

.t24-button:focus-visible {
  outline: 3px solid rgba(0, 163, 212, .28);
  outline-offset: 3px;
}

.t24-button:disabled {
  transform: none;
  opacity: .58;
  cursor: wait;
}

.t24-lead-card {
  scroll-margin-top: 24px;
  border: 1px solid #cfe1ea;
  border-top: 5px solid var(--t24-blue);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 65px rgba(45, 61, 71, .11);
}

.t24-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 18px;
  padding: 27px 30px 30px;
}

.t24-form-heading {
  padding-bottom: 3px;
}

.t24-form-heading .t24-kicker {
  margin-bottom: 7px;
}

.t24-form-heading h2 {
  margin: 0;
  color: var(--t24-graphite);
  font-family: Sora, Poppins, sans-serif;
  font-size: 27px;
  line-height: 1.15;
  letter-spacing: -.035em;
}

.t24-form-heading > p:last-child {
  margin: 8px 0 0;
  color: var(--t24-muted);
  font-size: 13px;
  line-height: 1.5;
}

.t24-form label,
.t24-form fieldset {
  display: block;
  margin: 0;
  color: var(--t24-graphite);
  font-size: 12px;
  font-weight: 650;
}

.t24-form label > span,
.t24-form legend > span {
  color: #b42318;
}

.t24-form label small {
  color: var(--t24-muted);
  font-size: 10px;
  font-weight: 450;
}

.t24-form input:not([type="checkbox"]):not([type="radio"]),
.t24-form textarea {
  width: 100%;
  margin-top: 7px;
  border: 1px solid #cbd4da;
  border-radius: 7px;
  background: #fff;
  padding: 11px 12px;
  color: var(--t24-ink);
  font: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}

.t24-form textarea {
  min-height: 84px;
  resize: vertical;
}

.t24-form input:focus,
.t24-form textarea:focus {
  border-color: var(--t24-blue);
  box-shadow: 0 0 0 3px rgba(0, 135, 210, .11);
}

.t24-form label > small {
  display: block;
  margin-top: 5px;
  line-height: 1.4;
}

.t24-form fieldset {
  border: 0;
  padding: 0;
}

.t24-form legend {
  margin-bottom: 8px;
}

.t24-radio {
  display: inline-flex !important;
  align-items: center;
  gap: 7px;
  margin-right: 16px !important;
  font-weight: 500 !important;
}

.t24-wide {
  grid-column: 1 / -1;
}

.t24-check {
  display: flex !important;
  align-items: flex-start;
  gap: 9px;
  color: var(--t24-muted) !important;
  font-size: 10px !important;
  font-weight: 450 !important;
  line-height: 1.5;
}

.t24-consents {
  display: grid;
  gap: 10px;
  border-radius: 12px;
  background: var(--t24-soft);
  padding: 15px;
}

.t24-consents > p {
  margin: 0 0 2px;
  color: var(--t24-ink);
  font-size: 13px;
}

.t24-consents .t24-check {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
}

.t24-check input {
  flex: 0 0 auto;
  margin-top: 2px;
}

.t24-check a {
  color: var(--t24-blue);
}

.t24-inline {
  display: flex;
  gap: 7px;
}

.t24-inline input {
  flex: 1;
  min-width: 0;
}

.t24-inline button {
  align-self: end;
  min-height: 43px;
  border: 1px solid var(--t24-blue);
  border-radius: 7px;
  background: #fff;
  padding: 9px 11px;
  color: var(--t24-blue);
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
}

.t24-submit {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
}

.t24-submit > span {
  max-width: 220px;
  color: var(--t24-muted);
  font-size: 10px;
  line-height: 1.4;
}

.t24-submit p {
  width: 100%;
  margin: 0;
  color: var(--t24-muted);
  font-size: 11px;
}

.t24-submit .is-error {
  color: #b42318;
}

.t24-hp {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.t24-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--t24-line);
  border-bottom: 1px solid var(--t24-line);
}

.t24-trust div {
  padding: 22px 24px;
  border-right: 1px solid var(--t24-line);
}

.t24-trust div:first-child {
  padding-left: 0;
}

.t24-trust div:last-child {
  border-right: 0;
}

.t24-trust b,
.t24-trust span {
  display: block;
}

.t24-trust b {
  color: var(--t24-graphite);
  font-size: 13px;
}

.t24-trust span {
  margin-top: 3px;
  color: var(--t24-muted);
  font-size: 11px;
}

.t24-sections {
  display: flex;
  flex-direction: column;
}

.t24-section {
  padding: 82px 0;
}

.t24-section-heading {
  max-width: 790px;
  margin-bottom: 35px;
}

.t24-section-heading h2,
.t24-app h2 {
  margin: 0;
  color: var(--t24-graphite);
  font-family: Sora, Poppins, sans-serif;
  font-size: clamp(34px, 4vw, 49px);
  font-weight: 650;
  line-height: 1.08;
  letter-spacing: -.04em;
}

.t24-section-heading > p:last-child,
.t24-app p {
  max-width: 680px;
  margin: 17px 0 0;
  color: var(--t24-muted);
  font-size: 15px;
  line-height: 1.7;
}

.t24-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
}

.t24-benefits article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 17px;
  padding: 24px 0;
  border-top: 1px solid var(--t24-line);
}

.t24-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 9px;
  background: var(--t24-blue-soft);
  color: var(--t24-blue);
}

.t24-icon svg,
.t24-success svg,
.t24-app-mark svg {
  width: 23px;
  height: 23px;
}

.t24-benefits h3,
.t24-steps h3,
.t24-offer-grid h3 {
  margin: 0 0 7px;
  color: var(--t24-graphite);
  font-family: Sora, Poppins, sans-serif;
  font-size: 16px;
}

.t24-benefits p,
.t24-steps p,
.t24-offer-grid p {
  margin: 0;
  color: var(--t24-muted);
  font-size: 13px;
  line-height: 1.65;
}

.t24-steps-section {
  position: relative;
}

.t24-steps-section::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0 calc(50% - 50vw);
  background: var(--t24-soft);
}

.t24-steps-section > * {
  position: relative;
  z-index: 1;
}

.t24-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.t24-steps article {
  position: relative;
  padding-top: 18px;
  border-top: 3px solid #ced6db;
}

.t24-steps article::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--t24-cyan);
}

.t24-steps b {
  display: block;
  margin-bottom: 14px;
  color: var(--t24-blue);
  font-family: Sora, Poppins, sans-serif;
  font-size: 13px;
  letter-spacing: .1em;
}

.t24-offer-grid {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 28px;
  align-items: stretch;
}

.t24-offer-list,
.t24-offer-grid aside {
  border: 1px solid var(--t24-line);
  border-radius: 14px;
  background: #fff;
  padding: 30px;
}

.t24-offer-list {
  border-left: 5px solid var(--t24-blue);
}

.t24-offer-grid h3 {
  font-size: 19px;
}

.t24-offer-grid ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.t24-offer-grid li {
  position: relative;
  padding: 12px 0 12px 24px;
  border-top: 1px solid var(--t24-line);
  color: var(--t24-graphite);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

.t24-offer-grid li::before {
  content: "✓";
  position: absolute;
  left: 1px;
  color: var(--t24-blue);
  font-weight: 800;
}

.t24-offer-grid aside {
  background: var(--t24-blue-soft);
}

.t24-offer-grid aside h3 {
  margin-top: 18px;
}

.t24-offer-grid aside strong {
  display: block;
  margin-top: 20px;
  color: var(--t24-graphite);
  font-size: 13px;
  line-height: 1.5;
}

.t24-app {
  position: relative;
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 30px;
  align-items: start;
  overflow: hidden;
  border: 1px solid #b9dfed;
  border-radius: 16px;
  background: linear-gradient(120deg, #f0fbfe, #fff);
  padding: 45px !important;
}

.t24-app::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -120px;
  width: 330px;
  height: 280px;
  background: rgba(0, 163, 212, .08);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.t24-app > * {
  position: relative;
  z-index: 1;
}

.t24-app-mark {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border-radius: 12px;
  background: var(--t24-blue);
  color: #fff;
}

.t24-app h2 {
  max-width: 820px;
  font-size: clamp(30px, 3.6vw, 44px);
}

.t24-faq-section {
  display: grid;
  grid-template-columns: .55fr 1.45fr;
  gap: 65px;
}

.t24-faq {
  border-top: 1px solid var(--t24-line);
}

.t24-faq details {
  border-bottom: 1px solid var(--t24-line);
  padding: 19px 2px;
}

.t24-faq summary {
  color: var(--t24-graphite);
  font-family: Sora, Poppins, sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.t24-faq summary::marker {
  color: var(--t24-blue);
}

.t24-faq p {
  max-width: 720px;
  margin: 12px 0 0;
  color: var(--t24-muted);
  font-size: 13px;
  line-height: 1.7;
}

.t24-footer {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 45px;
  border-top: 1px solid var(--t24-line);
  padding: 40px 0 50px;
  color: var(--t24-muted);
  font-size: 12px;
}

.t24-footer > div:not(.t24-footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}

.t24-footer b {
  margin-bottom: 3px;
  color: var(--t24-graphite);
  font-size: 12px;
}

.t24-footer a {
  text-decoration: none;
}

.t24-footer a:hover {
  color: var(--t24-blue);
}

.t24-footer-brand p {
  max-width: 330px;
  margin: 14px 0 0;
  line-height: 1.6;
}

.t24-thanks main {
  min-height: calc(100vh - 88px);
  display: grid;
  place-items: center;
  text-align: center;
}

.t24-thanks main section {
  max-width: 770px;
  padding: 68px 0;
}

.t24-success {
  display: grid;
  width: 68px;
  height: 68px;
  margin: 0 auto 23px;
  place-items: center;
  border-radius: 50%;
  background: var(--t24-blue-soft);
  color: var(--t24-blue);
}

.t24-thanks h1 {
  font-size: clamp(40px, 5.5vw, 64px);
}

.t24-thanks main section > p:not(.t24-kicker):not(.t24-help) {
  max-width: 610px;
  margin: 24px auto;
  color: var(--t24-muted);
  font-size: 17px;
  line-height: 1.65;
}

.t24-form-note {
  margin: 28px auto;
  border-left: 4px solid var(--t24-blue);
  border-radius: 8px;
  background: var(--t24-soft);
  padding: 18px 20px;
  text-align: left;
}

.t24-form-note p {
  margin: 7px 0 0 !important;
  color: var(--t24-muted);
  font-size: 13px !important;
  line-height: 1.6 !important;
}

.t24-help {
  margin-top: 23px;
  color: var(--t24-muted);
  font-size: 12px;
}

@media (max-width: 1040px) {
  .t24-hero {
    grid-template-columns: minmax(0, .8fr) minmax(430px, 1.2fr);
    gap: 42px;
  }

  .t24-hero h1 {
    font-size: clamp(43px, 5.2vw, 58px);
  }

  .t24-form {
    padding-inline: 23px;
  }

  .t24-contact a:nth-child(2) {
    display: none;
  }
}

@media (max-width: 860px) {
  .t24-header,
  .t24-footer,
  .t24-page > main {
    width: min(100% - 34px, 1220px);
  }

  .t24-hero {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-top: 55px;
  }

  .t24-hero-copy {
    max-width: 690px;
    padding-top: 0;
  }

  .t24-lead-card {
    max-width: 680px;
  }

  .t24-trust {
    grid-template-columns: 1fr 1fr;
  }

  .t24-trust div:nth-child(2) {
    border-right: 0;
  }

  .t24-trust div:nth-child(3),
  .t24-trust div:nth-child(4) {
    border-top: 1px solid var(--t24-line);
  }

  .t24-trust div:nth-child(3) {
    padding-left: 0;
  }

  .t24-steps {
    grid-template-columns: 1fr 1fr;
  }

  .t24-offer-grid,
  .t24-faq-section {
    grid-template-columns: 1fr;
  }

  .t24-faq-section {
    gap: 8px;
  }

  .t24-footer {
    grid-template-columns: 1.6fr 1fr 1fr;
  }

  .t24-footer > div:last-child {
    display: none;
  }
}

@media (max-width: 600px) {
  .t24-header {
    min-height: 72px;
  }

  .t24-logo {
    width: 132px;
  }

  .t24-contact {
    gap: 10px;
    font-size: 11px;
  }

  .t24-header-cta,
  .t24-contact a:nth-child(2) {
    display: none;
  }

  .t24-hero {
    gap: 34px;
    padding: 44px 0 52px;
  }

  .t24-hero::before {
    top: -100px;
    right: -360px;
  }

  .t24-hero h1 {
    font-size: 42px;
    line-height: 1.06;
  }

  .t24-lead {
    margin-top: 19px;
    font-size: 16px;
  }

  .t24-hero-points {
    margin-top: 23px;
  }

  .t24-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .t24-actions .t24-button {
    width: 100%;
  }

  .t24-actions > span {
    max-width: none;
    text-align: center;
  }

  .t24-form {
    grid-template-columns: 1fr;
    padding: 23px 18px 25px;
  }

  .t24-wide {
    grid-column: auto;
  }

  .t24-radio {
    display: flex !important;
    margin: 0 0 9px !important;
  }

  .t24-inline {
    align-items: stretch;
    flex-direction: column;
  }

  .t24-inline button {
    align-self: stretch;
  }

  .t24-submit {
    align-items: stretch;
    flex-direction: column;
  }

  .t24-submit > span {
    max-width: none;
    text-align: center;
  }

  .t24-trust div {
    padding: 18px 15px;
  }

  .t24-trust div:first-child,
  .t24-trust div:nth-child(3) {
    padding-left: 0;
  }

  .t24-section {
    padding: 62px 0;
  }

  .t24-section-heading {
    margin-bottom: 27px;
  }

  .t24-section-heading h2,
  .t24-app h2 {
    font-size: 34px;
  }

  .t24-grid,
  .t24-steps,
  .t24-offer-grid ul {
    grid-template-columns: 1fr;
  }

  .t24-benefits article {
    grid-template-columns: 42px 1fr;
    gap: 14px;
  }

  .t24-offer-list,
  .t24-offer-grid aside {
    padding: 23px;
  }

  .t24-app {
    grid-template-columns: 1fr;
    gap: 19px;
    padding: 27px 22px !important;
  }

  .t24-footer {
    grid-template-columns: 1fr 1fr;
    gap: 30px 22px;
  }

  .t24-footer-brand {
    grid-column: 1 / -1;
  }

  .t24-logo-footer {
    width: 185px;
  }

  .t24-thanks main section {
    padding: 52px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .t24-button {
    transition: none;
  }
}
