/*
Theme Name: Tab To Switch
Theme URI: http://localhost/tabtoswitch/
Author: Codex
Description: Custom landing page theme for Tab To Switch business solutions.
Version: 1.0.1
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 7.4
Text Domain: tab-to-switch
*/

:root {
  --tts-navy: #0d1b2a;
  --tts-deep: #06162f;
  --tts-blue: #1565ff;
  --tts-green: #28a745;
  --tts-slate: #6b7280;
  --tts-soft: #f5f7fa;
  --tts-border: #dfe4ef;
  --tts-white: #ffffff;
  --tts-shadow: 0 18px 44px rgba(13, 27, 42, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  margin: 0;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f7f9fc;
  color: var(--tts-navy);
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  letter-spacing: 0;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

img,
svg {
  display: block;
}

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

button {
  font: inherit;
}

a,
button,
.tts-service-card,
.tts-product-card,
.tts-workflow-card,
.tts-proof-card,
.tts-faq-item,
.tts-floating-contact__button {
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.tts-page {
  min-height: 100vh;
  padding: 0;
}

.tts-site-shell {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  background: var(--tts-white);
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.tts-header {
  position: relative;
  z-index: 10;
  background: var(--tts-white);
}

.tts-nav {
  display: flex;
  align-items: center;
  min-height: 67px;
  padding: 0 76px 0 86px;
  gap: 28px;
}

.tts-brand {
  flex: 0 0 auto;
}

.tts-brand img {
  width: 270px;
  height: auto;
}

.tts-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin-left: auto;
  color: var(--tts-navy);
  background: var(--tts-white);
  border: 1px solid var(--tts-border);
  border-radius: 8px;
  cursor: pointer;
}

.tts-menu-toggle svg {
  width: 22px;
  height: 22px;
}

.tts-menu {
  display: flex;
  align-items: center;
  gap: 35px;
  margin-left: auto;
  color: #071836;
  font-size: 14px;
  font-weight: 750;
}

.tts-menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
  white-space: nowrap;
}

.tts-menu a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 3px;
  content: "";
  background: var(--tts-green);
  border-radius: 999px;
  opacity: 0;
  transform: scaleX(0.35);
  transform-origin: center;
  transition: opacity 180ms ease, transform 180ms ease;
}

.tts-menu a.is-active,
.tts-menu a:hover {
  color: var(--tts-blue);
}

.tts-menu a.is-active::after,
.tts-menu a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.tts-menu__chevron {
  width: 10px;
  height: 10px;
}

.tts-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  margin-left: 24px;
}

.tts-call-icon {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  color: var(--tts-white);
  background: var(--tts-blue);
  border-radius: 50%;
}

.tts-call-icon svg {
  width: 18px;
  height: 18px;
}

.tts-contact__number {
  display: block;
  color: #071836;
  font-size: 16px;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
}

.tts-contact__hours {
  display: block;
  margin-top: 6px;
  color: #273247;
  font-size: 11px;
  font-weight: 500;
  white-space: nowrap;
}

.tts-quote-button,
.tts-hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 40px;
  padding: 0 28px;
  color: var(--tts-white);
  background: var(--tts-blue);
  border: 1px solid var(--tts-blue);
  border-radius: 6px;
  box-shadow: 0 10px 20px rgba(21, 101, 255, 0.18);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.tts-quote-button:hover,
.tts-hero-button:hover {
  transform: translateY(-1px);
}

.tts-quote-button:hover,
.tts-hero-button:hover,
.tts-lead-form button:hover,
.tts-chat-panel button[type="submit"]:hover {
  color: var(--tts-white);
  background: var(--tts-green);
  border-color: var(--tts-green);
  box-shadow: 0 14px 26px rgba(40, 167, 69, 0.25);
}

.tts-hero-button svg {
  width: 17px;
  height: 17px;
}

.tts-hero-button.is-outline {
  color: var(--tts-white);
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow: none;
}

.tts-hero-button.is-outline:hover {
  color: #061735;
  background: var(--tts-white);
  border-color: var(--tts-white);
}

.tts-hero {
  position: relative;
  min-height: 354px;
  overflow: hidden;
  color: var(--tts-white);
  background:
    radial-gradient(circle at 46% 56%, rgba(40, 167, 69, 0.9) 0 15px, transparent 16px),
    linear-gradient(117deg, #061531 0%, #071a37 53%, #f8fbff 53.2%, #f8fbff 100%);
}

.tts-hero::before {
  position: absolute;
  bottom: 24px;
  left: 0;
  width: 112px;
  height: 100px;
  content: "";
  opacity: 0.88;
  background-image: radial-gradient(circle, rgba(21, 101, 255, 0.75) 2px, transparent 2px);
  background-size: 17px 17px;
}

.tts-hero__media {
  position: absolute;
  z-index: 1;
  inset: 0 0 0 auto;
  width: 56.2%;
  height: 100%;
}

.tts-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.tts-hero__content {
  position: relative;
  z-index: 2;
  width: 51%;
  max-width: 620px;
  padding: 40px 0 0 126px;
}

.tts-hero h1 {
  max-width: 500px;
  margin: 0;
  color: var(--tts-white);
  font-size: 48px;
  font-weight: 900;
  line-height: 1.03;
}

.tts-text-green {
  color: var(--tts-green);
}

.tts-text-blue {
  color: var(--tts-blue);
}

.tts-hero p {
  max-width: 520px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
}

.tts-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 29px;
  margin-top: 28px;
}

.tts-hero__actions .tts-hero-button {
  min-width: 158px;
  min-height: 39px;
}

.tts-trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  color: var(--tts-white);
  background: #dfe7f3;
}

.tts-trust-item {
  min-height: 96px;
  padding: 22px 28px;
  background: #061735;
  text-align: center;
}

.tts-trust-item strong,
.tts-trust-item span {
  display: block;
}

.tts-trust-item strong {
  color: var(--tts-green);
  font-size: 28px;
  font-weight: 950;
  line-height: 1.1;
}

.tts-trust-item span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 750;
  text-transform: uppercase;
}

.tts-services {
  padding: 14px 78px 10px;
  background: var(--tts-white);
}

.tts-section-label {
  display: block;
  margin: 0;
  color: var(--tts-green);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.tts-services h2 {
  margin: 6px 0 0;
  color: #061735;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
}

.tts-section-heading {
  max-width: 820px;
  margin: 0 auto 32px;
  text-align: center;
}

.tts-section-heading h2 {
  margin: 8px 0 0;
  color: #061735;
  font-size: 34px;
  font-weight: 950;
  line-height: 1.16;
}

.tts-section-heading p:not(.tts-section-label) {
  max-width: 690px;
  margin: 14px auto 0;
  color: #647084;
  font-size: 16px;
  line-height: 1.55;
}

.tts-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1120px;
  margin: 18px auto 0;
}

.tts-service-card {
  display: flex;
  min-height: 224px;
  flex-direction: column;
  align-items: center;
  padding: 13px 19px 12px;
  background: var(--tts-white);
  border: 1px solid #eef1f6;
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(13, 27, 42, 0.08);
  text-align: center;
}

.tts-service-card:hover {
  border-color: rgba(21, 101, 255, 0.28);
  box-shadow: 0 18px 36px rgba(13, 27, 42, 0.13);
  transform: translateY(-4px);
}

.tts-service-icon {
  display: grid;
  width: 51px;
  height: 51px;
  place-items: center;
  color: var(--tts-white);
  background: var(--tts-blue);
  border-radius: 50%;
}

.tts-service-icon svg {
  width: 27px;
  height: 27px;
  stroke-width: 2.2;
}

.tts-service-card h3 {
  min-height: auto;
  margin: 13px 0 0;
  color: #071836;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.15;
}

.tts-service-card p {
  min-height: auto;
  margin: 9px 0 0;
  color: #172237;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
}

.tts-learn-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  color: var(--tts-blue);
  font-size: 12px;
  font-weight: 850;
}

.tts-learn-link:hover {
  color: var(--tts-green);
}

.tts-learn-link svg {
  width: 13px;
  height: 13px;
}

.tts-icon-green {
  background: var(--tts-green);
}

.tts-icon-orange {
  background: #ff7a13;
}

.tts-icon-indigo {
  background: #3272f4;
}

.tts-icon-teal {
  background: #0897ad;
}

.tts-icon-purple {
  background: #7c4bf2;
}

.tts-icon-pink {
  background: #ff4f86;
}

.tts-feature-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 19px 90px 23px;
  color: var(--tts-white);
  background:
    radial-gradient(circle at 90% 26%, rgba(21, 101, 255, 0.24), transparent 32%),
    linear-gradient(106deg, #071936 0%, #05152f 52%, #08214a 100%);
}

.tts-feature {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 19px;
  align-items: start;
  padding: 0 30px;
}

.tts-feature:first-child {
  padding-left: 0;
}

.tts-feature:not(:last-child)::after {
  position: absolute;
  top: 6px;
  right: 0;
  width: 1px;
  height: 53px;
  content: "";
  background: rgba(255, 255, 255, 0.38);
}

.tts-feature__icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  color: var(--tts-blue);
  border: 3px solid var(--tts-blue);
  border-radius: 50%;
}

.tts-feature:nth-child(even) .tts-feature__icon {
  color: var(--tts-green);
  border-color: var(--tts-green);
}

.tts-feature__icon svg {
  width: 30px;
  height: 30px;
  stroke-width: 2.2;
}

.tts-feature h3 {
  margin: 0;
  color: var(--tts-white);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
}

.tts-feature p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.42;
}

.tts-workflow-section,
.tts-proof-section,
.tts-faq-section {
  padding: 56px 76px 62px;
  background: #f7f9fc;
}

.tts-workflow-grid,
.tts-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}

.tts-workflow-card,
.tts-proof-card,
.tts-faq-item {
  background: var(--tts-white);
  border: 1px solid #e1e8f3;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(13, 27, 42, 0.08);
}

.tts-workflow-card {
  position: relative;
  min-height: 245px;
  padding: 30px;
  overflow: hidden;
}

.tts-workflow-card::after {
  position: absolute;
  right: -32px;
  bottom: -42px;
  width: 138px;
  height: 138px;
  content: "";
  background: rgba(21, 101, 255, 0.08);
  border-radius: 50%;
}

.tts-workflow-card span {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--tts-white);
  background: var(--tts-blue);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 950;
}

.tts-workflow-card h3,
.tts-proof-card h3,
.tts-faq-item h3 {
  margin: 22px 0 0;
  color: #061735;
  font-size: 22px;
  font-weight: 950;
  line-height: 1.2;
}

.tts-workflow-card p,
.tts-proof-card p,
.tts-faq-item p {
  margin: 14px 0 0;
  color: #5d6675;
  font-size: 15px;
  line-height: 1.58;
}

.tts-workflow-card:hover,
.tts-proof-card:hover,
.tts-faq-item:hover {
  border-color: rgba(21, 101, 255, 0.28);
  box-shadow: 0 18px 42px rgba(13, 27, 42, 0.12);
  transform: translateY(-4px);
}

.tts-partner-section {
  padding: 46px 76px 54px;
  background: var(--tts-white);
}

.tts-partner-card {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr) minmax(170px, 0.32fr);
  gap: 24px;
  align-items: center;
  max-width: 1260px;
  margin: 0 auto;
  padding: 24px;
  color: var(--tts-white);
  background:
    linear-gradient(90deg, rgba(6, 23, 53, 0.98), rgba(8, 43, 103, 0.96)),
    #061735;
  border-radius: 8px;
  box-shadow: 0 22px 48px rgba(13, 27, 42, 0.18);
}

.tts-partner-logo {
  display: grid;
  min-height: 156px;
  place-items: center;
  gap: 8px;
  padding: 24px;
  color: #061735;
  background:
    linear-gradient(135deg, rgba(21, 101, 255, 0.10), rgba(40, 167, 69, 0.08)),
    var(--tts-white);
  border-radius: 8px;
  text-align: center;
}

.tts-partner-logo strong,
.tts-partner-logo span {
  display: block;
}

.tts-partner-logo strong {
  font-size: 24px;
  font-weight: 950;
  line-height: 1.05;
  text-transform: uppercase;
}

.tts-partner-logo span {
  color: var(--tts-blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.tts-partner-label {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  margin: 0;
  padding: 0 12px;
  color: var(--tts-green);
  background: rgba(40, 167, 69, 0.12);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.tts-partner-copy h2 {
  margin: 16px 0 0;
  color: var(--tts-white);
  font-size: 31px;
  font-weight: 950;
  line-height: 1.15;
}

.tts-partner-copy p:not(.tts-partner-label) {
  max-width: 710px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.55;
}

.tts-partner-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.tts-partner-points div {
  min-height: 82px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.tts-partner-points strong,
.tts-partner-points span {
  display: block;
}

.tts-partner-points strong {
  color: var(--tts-white);
  font-size: 14px;
  font-weight: 900;
}

.tts-partner-points span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  line-height: 1.35;
}

.tts-partner-actions {
  display: grid;
  gap: 14px;
}

.tts-partner-actions a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: var(--tts-white);
  background: var(--tts-blue);
  border: 1px solid var(--tts-blue);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.tts-partner-actions a:hover {
  color: var(--tts-white);
  background: var(--tts-green);
  border-color: var(--tts-green);
  transform: translateY(-1px);
}

.tts-partner-actions a.is-secondary {
  color: #061735;
  background: var(--tts-white);
  border-color: var(--tts-white);
}

.tts-partner-actions a.is-secondary:hover {
  color: var(--tts-white);
  background: #061735;
  border-color: rgba(255, 255, 255, 0.36);
}

.tts-products,
.tts-card-section {
  padding: 46px 76px 54px;
  background: var(--tts-white);
}

.tts-products {
  padding-top: 0;
}

.tts-products__intro {
  margin: 0 -76px 34px;
  padding: 26px 80px 42px;
  color: var(--tts-white);
  background: #4383ef;
  text-align: center;
}

.tts-products__intro .tts-section-label {
  color: #08234e;
}

.tts-products__intro h2 {
  max-width: 930px;
  margin: 18px auto 0;
  color: var(--tts-white);
  font-size: 31px;
  font-weight: 900;
  line-height: 1.25;
}

.tts-products__intro p:not(.tts-section-label) {
  max-width: 1060px;
  margin: 22px auto 0;
  color: #061735;
  font-size: 16px;
  line-height: 1.55;
}

.tts-product-grid {
  display: grid;
  gap: 42px;
  max-width: 1260px;
  margin: 0 auto;
}

.tts-product-grid.is-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tts-product-grid.is-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tts-product-card {
  display: flex;
  min-height: 560px;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.tts-product-card img {
  width: 100%;
  height: 168px;
  object-fit: cover;
  object-position: center;
}

.tts-product-card.is-large img {
  height: 255px;
}

.tts-product-card h3 {
  margin: 28px 0 0;
  color: #061735;
  font-size: 35px;
  font-weight: 900;
  line-height: 1.25;
}

.tts-product-card p {
  margin: 28px 0 0;
  color: #707782;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.58;
}

.tts-product-card strong {
  color: #626a75;
  font-weight: 850;
}

.tts-pill-button,
.tts-dark-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  min-width: 150px;
  margin-top: auto;
  padding: 0 26px;
  color: var(--tts-white);
  background: #061b46;
  border: 0;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 850;
  line-height: 1;
}

.tts-pill-button:hover,
.tts-dark-button:hover,
.tts-tariff__buttons a:hover {
  color: var(--tts-white);
  background: var(--tts-green);
  box-shadow: 0 16px 28px rgba(40, 167, 69, 0.25);
  transform: translateY(-2px);
}

.tts-product-card:hover {
  transform: translateY(-5px);
}

.tts-card-section {
  padding-top: 40px;
}

.tts-card-section.is-banking {
  padding-bottom: 64px;
}

.tts-bill-cta,
.tts-solution-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
  gap: 58px;
  align-items: center;
  padding: 54px 132px 62px;
  color: var(--tts-white);
  background: #315ab5;
}

.tts-bill-cta__content {
  max-width: 630px;
}

.tts-highlight {
  margin: 0 0 28px;
  color: #fff56a;
  font-size: 29px;
  font-weight: 900;
  line-height: 1.2;
}

.tts-bill-cta h2,
.tts-solution-cta h2 {
  margin: 0;
  color: var(--tts-white);
  font-size: 32px;
  font-weight: 900;
  line-height: 1.36;
}

.tts-bill-cta p:not(.tts-highlight),
.tts-solution-cta p {
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.93);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.55;
}

.tts-bill-cta .tts-dark-button,
.tts-solution-cta .tts-dark-button {
  min-width: 180px;
  margin-top: 34px;
  border-radius: 8px;
  text-transform: uppercase;
}

.tts-bill-cta__image img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.tts-tariff {
  padding: 62px 170px;
  background: var(--tts-white);
  text-align: center;
}

.tts-tariff__kicker {
  margin: 0;
  color: #061735;
  font-size: 32px;
  font-weight: 900;
  line-height: 1.25;
}

.tts-tariff h2 {
  margin: 8px 0 0;
  color: #4383ef;
  font-size: 35px;
  font-weight: 900;
  line-height: 1.25;
}

.tts-tariff p:not(.tts-tariff__kicker) {
  max-width: 1050px;
  margin: 28px auto 0;
  color: #707782;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.58;
}

.tts-tariff__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  margin-top: 24px;
}

.tts-tariff__buttons a {
  min-width: 255px;
  padding: 16px 24px;
  color: var(--tts-white);
  border-radius: 4px;
  font-size: 16px;
  font-weight: 850;
}

.tts-tariff__buttons .is-blue {
  background: #4383ef;
}

.tts-tariff__buttons .is-dark {
  background: #17114b;
}

.tts-solution-cta {
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.7fr);
  background: #4383ef;
}

.tts-solution-cta__copy {
  max-width: 620px;
}

.tts-solution-cta__graphic {
  display: grid;
  place-items: center;
}

.tts-solution-cta__graphic img {
  width: min(360px, 100%);
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 14px rgba(255, 255, 255, 0.18);
}

.tts-proof-section {
  background: var(--tts-white);
}

.tts-proof-card {
  min-height: 250px;
  padding: 30px;
}

.tts-proof-card svg {
  width: 44px;
  height: 44px;
  padding: 8px;
  color: var(--tts-green);
  background: #edf9f1;
  border-radius: 50%;
}

.tts-faq-section {
  background: #f7f9fc;
}

.tts-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}

.tts-faq-item {
  min-height: 170px;
  padding: 26px;
}

.tts-faq-item h3 {
  margin-top: 0;
  font-size: 19px;
}

.tts-contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 48px;
  padding: 58px 86px;
  background: #f7f9fc;
}

.tts-contact-section__copy h2 {
  margin: 8px 0 0;
  color: #061735;
  font-size: 33px;
  font-weight: 900;
  line-height: 1.2;
}

.tts-contact-section__copy p:not(.tts-section-label) {
  max-width: 500px;
  margin: 16px 0 0;
  color: #5d6675;
  font-size: 16px;
  line-height: 1.55;
}

.tts-contact-section__copy .tts-form-alert {
  display: inline-block;
  padding: 10px 14px;
  color: #0b5b22;
  background: #e9f8ee;
  border: 1px solid #bde7c9;
  border-radius: 6px;
  font-weight: 800;
}

.tts-contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.tts-contact-methods a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #061735;
  font-weight: 800;
}

.tts-contact-methods svg {
  width: 20px;
  height: 20px;
  color: var(--tts-blue);
}

.tts-lead-form,
.tts-chat-panel form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.tts-field-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.tts-lead-form {
  padding: 24px;
  background: var(--tts-white);
  border: 1px solid #e4e9f2;
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(13, 27, 42, 0.08);
}

.tts-lead-form label,
.tts-chat-panel label {
  display: grid;
  gap: 6px;
  color: #061735;
  font-size: 13px;
  font-weight: 850;
}

.tts-lead-form .is-wide {
  grid-column: 1 / -1;
}

.tts-lead-form input,
.tts-lead-form select,
.tts-lead-form textarea,
.tts-chat-panel input,
.tts-chat-panel textarea {
  width: 100%;
  min-height: 45px;
  padding: 10px 12px;
  color: #061735;
  background: #f8fafc;
  border: 1px solid #cfd8e6;
  border-radius: 6px;
  font: inherit;
}

.tts-lead-form textarea,
.tts-chat-panel textarea {
  resize: vertical;
}

.tts-lead-form button {
  grid-column: 1 / -1;
  justify-self: start;
}

.tts-form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: #647084;
  font-size: 12px;
  line-height: 1.45;
}

.tts-footer {
  color: var(--tts-white);
  background: #121638;
}

.tts-footer__inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr 0.8fr 0.7fr;
  gap: 48px;
  align-items: start;
  padding: 70px 110px;
}

.tts-footer__brand {
  display: grid;
  width: 260px;
  min-height: 160px;
  place-items: center;
  background: var(--tts-white);
  border-radius: 42px;
}

.tts-footer__brand img {
  width: 220px;
}

.tts-footer h2 {
  margin: 0 0 24px;
  color: var(--tts-white);
  font-size: 32px;
  font-weight: 900;
}

.tts-footer p,
.tts-footer a {
  display: block;
  margin: 9px 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  line-height: 1.45;
}

.tts-social {
  display: flex;
  gap: 10px;
}

.tts-social a {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  margin: 0;
  color: var(--tts-white);
  background: #020414;
  border-radius: 4px;
}

.tts-social svg {
  width: 21px;
  height: 21px;
}

.tts-footer__copyright {
  margin: 0;
  padding: 30px;
  background: rgba(3, 7, 31, 0.24);
  text-align: center;
  text-transform: uppercase;
}

.tts-floating-contact {
  position: fixed;
  z-index: 60;
  right: 28px;
  bottom: 24px;
  display: grid;
  gap: 12px;
}

.tts-floating-contact__button {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--tts-white);
  background: #2457df;
  border: 0;
  border-radius: 50%;
  box-shadow: 0 12px 24px rgba(13, 27, 42, 0.2);
  cursor: pointer;
}

.tts-floating-contact__button svg {
  width: 29px;
  height: 29px;
}

.tts-floating-contact__button.is-phone,
.tts-floating-contact__button.is-whatsapp {
  background: #55d980;
}

.tts-floating-contact__button.is-email {
  background: #f05261;
}

.tts-floating-contact__button.is-sms {
  background: #5268d7;
}

.tts-chat-panel {
  position: fixed;
  z-index: 70;
  right: 100px;
  bottom: 24px;
  display: none;
  width: min(360px, calc(100vw - 28px));
  padding: 18px;
  background: var(--tts-white);
  border: 1px solid #d9e1ee;
  border-radius: 8px;
  box-shadow: 0 20px 54px rgba(13, 27, 42, 0.26);
}

.tts-chat-panel.is-open {
  display: block;
}

.tts-chat-panel__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.tts-chat-panel__header strong,
.tts-chat-panel__header span {
  display: block;
}

.tts-chat-panel__header strong {
  color: #061735;
  font-size: 18px;
  font-weight: 900;
}

.tts-chat-panel__header span,
.tts-chat-panel p {
  color: #647084;
  font-size: 13px;
  line-height: 1.45;
}

.tts-chat-panel__quick {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 12px 0;
}

.tts-chat-panel__quick a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #061735;
  background: #f2f5fa;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 850;
}

.tts-chat-panel__quick svg {
  width: 16px;
  height: 16px;
  color: var(--tts-blue);
}

.tts-chat-panel__header button {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  padding: 0;
  color: #061735;
  background: #f2f5fa;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.tts-chat-panel__header svg {
  width: 20px;
  height: 20px;
}

.tts-chat-panel form {
  grid-template-columns: 1fr;
  margin-top: 14px;
}

.tts-chat-panel button[type="submit"] {
  min-height: 44px;
  color: var(--tts-white);
  background: var(--tts-blue);
  border: 0;
  border-radius: 6px;
  font-weight: 850;
  cursor: pointer;
}

.tts-page-main {
  background: var(--tts-white);
}

.tts-page-hero {
  padding: 74px 86px 82px;
  color: var(--tts-white);
  background:
    radial-gradient(circle at 82% 22%, rgba(40, 167, 69, 0.24), transparent 25%),
    linear-gradient(118deg, #061735 0%, #0a2b67 62%, #1565ff 100%);
}

.tts-page-hero p,
.tts-page-hero span {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

.tts-page-hero h1 {
  max-width: 860px;
  margin: 12px 0 14px;
  color: var(--tts-white);
  font-size: 48px;
  font-weight: 900;
  line-height: 1.08;
}

.tts-page-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 72px 78px;
}

.tts-copy-block {
  max-width: 980px;
  margin: 0 auto;
}

.tts-copy-block h2,
.tts-shortcode-contact h2 {
  margin: 0 0 18px;
  color: #061735;
  font-size: 34px;
  font-weight: 900;
  line-height: 1.18;
}

.tts-copy-block p,
.tts-shortcode-contact p {
  color: #5e6877;
  font-size: 18px;
  line-height: 1.68;
}

.tts-legal-copy h3 {
  margin: 30px 0 8px;
  color: #061735;
  font-size: 22px;
  font-weight: 900;
}

.tts-legal-copy a {
  color: var(--tts-blue);
  font-weight: 850;
}

.tts-stat-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.tts-stat-row div {
  padding: 24px;
  background: #f5f8fc;
  border: 1px solid #e1e8f3;
  border-radius: 8px;
}

.tts-stat-row strong,
.tts-stat-row span {
  display: block;
}

.tts-stat-row strong {
  color: var(--tts-blue);
  font-size: 24px;
  font-weight: 900;
}

.tts-stat-row span {
  margin-top: 6px;
  color: #5d6675;
  font-weight: 700;
}

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

.tts-subpage-grid.is-benefits {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 32px 0;
}

.tts-subpage-card {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
  background: #ffffff;
  border: 1px solid #e2e9f4;
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(13, 27, 42, 0.08);
}

.tts-subpage-card:hover {
  border-color: rgba(21, 101, 255, 0.28);
  transform: translateY(-4px);
}

.tts-subpage-card h2 {
  margin: 18px 0 0;
  color: #061735;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.2;
}

.tts-subpage-card p {
  margin: 14px 0 24px;
  color: #5d6675;
  font-size: 16px;
  line-height: 1.55;
}

.tts-page-products {
  max-width: none;
}

.tts-shortcode-contact {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: 42px;
  align-items: start;
}

.tts-contact-methods a:hover,
.tts-footer a:hover,
.tts-chat-panel__quick a:hover {
  color: var(--tts-blue);
}

@keyframes tts-chat-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(21, 101, 255, 0.38), 0 12px 24px rgba(13, 27, 42, 0.2);
    transform: translateY(0);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(21, 101, 255, 0), 0 14px 28px rgba(13, 27, 42, 0.22);
    transform: translateY(-2px);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(21, 101, 255, 0), 0 12px 24px rgba(13, 27, 42, 0.2);
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .tts-floating-contact__button.is-chat {
    animation: tts-chat-pulse 2.4s ease-in-out infinite;
  }
}

.tts-floating-contact__button:hover {
  transform: translateY(-3px) scale(1.04);
}

.tts-floating-contact__button.is-chat:hover {
  background: var(--tts-green);
}

@media (max-width: 1320px) {
  .tts-nav {
    padding: 0 22px;
    gap: 16px;
  }

  .tts-brand img {
    width: 230px;
  }

  .tts-menu {
    gap: 13px;
    font-size: 12.5px;
  }

  .tts-contact {
    gap: 8px;
    margin-left: 0;
  }

  .tts-contact__number {
    font-size: 14px;
  }

  .tts-contact__hours {
    font-size: 10px;
  }

  .tts-quote-button {
    padding-right: 14px;
    padding-left: 14px;
  }

  .tts-hero__content {
    padding-left: 76px;
  }

  .tts-feature-strip {
    padding-right: 48px;
    padding-left: 48px;
  }

  .tts-workflow-section,
  .tts-proof-section,
  .tts-faq-section {
    padding-right: 48px;
    padding-left: 48px;
  }

  .tts-partner-section {
    padding-right: 48px;
    padding-left: 48px;
  }

  .tts-products,
  .tts-card-section {
    padding-right: 48px;
    padding-left: 48px;
  }

  .tts-products__intro {
    margin-right: -48px;
    margin-left: -48px;
  }

  .tts-bill-cta,
  .tts-solution-cta {
    padding-right: 70px;
    padding-left: 70px;
  }

  .tts-tariff {
    padding-right: 90px;
    padding-left: 90px;
  }

  .tts-footer__inner {
    padding-right: 70px;
    padding-left: 70px;
  }

  .tts-floating-contact {
    right: 18px;
    bottom: 18px;
  }

  .tts-floating-contact a {
    display: none;
  }

  .tts-floating-contact__button {
    width: 52px;
    height: 52px;
  }

  .tts-floating-contact__button svg {
    width: 25px;
    height: 25px;
  }
}

@media (max-width: 1120px) {
  .tts-nav {
    min-height: 68px;
  }

  .tts-menu-toggle {
    display: inline-flex;
  }

  .tts-menu {
    position: absolute;
    top: 68px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    margin: 0;
    padding: 14px;
    background: var(--tts-white);
    border: 1px solid var(--tts-border);
    border-radius: 8px;
    box-shadow: 0 18px 38px rgba(13, 27, 42, 0.15);
  }

  .tts-menu.is-open {
    display: flex;
  }

  .tts-menu a {
    min-height: 40px;
    padding: 0 8px;
  }

  .tts-contact,
  .tts-quote-button {
    display: none;
  }

  .tts-hero__content {
    width: 54%;
    padding-left: 48px;
  }

  .tts-hero h1 {
    max-width: 430px;
    font-size: 42px;
  }

  .tts-hero p {
    max-width: 430px;
    font-size: 16px;
  }

  .tts-hero__actions {
    gap: 16px;
  }

  .tts-floating-contact {
    right: 18px;
    bottom: 18px;
  }

  .tts-floating-contact a {
    display: none;
  }

  .tts-floating-contact__button {
    width: 52px;
    height: 52px;
  }

  .tts-floating-contact__button svg {
    width: 25px;
    height: 25px;
  }

  .tts-chat-panel {
    right: 18px;
    bottom: 86px;
  }
}

@media (max-width: 1100px) {
  .tts-service-grid {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
  }

  .tts-product-grid.is-four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tts-product-grid.is-three {
    grid-template-columns: 1fr;
  }

  .tts-workflow-grid,
  .tts-proof-grid {
    grid-template-columns: 1fr;
  }

  .tts-product-card,
  .tts-product-card.is-large {
    min-height: auto;
  }

  .tts-product-card img,
  .tts-product-card.is-large img {
    height: 260px;
  }

  .tts-subpage-grid,
  .tts-shortcode-contact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 980px) {
  .tts-page {
    padding: 0;
  }

  .tts-nav {
    min-height: 68px;
  }

  .tts-menu-toggle {
    display: inline-flex;
  }

  .tts-menu {
    position: absolute;
    top: 68px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    margin: 0;
    padding: 14px;
    background: var(--tts-white);
    border: 1px solid var(--tts-border);
    border-radius: 8px;
    box-shadow: 0 18px 38px rgba(13, 27, 42, 0.15);
  }

  .tts-menu.is-open {
    display: flex;
  }

  .tts-menu a {
    min-height: 40px;
    padding: 0 8px;
  }

  .tts-contact,
  .tts-quote-button {
    display: none;
  }

  .tts-hero {
    display: flex;
    min-height: auto;
    flex-direction: column;
    background: #061531;
  }

  .tts-hero__content {
    width: 100%;
    max-width: none;
    padding: 42px 42px 34px;
  }

  .tts-hero__media {
    position: relative;
    width: 100%;
    min-height: 320px;
  }

  .tts-hero h1 {
    font-size: 42px;
  }

  .tts-services {
    padding-right: 34px;
    padding-left: 34px;
  }

  .tts-service-grid {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
  }

  .tts-feature-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 25px;
  }

  .tts-feature:nth-child(2)::after {
    display: none;
  }

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

  .tts-faq-grid {
    grid-template-columns: 1fr;
  }

  .tts-partner-card {
    grid-template-columns: 1fr;
  }

  .tts-partner-logo {
    min-height: 140px;
  }

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

  .tts-bill-cta,
  .tts-solution-cta,
  .tts-contact-section {
    grid-template-columns: 1fr;
  }

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

  .tts-page-hero {
    padding: 58px 42px 64px;
  }

  .tts-page-content {
    padding: 48px 34px 62px;
  }

  .tts-shortcode-contact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .tts-page {
    padding: 0;
  }

  .tts-site-shell {
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .tts-nav {
    padding: 0 18px;
  }

  .tts-brand img {
    width: 205px;
  }

  .tts-hero__content {
    padding: 34px 22px 28px;
  }

  .tts-hero h1 {
    font-size: 34px;
    line-height: 1.08;
  }

  .tts-hero p {
    font-size: 15px;
  }

  .tts-hero__actions {
    gap: 12px;
  }

  .tts-hero__actions .tts-hero-button {
    width: 100%;
  }

  .tts-hero__media {
    min-height: 250px;
  }

  .tts-services {
    padding: 18px 18px 20px;
  }

  .tts-services h2 {
    font-size: 24px;
  }

  .tts-service-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .tts-service-card {
    min-height: 190px;
  }

  .tts-feature-strip {
    grid-template-columns: 1fr;
    padding: 24px 22px 28px;
  }

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

  .tts-trust-item {
    min-height: 84px;
    padding: 18px 20px;
  }

  .tts-workflow-section,
  .tts-proof-section,
  .tts-faq-section {
    padding: 34px 18px;
  }

  .tts-section-heading {
    margin-bottom: 24px;
  }

  .tts-section-heading h2 {
    font-size: 25px;
  }

  .tts-workflow-card,
  .tts-proof-card,
  .tts-faq-item {
    min-height: auto;
    padding: 22px;
  }

  .tts-feature,
  .tts-feature:first-child {
    padding: 0;
  }

  .tts-feature::after {
    display: none;
  }

  .tts-partner-section {
    padding: 28px 18px;
  }

  .tts-partner-card {
    gap: 18px;
    padding: 18px;
  }

  .tts-partner-copy h2 {
    font-size: 26px;
  }

  .tts-partner-points,
  .tts-partner-actions {
    grid-template-columns: 1fr;
  }

  .tts-partner-actions a {
    white-space: normal;
    text-align: center;
  }

  .tts-products,
  .tts-card-section,
  .tts-contact-section {
    padding: 28px 18px;
  }

  .tts-products__intro {
    margin: 0 -18px 26px;
    padding: 26px 18px 32px;
  }

  .tts-products__intro h2,
  .tts-contact-section__copy h2 {
    font-size: 25px;
  }

  .tts-product-grid,
  .tts-product-grid.is-four,
  .tts-product-grid.is-three {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .tts-product-card h3 {
    font-size: 28px;
  }

  .tts-product-card p {
    font-size: 16px;
  }

  .tts-bill-cta,
  .tts-solution-cta,
  .tts-tariff {
    padding: 34px 20px;
  }

  .tts-bill-cta h2,
  .tts-solution-cta h2,
  .tts-tariff__kicker,
  .tts-tariff h2 {
    font-size: 25px;
  }

  .tts-lead-form {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .tts-footer__inner {
    grid-template-columns: 1fr;
    padding: 42px 22px;
  }

  .tts-footer__brand {
    width: 100%;
    max-width: 260px;
  }

  .tts-page-hero {
    padding: 42px 22px 46px;
  }

  .tts-page-hero h1 {
    font-size: 34px;
  }

  .tts-page-content {
    padding: 34px 18px 48px;
  }

  .tts-subpage-grid,
  .tts-subpage-grid.is-benefits,
  .tts-shortcode-contact,
  .tts-stat-row {
    grid-template-columns: 1fr;
  }

  .tts-copy-block h2,
  .tts-shortcode-contact h2 {
    font-size: 27px;
  }

  .tts-floating-contact {
    right: 14px;
    bottom: 14px;
    padding: 0;
    background: transparent;
    border: 0;
    transform: none;
    box-shadow: none;
  }

  .tts-floating-contact a {
    display: none;
  }

  .tts-floating-contact__button {
    width: 44px;
    height: 44px;
    box-shadow: none;
  }

  .tts-floating-contact__button svg {
    width: 22px;
    height: 22px;
  }

  .tts-chat-panel {
    right: 14px;
    bottom: 78px;
  }
}
