/* Trámita MX en Línea — sistema cálido coral, formas muy redondeadas */
:root {
  --txe-coral: #ef6f5e;
  --txe-coral-d: #c75643;
  --txe-teal: #0d7377;
  --txe-teal-d: #0a585b;
  --txe-brown: #3d2c29;
  --txe-brown-soft: #6a544f;
  --txe-cream: #fff6ee;
  --txe-cream-2: #ffeede;
  --txe-white: #ffffff;
  --txe-line: #f0ddcd;
  --txe-coral-soft: #fde4de;
  --txe-teal-soft: #d9eeed;
  --txe-r: 20px;
  --txe-r-lg: 32px;
  --txe-r-pill: 999px;
  --txe-max: 1180px;
  --txe-pad: clamp(20px, 5vw, 64px);
  --txe-shadow: 0 18px 44px rgba(61, 44, 41, 0.1);
  --txe-shadow-sm: 0 8px 22px rgba(61, 44, 41, 0.08);
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: "Nunito Sans", system-ui, sans-serif;
  color: var(--txe-brown);
  background: var(--txe-cream);
  line-height: 1.66;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4 {
  font-family: "Poppins", system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.01em;
  color: var(--txe-brown);
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
ul {
  list-style: none;
}

.txe-wrap {
  max-width: var(--txe-max);
  margin: 0 auto;
  padding-left: var(--txe-pad);
  padding-right: var(--txe-pad);
}
.txe-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--txe-brown);
  color: #fff;
  padding: 12px 18px;
  border-radius: 0 0 var(--txe-r) 0;
  z-index: 200;
}
.txe-skip:focus {
  left: 0;
}

/* top-bar */
.txe-bar {
  background: var(--txe-brown);
  color: #ffd8cc;
  font-size: 13px;
}
.txe-bar .txe-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 38px;
  text-align: center;
}
.txe-bar strong {
  color: #fff;
  font-weight: 700;
}

/* header */
.txe-head {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 246, 238, 0.9);
  backdrop-filter: blur(10px);
  padding: 14px 0;
}
.txe-head .txe-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--txe-white);
  border-radius: var(--txe-r-pill);
  padding: 10px 14px 10px 18px;
  box-shadow: var(--txe-shadow-sm);
}
.txe-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.txe-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--txe-coral), var(--txe-coral-d));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins";
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 6px 14px rgba(239, 111, 94, 0.4);
}
.txe-brand b {
  font-family: "Poppins";
  font-weight: 700;
  font-size: 16px;
  display: block;
  line-height: 1.1;
}
.txe-brand small {
  display: block;
  font-size: 11px;
  color: var(--txe-brown-soft);
  font-weight: 600;
}
.txe-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.txe-nav a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--txe-brown-soft);
  padding: 9px 15px;
  border-radius: var(--txe-r-pill);
  transition: 0.16s;
}
.txe-nav a:hover {
  background: var(--txe-cream-2);
  color: var(--txe-brown);
}
.txe-nav a[aria-current="page"] {
  background: var(--txe-coral-soft);
  color: var(--txe-coral-d);
}
.txe-nav .txe-navcta {
  background: var(--txe-teal);
  color: #fff !important;
  padding: 10px 20px;
}
.txe-nav .txe-navcta:hover {
  background: var(--txe-teal-d);
}
.txe-burger {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: var(--txe-cream-2);
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.txe-burger span {
  display: block;
  width: 20px;
  height: 2.5px;
  border-radius: 2px;
  background: var(--txe-brown);
  transition: 0.2s;
}
.txe-burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.txe-burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.txe-burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* buttons */
.txe-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: "Poppins";
  font-weight: 600;
  font-size: 15.5px;
  padding: 14px 28px;
  border-radius: var(--txe-r-pill);
  cursor: pointer;
  border: 2px solid transparent;
  transition: 0.18s;
}
.txe-btn-coral {
  background: var(--txe-coral);
  color: #fff;
  box-shadow: 0 10px 24px rgba(239, 111, 94, 0.34);
}
.txe-btn-coral:hover {
  background: var(--txe-coral-d);
  transform: translateY(-2px);
}
.txe-btn-teal {
  background: var(--txe-teal);
  color: #fff;
}
.txe-btn-teal:hover {
  background: var(--txe-teal-d);
  transform: translateY(-2px);
}
.txe-btn-ghost {
  background: transparent;
  border-color: var(--txe-brown);
  color: var(--txe-brown);
}
.txe-btn-ghost:hover {
  background: var(--txe-brown);
  color: #fff;
}
.txe-btn-cream {
  background: #fff;
  color: var(--txe-coral-d);
}
.txe-btn-cream:hover {
  transform: translateY(-2px);
}

.txe-eyebrow {
  display: inline-block;
  font-family: "Poppins";
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--txe-coral-d);
  background: var(--txe-coral-soft);
  padding: 6px 14px;
  border-radius: var(--txe-r-pill);
  margin-bottom: 18px;
  font-weight: 700;
}

/* hero */
.txe-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 5vw, 56px) 0 clamp(48px, 7vw, 88px);
}
.txe-hero::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -160px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(239, 111, 94, 0.18),
    transparent 70%
  );
  pointer-events: none;
}
.txe-hero::after {
  content: "";
  position: absolute;
  bottom: -200px;
  left: -140px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(13, 115, 119, 0.13),
    transparent 70%
  );
  pointer-events: none;
}
.txe-hero .txe-wrap {
  position: relative;
}
.txe-hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}
.txe-hero h1 {
  font-size: clamp(34px, 5.6vw, 60px);
  margin: 6px 0 20px;
}
.txe-hero h1 em {
  font-style: normal;
  color: var(--txe-coral-d);
}
.txe-hero p.txe-lead {
  font-size: 18.5px;
  color: var(--txe-brown-soft);
  max-width: 50ch;
}
.txe-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.txe-microdis {
  font-size: 13px;
  color: var(--txe-brown-soft);
  background: var(--txe-white);
  border-radius: var(--txe-r);
  padding: 14px 18px;
  margin-top: 28px;
  max-width: 58ch;
  box-shadow: var(--txe-shadow-sm);
  line-height: 1.55;
}
.txe-hero-media {
  position: relative;
}
.txe-hero-media img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: var(--txe-r-lg);
  box-shadow: var(--txe-shadow);
}
.txe-hero-chip {
  position: absolute;
  background: var(--txe-white);
  border-radius: var(--txe-r);
  padding: 14px 18px;
  box-shadow: var(--txe-shadow);
  display: flex;
  align-items: center;
  gap: 12px;
}
.txe-hero-chip.a {
  bottom: 22px;
  left: -14px;
}
.txe-hero-chip.b {
  top: 22px;
  right: -12px;
}
.txe-hero-chip .dot {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex: none;
}
.txe-hero-chip.a .dot {
  background: var(--txe-coral-soft);
  color: var(--txe-coral-d);
}
.txe-hero-chip.b .dot {
  background: var(--txe-teal-soft);
  color: var(--txe-teal);
}
.txe-hero-chip b {
  font-family: "Poppins";
  font-size: 14px;
  display: block;
  line-height: 1.1;
}
.txe-hero-chip span {
  font-size: 12px;
  color: var(--txe-brown-soft);
}

/* meta strip */
.txe-meta {
  margin-top: 6px;
}
.txe-meta .txe-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.txe-meta div {
  background: var(--txe-white);
  border-radius: var(--txe-r);
  padding: 22px;
  text-align: center;
  box-shadow: var(--txe-shadow-sm);
}
.txe-meta b {
  font-family: "Poppins";
  font-size: 30px;
  display: block;
  color: var(--txe-coral-d);
}
.txe-meta span {
  font-size: 13px;
  color: var(--txe-brown-soft);
  font-weight: 600;
}

/* sections */
.txe-sec {
  padding: clamp(54px, 8vw, 96px) 0;
}
.txe-sec-white {
  background: var(--txe-white);
}
.txe-sec-teal {
  background: var(--txe-teal);
  color: #e6f3f2;
}
.txe-sec-teal h2,
.txe-sec-teal h3 {
  color: #fff;
}
.txe-sec-teal .txe-eyebrow {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}
.txe-block {
  max-width: 720px;
  margin-bottom: 46px;
}
.txe-block.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.txe-block h2 {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 14px;
}
.txe-block .lead {
  font-size: 18px;
  color: var(--txe-brown-soft);
}
.txe-sec-teal .txe-block .lead {
  color: #cfe6e5;
}

.txe-grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.txe-grid2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.txe-card {
  background: var(--txe-white);
  border-radius: var(--txe-r-lg);
  padding: 32px;
  box-shadow: var(--txe-shadow-sm);
  transition: 0.2s;
}
.txe-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--txe-shadow);
}
.txe-card .txe-ico {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: var(--txe-coral-soft);
  color: var(--txe-coral-d);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
  font-family: "Poppins";
  font-weight: 700;
}
.txe-card.t .txe-ico {
  background: var(--txe-teal-soft);
  color: var(--txe-teal);
}
.txe-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.txe-card p {
  font-size: 15.5px;
  color: var(--txe-brown-soft);
}

/* steps */
.txe-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.txe-step {
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--txe-r-lg);
  padding: 28px 24px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.txe-step .txe-sn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  color: var(--txe-teal);
  font-family: "Poppins";
  font-weight: 700;
  font-size: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.txe-step h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.txe-step p {
  font-size: 14.5px;
  color: #cfe6e5;
}
.txe-step-gov {
  background: var(--txe-coral);
  border-color: var(--txe-coral-d);
}
.txe-step-gov .txe-sn {
  background: var(--txe-brown);
  color: #fff;
}
.txe-step-gov h3,
.txe-step-gov p {
  color: #fff;
}
.txe-flag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  padding: 4px 11px;
  border-radius: var(--txe-r-pill);
  margin-bottom: 14px;
}
.txe-warn {
  font-size: 13px;
  background: rgba(0, 0, 0, 0.16);
  border-radius: var(--txe-r);
  padding: 12px 14px;
  margin-top: 14px;
  color: #fff;
}

/* split feature */
.txe-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.txe-split img {
  width: 100%;
  border-radius: var(--txe-r-lg);
  box-shadow: var(--txe-shadow);
}
.txe-split ul {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.txe-split li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15.5px;
}
.txe-tick {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--txe-teal-soft);
  color: var(--txe-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex: none;
}

/* quotes */
.txe-quote {
  background: var(--txe-white);
  border-radius: var(--txe-r-lg);
  padding: 30px;
  box-shadow: var(--txe-shadow-sm);
}
.txe-stars {
  color: var(--txe-coral);
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.txe-quote p {
  font-size: 16px;
  color: var(--txe-brown);
  margin-bottom: 16px;
}
.txe-quote footer {
  font-size: 13.5px;
  color: var(--txe-brown-soft);
  display: flex;
  align-items: center;
  gap: 10px;
}
.txe-quote footer b {
  color: var(--txe-brown);
  font-family: "Poppins";
}
.txe-qmark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--txe-coral-soft);
  color: var(--txe-coral-d);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins";
  font-weight: 700;
  flex: none;
}

/* cta band */
.txe-ctaband {
  padding: clamp(20px, 5vw, 40px) 0;
}
.txe-ctaband .txe-inner {
  background: linear-gradient(135deg, var(--txe-coral), var(--txe-coral-d));
  border-radius: var(--txe-r-lg);
  padding: clamp(40px, 6vw, 72px);
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.txe-ctaband .txe-inner::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}
.txe-ctaband h2 {
  color: #fff;
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 14px;
  position: relative;
}
.txe-ctaband p {
  color: #ffe4dc;
  max-width: 56ch;
  margin: 0 auto 8px;
  position: relative;
}
.txe-ctaband .txe-dis {
  font-family: "Poppins";
  font-weight: 600;
  font-size: 14.5px;
  color: #fff;
  margin-top: 18px;
  margin-bottom: 26px;
}
.txe-ctaband .txe-hero-cta {
  justify-content: center;
  position: relative;
}

/* footer */
.txe-foot {
  background: var(--txe-brown);
  color: #e9ddd8;
  padding: clamp(48px, 6vw, 76px) 0 36px;
}
.txe-foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 34px;
}
.txe-foot .txe-mark {
  box-shadow: none;
}
.txe-foot .txe-brand b {
  color: #fff;
}
.txe-foot .txe-brand small {
  color: #c7b3ad;
}
.txe-foot h4 {
  font-family: "Poppins";
  font-size: 13px;
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 16px;
}
.txe-foot a {
  display: block;
  font-size: 14.5px;
  color: #d8c8c2;
  padding: 5px 0;
}
.txe-foot a:hover {
  color: var(--txe-coral);
}
.txe-foot-about p {
  font-size: 14.5px;
  color: #c7b3ad;
  margin-top: 14px;
  max-width: 34ch;
}
.txe-foot-contact {
  font-size: 14px;
  color: #c7b3ad;
  margin-top: 10px;
}
.txe-foot-dis {
  border-top: 1px solid #55403c;
  margin-top: 40px;
  padding-top: 26px;
  font-size: 13.5px;
  color: #c7b3ad;
  line-height: 1.7;
}
.txe-foot-dis strong {
  color: #fff;
  font-family: "Poppins";
}

/* page header */
.txe-page-head {
  padding: clamp(40px, 6vw, 72px) 0 clamp(28px, 4vw, 48px);
  position: relative;
  overflow: hidden;
}
.txe-page-head::before {
  content: "";
  position: absolute;
  top: -160px;
  right: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(239, 111, 94, 0.14),
    transparent 70%
  );
}
.txe-page-head .txe-wrap {
  position: relative;
}
.txe-page-head h1 {
  font-size: clamp(32px, 5vw, 52px);
  margin: 8px 0 14px;
}
.txe-page-head p {
  font-size: 18px;
  color: var(--txe-brown-soft);
  max-width: 62ch;
}
.txe-crumb {
  font-size: 13.5px;
  color: var(--txe-brown-soft);
  font-weight: 600;
}
.txe-crumb a:hover {
  color: var(--txe-coral-d);
}

/* service detail */
.txe-svc {
  background: var(--txe-white);
  border-radius: var(--txe-r-lg);
  padding: clamp(26px, 3.5vw, 40px);
  box-shadow: var(--txe-shadow-sm);
  margin-bottom: 26px;
}
.txe-svc-head {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.txe-svc-no {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: var(--txe-coral-soft);
  color: var(--txe-coral-d);
  font-family: "Poppins";
  font-weight: 700;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.txe-svc-head h2 {
  font-size: 24px;
  margin-bottom: 6px;
}
.txe-svc-head p {
  color: var(--txe-brown-soft);
  font-size: 16px;
}
.txe-svc-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.txe-svc-col {
  border-radius: var(--txe-r);
  padding: 22px;
}
.txe-svc-col.inc {
  background: var(--txe-teal-soft);
}
.txe-svc-col.exc {
  background: var(--txe-coral-soft);
}
.txe-svc-col h3 {
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.txe-svc-col.inc h3 {
  color: var(--txe-teal-d);
}
.txe-svc-col.exc h3 {
  color: var(--txe-coral-d);
}
.txe-svc-col li {
  display: flex;
  gap: 10px;
  padding: 7px 0;
  font-size: 15px;
  align-items: flex-start;
}
.txe-svc-col .txe-tick {
  background: var(--txe-teal);
  color: #fff;
}
.txe-no {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--txe-coral-d);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex: none;
}

/* about / team */
.txe-team {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.txe-member {
  background: var(--txe-white);
  border-radius: var(--txe-r-lg);
  padding: 30px;
  text-align: center;
  box-shadow: var(--txe-shadow-sm);
}
.txe-avatar {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 18px;
  border: 4px solid var(--txe-coral-soft);
  background: var(--txe-cream-2);
}
.txe-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.txe-member h3 {
  font-size: 19px;
  margin-bottom: 3px;
}
.txe-member span {
  font-size: 13.5px;
  color: var(--txe-coral-d);
  font-weight: 700;
}
.txe-member p {
  font-size: 14px;
  color: var(--txe-brown-soft);
  margin-top: 10px;
}

.txe-xlist {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.txe-xlist li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  background: var(--txe-white);
  border-radius: var(--txe-r);
  padding: 16px 18px;
  font-size: 15.5px;
  color: var(--txe-brown-soft);
  box-shadow: var(--txe-shadow-sm);
}

.txe-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--txe-white);
  border-radius: var(--txe-r-lg);
  overflow: hidden;
  box-shadow: var(--txe-shadow-sm);
}
.txe-table th,
.txe-table td {
  text-align: left;
  padding: 15px 22px;
  border-bottom: 1px solid var(--txe-line);
  font-size: 15px;
  vertical-align: top;
}
.txe-table th {
  font-family: "Poppins";
  font-weight: 600;
  width: 38%;
  color: var(--txe-brown);
  background: var(--txe-cream);
}
.txe-table tr:last-child th,
.txe-table tr:last-child td {
  border-bottom: 0;
}

/* faq */
.txe-faqcat {
  font-family: "Poppins";
  font-size: 14px;
  font-weight: 700;
  color: var(--txe-coral-d);
  margin: 34px 0 14px;
}
.txe-acc-item {
  background: var(--txe-white);
  border-radius: var(--txe-r);
  margin-bottom: 12px;
  box-shadow: var(--txe-shadow-sm);
  overflow: hidden;
}
.txe-acc-btn {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 20px 22px;
  font-family: "Poppins";
  font-size: 16px;
  font-weight: 600;
  color: var(--txe-brown);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}
.txe-acc-btn:hover {
  color: var(--txe-coral-d);
}
.txe-acc-btn .txe-sign {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--txe-coral-soft);
  color: var(--txe-coral-d);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex: none;
  transition: transform 0.2s;
}
.txe-acc-btn[aria-expanded="true"] .txe-sign {
  transform: rotate(45deg);
  background: var(--txe-coral);
  color: #fff;
}
.txe-acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.txe-acc-btn[aria-expanded="true"] + .txe-acc-panel {
  max-height: 560px;
}
.txe-acc-panel p {
  padding: 0 22px 22px;
  font-size: 15.5px;
  color: var(--txe-brown-soft);
}

/* contact */
.txe-contact {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
}
.txe-form {
  background: var(--txe-white);
  border-radius: var(--txe-r-lg);
  padding: clamp(26px, 4vw, 42px);
  box-shadow: var(--txe-shadow-sm);
}
.txe-form-row {
  margin-bottom: 18px;
}
.txe-form label {
  display: block;
  font-family: "Poppins";
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 7px;
}
.txe-form input,
.txe-form select,
.txe-form textarea {
  width: 100%;
  border: 1.5px solid var(--txe-line);
  border-radius: var(--txe-r);
  background: var(--txe-cream);
  padding: 13px 15px;
  font-family: inherit;
  font-size: 15px;
  color: var(--txe-brown);
}
.txe-form input:focus,
.txe-form select:focus,
.txe-form textarea:focus {
  outline: none;
  border-color: var(--txe-coral);
  background: #fff;
}
.txe-form textarea {
  resize: vertical;
  min-height: 130px;
}
.txe-consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13.5px;
  color: var(--txe-brown-soft);
  margin-bottom: 20px;
}
.txe-consent input {
  width: auto;
  margin-top: 4px;
}
.txe-consent a {
  color: var(--txe-coral-d);
  text-decoration: underline;
  font-weight: 600;
}
.txe-form button[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
}
.txe-note {
  font-size: 13px;
  color: var(--txe-brown-soft);
  margin-top: 12px;
}
.txe-contact-side {
  background: var(--txe-teal);
  color: #e6f3f2;
  border-radius: var(--txe-r-lg);
  padding: clamp(26px, 4vw, 42px);
}
.txe-contact-side h3 {
  color: #fff;
  font-size: 19px;
  margin-bottom: 6px;
}
.txe-cinfo {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.txe-cinfo dt {
  font-family: "Poppins";
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #a8d4d2;
  margin-bottom: 3px;
}
.txe-cinfo dd {
  font-size: 15px;
  color: #fff;
}
.txe-cinfo dd a {
  color: #fff;
  text-decoration: underline;
}

/* legal */
.txe-legal {
  max-width: 820px;
  background: var(--txe-white);
  border-radius: var(--txe-r-lg);
  padding: clamp(28px, 4vw, 52px);
  box-shadow: var(--txe-shadow-sm);
}
.txe-legal h2 {
  font-size: 21px;
  margin: 30px 0 10px;
  color: var(--txe-coral-d);
}
.txe-legal h2:first-child {
  margin-top: 0;
}
.txe-legal h3 {
  font-size: 17px;
  margin: 20px 0 8px;
}
.txe-legal p,
.txe-legal li {
  font-size: 15.5px;
  color: var(--txe-brown-soft);
  margin-bottom: 12px;
}
.txe-legal ul {
  padding-left: 22px;
  list-style: disc;
}
.txe-legal li {
  margin-bottom: 7px;
}
.txe-updated {
  font-size: 13.5px;
  color: var(--txe-brown-soft);
  background: var(--txe-cream);
  border-radius: var(--txe-r);
  padding: 12px 16px;
  margin-bottom: 20px;
}

/* responsive */
@media (max-width: 880px) {
  .txe-hero-grid {
    grid-template-columns: 1fr;
  }
  .txe-hero-media {
    margin-top: 20px;
  }
  .txe-hero-chip.a {
    left: 10px;
  }
  .txe-hero-chip.b {
    right: 10px;
  }
  .txe-split {
    grid-template-columns: 1fr;
  }
  .txe-contact {
    grid-template-columns: 1fr;
  }
  .txe-steps {
    grid-template-columns: 1fr 1fr;
  }
  .txe-team {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 760px) {
  .txe-burger {
    display: flex;
  }
  .txe-nav {
    position: fixed;
    inset: 84px 14px auto 14px;
    background: var(--txe-white);
    border-radius: var(--txe-r-lg);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px;
    box-shadow: var(--txe-shadow);
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: 0.25s;
  }
  .txe-nav[data-open="true"] {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .txe-nav a {
    padding: 13px 16px;
  }
  .txe-meta .txe-wrap {
    grid-template-columns: 1fr 1fr;
  }
  .txe-grid3,
  .txe-grid2 {
    grid-template-columns: 1fr;
  }
  .txe-svc-cols {
    grid-template-columns: 1fr;
  }
  .txe-foot-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .txe-steps {
    grid-template-columns: 1fr;
  }
  .txe-team {
    grid-template-columns: 1fr;
  }
  .txe-meta .txe-wrap {
    grid-template-columns: 1fr 1fr;
  }
  .txe-foot-grid {
    grid-template-columns: 1fr;
  }
}
