:root {
  --t-primary: #6911b9;
  --t-primary-dark: #4a0a85;
  --t-primary-soft: #f4effb;
  --t-accent: #2a0a4a;
  --t-text: #1f2328;
  --t-muted: #5b6470;
  --t-bg: #ffffff;
  --t-bg-soft: #f8f7fb;
  --t-border: #ececf2;
  --t-radius: 18px;
  --t-radius-sm: 12px;
  --t-shadow-sm: 0 6px 18px rgba(20, 12, 50, 0.06);
  --t-shadow-md: 0 14px 36px rgba(20, 12, 50, 0.1);
  --t-shadow-lg: 0 28px 60px rgba(20, 12, 50, 0.14);
  --t-max: 1180px;
  color-scheme: light;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--t-text);
  background: var(--t-bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

img { max-width: 100%; display: block; }

.t-container {
  max-width: var(--t-max);
  margin: 0 auto;
  padding: 0 24px;
}

.t-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t-primary);
  background: var(--t-primary-soft);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.t-accent { color: var(--t-primary); }

h1, h2, h3, h4 { color: var(--t-accent); letter-spacing: -0.01em; }

h1 { font-size: clamp(34px, 5vw, 56px); font-weight: 800; line-height: 1.08; margin: 0 0 18px; }
h2 { font-size: clamp(28px, 3.6vw, 40px); font-weight: 800; line-height: 1.15; margin: 0 0 14px; }
h3 { font-size: 20px; font-weight: 700; margin: 0 0 8px; }

p { margin: 0 0 14px; color: var(--t-muted); font-size: 16px; }

.t-section-head {
  max-width: 720px;
  margin: 0 auto 48px;
}
.t-section-head h2 { margin-bottom: 10px; }
.t-section-head p { font-size: 17px; }
.t-section-head--center { text-align: center; }

/* Buttons */
.t-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  font-family: inherit;
  white-space: nowrap;
}
.t-btn--primary {
  background: var(--t-primary);
  color: #fff;
  box-shadow: 0 10px 22px rgba(105, 17, 185, 0.28);
}
.t-btn--primary:hover {
  background: var(--t-primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(105, 17, 185, 0.35);
  color: #fff;
}
.t-btn--ghost {
  background: transparent;
  color: var(--t-accent);
  border-color: var(--t-border);
}
.t-btn--ghost:hover { background: var(--t-bg-soft); }
.t-btn--lg { padding: 14px 24px; font-size: 16px; }

/* Header */
.t-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--t-border);
}
.t-nav-inner {
  max-width: var(--t-max);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.t-nav-brand img {
  height: 36px;
  width: auto;
}
.t-nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  margin-left: 12px;
}
.t-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--t-text);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}
.t-nav-link:hover {
  background: var(--t-primary-soft);
  color: var(--t-primary);
}
.t-nav-dropdown {
  position: relative;
}
.t-nav-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 320px;
  background: #fff;
  border-radius: var(--t-radius-sm);
  border: 1px solid var(--t-border);
  box-shadow: var(--t-shadow-md);
  padding: 12px;
  display: none;
  z-index: 50;
}
.t-nav-dropdown:hover > .t-nav-menu,
.t-nav-dropdown:focus-within > .t-nav-menu { display: block; }
.t-nav-menu a {
  display: flex;
  gap: 12px;
  padding: 12px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--t-text);
  align-items: flex-start;
}
.t-nav-menu a:hover { background: var(--t-bg-soft); }
.t-nav-menu i {
  font-size: 22px;
  color: var(--t-primary);
  margin-top: 2px;
}
.t-nav-menu strong { display: block; font-weight: 600; }
.t-nav-menu em {
  display: block;
  font-style: normal;
  color: var(--t-muted);
  font-size: 13px;
  margin-top: 2px;
}

.t-nav-toggle {
  display: none;
  margin-left: auto;
  background: transparent;
  border: 0;
  font-size: 26px;
  cursor: pointer;
  color: var(--t-text);
}

.t-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 12, 50, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 50;
}
.t-mobile-overlay.is-open { opacity: 1; pointer-events: auto; }

.t-mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 86vw);
  height: 100%;
  background: #fff;
  z-index: 60;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  padding: 24px;
  box-shadow: -16px 0 40px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
}
.t-mobile-menu.is-open { transform: translateX(0); }
.t-mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 36px;
}
.t-mobile-menu nav a {
  text-decoration: none;
  color: var(--t-text);
  font-weight: 600;
  font-size: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--t-border);
}
.t-mobile-menu nav a.t-btn { border: 0; text-align: center; }
.t-mobile-close {
  align-self: flex-end;
  background: transparent;
  border: 0;
  font-size: 24px;
  cursor: pointer;
}

/* Hero */
.t-hero {
  padding: 72px 0 80px;
  background:
    radial-gradient(800px 480px at 90% -10%, rgba(105,17,185,0.10), transparent),
    radial-gradient(640px 360px at -10% 80%, rgba(105,17,185,0.06), transparent),
    var(--t-bg);
}
.t-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.t-hero p { font-size: 18px; max-width: 540px; }
.t-hero-bullets {
  list-style: none;
  margin: 18px 0 28px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
}
.t-hero-bullets li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: var(--t-text);
}
.t-hero-bullets i { color: var(--t-primary); font-size: 18px; }
.t-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.t-hero-visual {
  position: relative;
}
.t-hero-visual img {
  width: 100%;
  border-radius: var(--t-radius);
  box-shadow: var(--t-shadow-lg);
}
.t-floating-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--t-border);
  box-shadow: 0 12px 24px rgba(20, 12, 50, 0.12);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--t-accent);
  z-index: 2;
  white-space: nowrap;
}
.t-floating-chip i { color: var(--t-primary); font-size: 16px; }
.t-chip--a { top: 6%;   left: -3%;  animation: t-float-a 6s ease-in-out infinite; }
.t-chip--b { top: 22%;  right: -4%; animation: t-float-b 7s ease-in-out infinite; }
.t-chip--c { bottom: 26%; left: -2%; animation: t-float-c 8s ease-in-out infinite; }
.t-chip--d { bottom: 4%;  right: 2%; animation: t-float-d 6.5s ease-in-out infinite; }
@keyframes t-float-a { 0%, 100% { transform: translate(0,0); } 50% { transform: translate(-6px,-12px); } }
@keyframes t-float-b { 0%, 100% { transform: translate(0,0); } 50% { transform: translate(10px,-6px); } }
@keyframes t-float-c { 0%, 100% { transform: translate(0,0); } 50% { transform: translate(-8px,10px); } }
@keyframes t-float-d { 0%, 100% { transform: translate(0,0); } 50% { transform: translate(8px,12px); } }

/* Marquee scrolling de módulos */
.t-marquee-section {
  padding: 72px 0 96px;
  background: linear-gradient(180deg, var(--t-bg) 0%, var(--t-bg-soft) 50%, var(--t-bg) 100%);
}
.t-marquee {
  overflow: hidden;
  margin: 16px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.t-marquee-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: t-marquee 38s linear infinite;
}
.t-marquee--reverse .t-marquee-track {
  animation-direction: reverse;
  animation-duration: 46s;
}
.t-marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  background: #fff;
  border: 1px solid var(--t-border);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  color: var(--t-accent);
  white-space: nowrap;
  box-shadow: var(--t-shadow-sm);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.t-marquee-track span i {
  font-size: 20px;
  color: var(--t-primary);
}
.t-marquee:hover .t-marquee-track { animation-play-state: paused; }
@keyframes t-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Sectors */
.t-sectors {
  padding: 96px 0;
  background: var(--t-bg-soft);
}
.t-sector-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.t-sector-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.t-sector-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--t-border);
  box-shadow: var(--t-shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  color: inherit;
}
.t-sector-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--t-shadow-md);
}
.t-sector-media {
  aspect-ratio: 16/9;
  background: var(--t-bg-soft);
  overflow: hidden;
}
.t-sector-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.t-sector-body {
  padding: 28px;
}
.t-sector-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--t-primary);
  background: var(--t-primary-soft);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.t-sector-body h3 { font-size: 22px; }
.t-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  color: var(--t-primary);
  font-weight: 600;
}

/* Features */
.t-features { padding: 96px 0; }
.t-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.t-feature {
  background: #fff;
  border: 1px solid var(--t-border);
  border-radius: var(--t-radius);
  padding: 24px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.t-feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--t-shadow-md);
  border-color: rgba(105,17,185,0.25);
}
.t-feature-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--t-primary-soft);
  color: var(--t-primary);
  border-radius: 14px;
  font-size: 22px;
  margin-bottom: 14px;
}
.t-feature h3 { font-size: 17px; margin-bottom: 6px; }
.t-feature p { font-size: 14.5px; margin: 0; }

/* Timeline */
.t-timeline {
  padding: 96px 0;
  background: var(--t-bg-soft);
}
.t-timeline-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
.t-timeline-track::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(105,17,185,0.35), transparent);
  z-index: 0;
}
.t-timeline-track li {
  position: relative;
  text-align: center;
  background: #fff;
  border: 1px solid var(--t-border);
  border-radius: var(--t-radius);
  padding: 24px 18px 22px;
  box-shadow: var(--t-shadow-sm);
}
.t-step-num {
  display: inline-grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 999px;
  background: var(--t-primary);
  color: #fff;
  font-weight: 700;
  margin-bottom: 12px;
}
.t-timeline-track li h3 { font-size: 16px; }
.t-timeline-track li p { font-size: 14px; margin: 0; }

/* Trust */
.t-trust {
  padding: 64px 0;
  background: linear-gradient(120deg, var(--t-primary) 0%, var(--t-accent) 100%);
  color: #fff;
}
.t-trust h2 { color: #fff; }
.t-trust p { color: rgba(255,255,255,0.85); margin: 0; }
.t-trust-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
  align-items: center;
}
.t-trust-badges {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.t-trust-badges li {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--t-radius-sm);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}
.t-trust-badges i { font-size: 22px; }

/* Testimonials */
.t-testimonials { padding: 96px 0; }
.t-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.t-testimonial {
  background: #fff;
  border: 1px solid var(--t-border);
  border-radius: var(--t-radius);
  padding: 26px;
  box-shadow: var(--t-shadow-sm);
}
.t-testimonial p {
  font-size: 16px;
  color: var(--t-text);
  font-style: italic;
  margin: 0 0 18px;
}
.t-testimonial footer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.t-avatar {
  width: 48px; height: 48px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.02em;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.6), 0 4px 10px rgba(20,12,50,0.15);
}
.t-avatar--a { background: linear-gradient(135deg, #6911b9, #9b3df0); }
.t-avatar--b { background: linear-gradient(135deg, #2a0a4a, #6911b9); }
.t-avatar--c { background: linear-gradient(135deg, #4a0a85, #c490ff); }
.t-testimonial strong { display: block; font-size: 14px; }
.t-testimonial em {
  display: block;
  font-style: normal;
  font-size: 13px;
  color: var(--t-muted);
}

/* FAQ */
.t-faq {
  padding: 96px 0;
  background: var(--t-bg-soft);
}
.t-faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
.t-faq-head p { font-size: 16px; }
.t-faq-list details {
  background: #fff;
  border: 1px solid var(--t-border);
  border-radius: var(--t-radius-sm);
  padding: 0 22px;
  margin-bottom: 12px;
  box-shadow: var(--t-shadow-sm);
}
.t-faq-list summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  font-weight: 600;
  font-size: 16px;
  color: var(--t-accent);
}
.t-faq-list summary::-webkit-details-marker { display: none; }
.t-faq-list summary i {
  font-size: 22px;
  color: var(--t-primary);
  transition: transform 0.2s ease;
}
.t-faq-list details[open] summary i { transform: rotate(45deg); }
.t-faq-list details p {
  padding: 0 0 20px;
  margin: 0;
  font-size: 15px;
}

/* CTA Form */
.t-cta-form {
  padding: 96px 0;
  background: var(--t-bg);
}
.t-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.t-cta-copy p { font-size: 17px; }
.t-cta-bullets {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.t-cta-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}
.t-cta-bullets i {
  color: var(--t-primary);
  font-size: 20px;
}

.t-form {
  background: #fff;
  border: 1px solid var(--t-border);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--t-shadow-md);
  display: grid;
  gap: 16px;
}
.t-form h3 {
  font-size: 22px;
  margin: 0 0 4px;
}
.t-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.t-form label {
  display: grid;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--t-accent);
}
.t-form input,
.t-form select,
.t-form textarea {
  border: 1px solid var(--t-border);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
  font-weight: 400;
  color: var(--t-text);
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.t-form input:focus,
.t-form select:focus,
.t-form textarea:focus {
  outline: none;
  border-color: var(--t-primary);
  box-shadow: 0 0 0 4px rgba(105,17,185,0.12);
}
.t-form-full { grid-column: 1 / -1; }
.t-form-check {
  display: flex !important;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  font-weight: 500 !important;
  font-size: 14px;
  color: var(--t-muted) !important;
}
.t-form-check input {
  width: 18px; height: 18px;
  margin-top: 2px;
  accent-color: var(--t-primary);
}
.t-form-status {
  font-size: 14px;
  font-weight: 500;
  min-height: 22px;
}
.t-form-status.is-error { color: #c0392b; }
.t-form-status.is-success { color: #1e8449; }
.t-form-submit {
  justify-content: center;
  position: relative;
}
.t-submit-spinner {
  display: none;
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.is-submitting .t-submit-label { opacity: 0.6; }
.is-submitting .t-submit-spinner { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* About */
.t-about { padding: 96px 0; background: var(--t-bg-soft); }
.t-about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.t-about-media img {
  border-radius: var(--t-radius);
  box-shadow: var(--t-shadow-md);
}

/* Footer */
.t-footer {
  background: var(--t-accent);
  color: rgba(255,255,255,0.85);
  padding: 64px 0 28px;
}
.t-footer h4 { color: #fff; margin-bottom: 16px; font-size: 15px; }
.t-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; font-size: 14px; }
.t-footer a { color: rgba(255,255,255,0.78); text-decoration: none; }
.t-footer a:hover { color: #fff; }
.t-footer p { color: rgba(255,255,255,0.75); font-size: 14px; }
.t-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 36px;
  padding-bottom: 36px;
}
.t-footer-logo { height: 40px; width: auto; margin-bottom: 16px; }
.t-footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.t-footer-socials a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.1);
  border-radius: 999px;
  font-size: 16px;
}
.t-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  align-items: center;
  justify-content: space-between;
}
.t-footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}
.t-footer-legal a {
  color: rgba(255,255,255,0.78);
  text-decoration: none;
}
.t-footer-legal a:hover { color: #fff; text-decoration: underline; }
.t-footer-legal a + a::before {
  content: "|";
  margin-right: 14px;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 300;
  display: inline-block;
}

/* Legal pages */
.t-legal { padding: 64px 0 96px; background: var(--t-bg); }
.t-legal header { max-width: 760px; margin: 0 0 40px; }
.t-legal h1 { font-size: clamp(28px, 4vw, 40px); margin: 12px 0 12px; }
.t-legal .t-legal-meta { font-size: 14px; color: var(--t-muted); margin: 0; }
.t-legal section { max-width: 760px; margin: 0 0 32px; }
.t-legal h2 {
  font-size: 20px;
  color: var(--t-primary);
  margin: 0 0 12px;
}
.t-legal p, .t-legal ul { color: var(--t-text); font-size: 15.5px; }
.t-legal ul { padding-left: 22px; margin: 0 0 12px; }
.t-legal li { margin-bottom: 6px; }
.t-legal a { color: var(--t-primary); }

/* Welcome modal (campaign URL /#principal) */
.t-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.t-modal.is-open { display: flex; }
.t-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 12, 50, 0.6);
  backdrop-filter: blur(4px);
  animation: t-fade-in 0.2s ease;
}
.t-modal-dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 940px;
  max-height: 92vh;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.32);
  animation: t-modal-in 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes t-fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes t-modal-in { from { transform: translateY(24px) scale(0.96); opacity: 0; } to { transform: none; opacity: 1; } }

.t-modal-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  max-height: 92vh;
}
.t-modal-pitch {
  background:
    radial-gradient(420px 280px at 100% 0%, rgba(255, 255, 255, 0.18), transparent 70%),
    linear-gradient(140deg, var(--t-primary) 0%, var(--t-accent) 100%);
  color: #fff;
  padding: 42px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.t-modal-pitch .t-eyebrow {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  align-self: flex-start;
}
.t-modal-pitch h2 {
  color: #fff;
  font-size: clamp(22px, 2.4vw, 28px);
  margin: 0 0 14px;
}
.t-modal-pitch p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 15.5px;
  margin: 0;
}
.t-modal-bullets {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 12px;
}
.t-modal-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14.5px;
}
.t-modal-bullets i { font-size: 18px; margin-top: 2px; color: #fff; }
.t-form--modal {
  padding: 32px;
  overflow-y: auto;
  max-height: 92vh;
  box-shadow: none;
  border: 0;
  border-radius: 0;
}
.t-form--modal h3 { font-size: 22px; margin-bottom: 4px; color: var(--t-accent); }
.t-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--t-border);
  font-size: 18px;
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 2;
  color: var(--t-accent);
  box-shadow: var(--t-shadow-sm);
}
.t-modal-close:hover { background: var(--t-bg-soft); }
body.t-modal-open { overflow: hidden; }

@media (max-width: 820px) {
  .t-modal { padding: 0; }
  .t-modal-dialog { max-height: 100vh; height: 100vh; border-radius: 0; }
  .t-modal-grid { grid-template-columns: 1fr; max-height: 100vh; overflow-y: auto; }
  .t-modal-pitch { padding: 28px 24px; }
  .t-modal-pitch h2 { font-size: 22px; }
  .t-modal-bullets { display: none; }
  .t-form--modal { padding: 24px; max-height: none; }
}

/* Responsive */
@media (max-width: 980px) {
  .t-hero-grid,
  .t-sector-grid,
  .t-trust-grid,
  .t-cta-grid,
  .t-about-grid,
  .t-faq-layout { grid-template-columns: 1fr; }
  .t-feature-grid { grid-template-columns: repeat(2, 1fr); }
  .t-timeline-track { grid-template-columns: repeat(2, 1fr); }
  .t-timeline-track::before { display: none; }
  .t-testimonial-grid { grid-template-columns: 1fr; }
  .t-footer-grid { grid-template-columns: 1fr 1fr; }
  .t-nav-links { display: none; }
  .t-nav-cta { display: none; }
  .t-nav-toggle { display: inline-flex; }
}

@media (max-width: 560px) {
  .t-hero { padding: 56px 0 48px; }
  .t-sectors, .t-features, .t-timeline, .t-testimonials, .t-faq, .t-cta-form, .t-about { padding: 64px 0; }
  .t-feature-grid { grid-template-columns: 1fr; }
  .t-timeline-track { grid-template-columns: 1fr; }
  .t-form-row { grid-template-columns: 1fr; }
  .t-form { padding: 24px; }
  .t-footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .t-section-head { margin-bottom: 36px; }
}
