:root {
  --brand: #0078c8;
  --brand-dark: #024188;
  --brand-light: #65b7cc;
  --ink: #0a1628;
  --slate-50: #f8f9fc;
  --slate-100: #f1f5f9;
  --slate-200: #e5e7eb;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
}

/* ----- Base ------------------------------------------------------------ */
html {
  scroll-behavior: smooth;
}

body {
  font-feature-settings: "cv11", "ss01";
  -webkit-font-smoothing: antialiased;
  font-family: "Montserrat", sans-serif;
  color: var(--ink);
  font-size: 14px;
}

@media (min-width: 1601px) {
  body {
    font-size: 16px;
  }
}

/* Heading family — heavier, rounder than Inter, matches the Figma title weight. */
h1,
h2,
h3,
.tv-display,
.tv-h-display {
  font-family: "Montserrat", sans-serif;
  letter-spacing: -0.01em;
}

h1,
h2 {
  font-weight: 700;
}

h3 {
  font-weight: 700;
}

/* Headings default to brand-dark (matches Figma colorway). */
.tv-h-dark {
  color: var(--brand-dark);
}

/* ---- Header ----------------------------------------------------------- */
.tv-header {
  transition: padding-top 0.25s ease;
}

.tv-header.tv-header--scrolled {
  padding-top: 0;
}

/* ==========================================================================
   Tax Velocity — Header / Resources dropdown
   APPEND this to your existing css/styles.css.
   Pure CSS — no Tailwind arbitrary values needed.
   ========================================================================== */

/* ----- Nav link base ---------------------------------------------------- */
.tv-nav-link {
  color: rgba(10, 22, 40, 0.85);
  transition: color 0.2s;
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.tv-nav-link:hover {
  color: #0078c8;
}

.tv-nav-link.is-active {
  color: #0078c8;
  font-weight: 600;
}

/* ==========================================================================
   1. DESKTOP DROPDOWN
   ========================================================================== */
.tv-dropdown {
  position: relative;
}

.tv-dropdown__trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.tv-dropdown__chev {
  color: #94a3b8;
  transition:
    transform 0.2s ease,
    color 0.2s ease;
}

.tv-dropdown.is-open .tv-dropdown__chev {
  transform: rotate(180deg);
  color: #0078c8;
}

.tv-dropdown:hover .tv-dropdown__trigger,
.tv-dropdown.is-open .tv-dropdown__trigger {
  color: #0078c8;
}

.tv-dropdown:hover .tv-dropdown__chev {
  color: #0078c8;
}

/* The panel */
.tv-dropdown__panel {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  width: 200px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow:
    0 10px 30px rgba(2, 65, 136, 0.1),
    0 2px 8px rgba(0, 0, 0, 0.04);
  padding: 8px;
  z-index: 60;

  /* Hidden by default */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0s linear 0.18s;
}

/* Small triangle pointer */
.tv-dropdown__panel::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: #fff;
  border-top: 1px solid #e5e7eb;
  border-left: 1px solid #e5e7eb;
}

/* Hoverable bridge so cursor can travel from trigger to panel without closing */
.tv-dropdown__panel::after {
  content: "";
  position: absolute;
  top: -18px;
  left: 0;
  right: 0;
  height: 18px;
}

/* Open states — both hover (desktop) and JS click (.is-open) */
.tv-dropdown:hover .tv-dropdown__panel,
.tv-dropdown.is-open .tv-dropdown__panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0s linear 0s;
}

/* Item */
.tv-dropdown__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 8px;
  text-decoration: none;
  color: #0a1628;
  transition: background 0.15s ease;
}

.tv-dropdown__item:hover {
  background: #f4f8fc;
}

.tv-dropdown__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #eff6fc;
  color: #0078c8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
}

.tv-dropdown__item:hover .tv-dropdown__icon {
  background: #0078c8;
  color: #fff;
}

.tv-dropdown__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.tv-dropdown__title {
  font-size: 16px;
  font-weight: 400;
  color: #0a1628;
  line-height: 1.3;
}

.tv-dropdown__sub {
  font-size: 12.5px;
  color: #64748b;
  line-height: 1.4;
  font-weight: 400;
}

/* On touch devices, hover open isn't reliable — disable it so JS click controls things */
@media (hover: none) {
  .tv-dropdown:hover .tv-dropdown__panel {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-50%) translateY(-6px);
  }

  .tv-dropdown.is-open .tv-dropdown__panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
}

/* ==========================================================================
   2. MOBILE MENU
   ========================================================================== */
.tv-mobile-menu {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.tv-mobile-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 10px;
  border-radius: 8px;
  color: rgba(10, 22, 40, 0.85);
  text-decoration: none;
  transition:
    background 0.15s,
    color 0.15s;
}

.tv-mobile-link:hover,
.tv-mobile-link.is-active {
  background: #f4f8fc;
  color: #0078c8;
}

.tv-mobile-link.is-active {
  font-weight: 600;
}

/* Collapsible group (uses <details>) */
.tv-mobile-group {
  display: block;
}

.tv-mobile-group__summary {
  list-style: none;
  cursor: pointer;
  user-select: none;
}

.tv-mobile-group__summary::-webkit-details-marker {
  display: none;
}

.tv-mobile-group__summary::marker {
  display: none;
}

.tv-mobile-group__chev {
  color: #94a3b8;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.tv-mobile-group[open] .tv-mobile-group__chev {
  transform: rotate(180deg);
  color: #0078c8;
}

.tv-mobile-group[open] .tv-mobile-group__summary {
  color: #0078c8;
}

.tv-mobile-group__panel {
  padding: 4px 0 6px 14px;
  margin-left: 4px;
  border-left: 2px solid #e5f1ff;
  display: flex;
  flex-direction: column;
}

.tv-mobile-sublink {
  display: block;
  padding: 9px 12px;
  border-radius: 6px;
  font-size: 14px;
  color: #4a5c6f;
  text-decoration: none;
  transition:
    background 0.15s,
    color 0.15s;
}

.tv-mobile-sublink:hover {
  background: #f4f8fc;
  color: #0078c8;
}

/* ==========================================================================
   3. REQUEST DEMO DROPDOWN
   ========================================================================== */
.tv-demo-dropdown__chev {
  transition: transform 0.22s ease;
  flex-shrink: 0;
}

.tv-demo-dropdown.is-open .tv-demo-dropdown__chev {
  transform: rotate(180deg);
}

/* ---- Hero floating pills --------------------------------------------- */
@keyframes tvFloatPill {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes tvPopIn {
  0% {
    transform: scale(0.85);
    opacity: 0;
  }

  60% {
    transform: scale(1.05);
    opacity: 1;
  }

  100% {
    transform: scale(1);
  }
}

.tv-pop {
  animation:
    tvPopIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both,
    tvFloatPill 5s ease-in-out infinite;
}

.tv-pop[data-d="1"] {
  animation-delay: 0.1s, 0.7s;
}

.tv-pop[data-d="2"] {
  animation-delay: 0.25s, 1.4s;
}

.tv-pop[data-d="3"] {
  animation-delay: 0.4s, 2.1s;
}

.tv-pop[data-d="4"] {
  animation-delay: 0.55s, 2.8s;
}

/* ---- Cards: lift on hover -------------------------------------------- */
.tv-problem-card,
.tv-feature-card,
.tv-why-card,
.tv-article-card {
  transition: all 0.25s ease;
  will-change: transform;
}

.tv-feature-card {
  background: linear-gradient(130.35deg, #f6f9ff 0%, #ffffff 100%);
}

.tv-problem-card {
  position: relative;
  overflow: hidden;
  border: none;
}

.homeBanner {
  bottom: 170px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  object-fit: contain;
  max-width: 80%;
}

.tv-problem-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
  opacity: 0;
  transition: all 0.4s ease;
}

.tv-problem-card:hover::before {
  opacity: 1;
  z-index: 0;
}

.tv-problem-card:hover h3,
.tv-problem-card:hover p {
  color: white;
}

.tv-problem-card {
  /* enforce equal heights inside swiper slides and avoid layout shifts */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 400px;
  padding: 0 20px;
  border-right: 1px solid #777777;
  height: 100%;
}

.tv-problem-card .hoverShow {
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.25s ease;
  width: 100%;
  height: 100%;
}

.tv-problem-card:hover .hoverShow {
  z-index: 1;
  opacity: 1;
}

/* make the card image sit in-flow but behind the overlay; keep fixed height to avoid layout shifts */
.tv-problem-card img {
  position: relative;
  width: 100%;
  height: 11rem;
  object-fit: cover;
  z-index: -1;
  filter: none;
  transform: none;
  transition:
    transform 0.45s ease,
    filter 0.45s ease,
    opacity 0.25s ease;
}

.tv-problem-card:hover img {
  filter: blur(3px);
  transform: scale(2.3);
  height: 100%;
  transform-origin: bottom;
}

.tv-feature-card:hover,
.tv-why-card:hover,
.tv-article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px -14px rgba(2, 65, 136, 0.18);
}

/* ---- AI-Powered Document Processing — animated browser panel --------- */
.tv-aipanel-status {
  font-size: 11px;
  font-weight: 600;
  transition:
    color 0.3s ease,
    opacity 0.3s ease;
}

.tv-aipanel-status[data-state="idle"] {
  color: var(--slate-400);
}

.tv-aipanel-status[data-state="checking"] {
  color: #b45309;
}

.tv-aipanel-status[data-state="done"] {
  color: #047857;
}

.tv-aipanel-progress-fill {
  background-image: linear-gradient(90deg, #10b981, #0078c8);
  transition: width 0.6s ease;
}

@keyframes tvBlink {

  0%,
  60% {
    opacity: 1;
  }

  80% {
    opacity: 0.35;
  }
}

.tv-aipanel-status[data-state="checking"]::after {
  content: "";
  animation: tvBlink 1.2s ease-in-out infinite;
}

.tv-aipanel-success {
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

.tv-aipanel-success[data-show="true"] {
  opacity: 1;
  transform: translateY(0);
}

@keyframes tvBadgeFloat {

  0%,
  100% {
    transform: translateY(0) rotate(-3deg);
  }

  50% {
    transform: translateY(-8px) rotate(-1deg);
  }
}

.tv-aipanel-badge {
  animation: tvBadgeFloat 4s ease-in-out infinite;
}

/* ---- Calculator: range slider ---------------------------------------- */
.tv-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: #e5e7eb;
  outline: none;
  cursor: pointer;
}

.tv-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--brand);
  border: 3px solid #ffffff;
  box-shadow: 0 2px 6px rgba(0, 120, 200, 0.35);
  cursor: pointer;
  transition: transform 0.15s ease;
}

.tv-range::-webkit-slider-thumb:hover {
  transform: scale(1.1);
}

.tv-range::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--brand);
  border: 3px solid #ffffff;
  box-shadow: 0 2px 6px rgba(0, 120, 200, 0.35);
  cursor: pointer;
}

/* ---- Calculator tabs ------------------------------------------------- */
.tv-tab {
  color: var(--slate-500);
  transition:
    background-color 0.15s ease,
    color 0.15s ease,
    box-shadow 0.15s ease;
}

.tv-tab:hover {
  color: var(--ink);
}

.tv-tab--active {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 1px 4px rgba(0, 120, 200, 0.3);
}

.tv-calculator .stat-card {
  border-radius: 4px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  padding: 0.5rem 1rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  margin-bottom: 10px;
}

.tv-calculator .stat-card p {
  margin: 0;
}

.tv-calculator .stat-card strong {
  display: block;
}

.tv-calculator .stat-card-secondary {
  color: #0f766e;
}

/* ---- Testimonials carousel ------------------------------------------ */
.tv-t-viewport {
  overflow: hidden;
}

.tv-t-track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.tv-t-card {
  flex: 0 0 calc(72% - 0.625rem);
  transition:
    transform 0.55s ease,
    opacity 0.55s ease,
    filter 0.55s ease;
  transform: scale(0.92);
  opacity: 0.55;
  filter: saturate(0.85);
}

@media (min-width: 768px) {
  .tv-t-card {
    flex: 0 0 calc(55% - 0.625rem);
  }
}

.tv-t-card--active {
  transform: scale(1);
  opacity: 1;
  filter: none;
}

.tv-dot {
  cursor: pointer;
  transition:
    width 0.2s ease,
    background-color 0.2s ease;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--slate-300);
  border: 0;
  padding: 0;
}

.tv-dot--active {
  width: 10px;
  background: var(--brand);
}

/* ---- Final CTA stars ------------------------------------------------- */
@keyframes tvFloat {

  0%,
  100% {
    transform: translateY(0) rotate(var(--r, 0deg));
  }

  50% {
    transform: translateY(-6px) rotate(var(--r, 0deg));
  }
}

.tv-final-cta img[src*="star-3d"] {
  animation: tvFloat 6s ease-in-out infinite;
}

.tv-final-cta img[src*="star-3d"]:first-of-type {
  --r: -12deg;
}

.tv-final-cta img[src*="star-3d"]:last-of-type {
  --r: 24deg;
  animation-delay: 1.5s;
}

/* ---- Reduced motion -------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .tv-pop,
  .tv-final-cta img[src*="star-3d"],
  .tv-aipanel-badge,
  .tv-aipanel-status[data-state="checking"]::after {
    animation: none;
  }

  .tv-problem-card,
  .tv-feature-card,
  .tv-why-card,
  .tv-article-card,
  .tv-problem-card img {
    transition: none;
  }
}

/* Swiper-specific: ensure slides are equal height and cards stretch */
.swiper {
  --tv-slide-gap: 16px;
}

.swiper .swiper-wrapper {
  align-items: stretch;
}

.swiper-slide {
  display: flex;
  align-items: stretch;
}

.swiper-slide .tv-problem-card {
  width: 100%;
}

/* Ensure card content appears above the overlay and blurred image */
.tv-problem-card> :not(img) {
  position: relative;
  z-index: -1;
}

.document-process-card {
  border-top-width: 3px;
  border-top-color: #0078c8;
}

.taxSoftware {
  border: 1px solid rgba(0, 120, 200, 0.3);
  box-shadow: 0px 0px 25px 0px rgba(0, 120, 200, 0.15);
  border-radius: 12px;
  padding: 20px;
}

.integration-panel {
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.integration-panel .tv-integration-tile {
  border-right: 1px solid rgba(148, 163, 184, 0.18);
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

@media (max-width: 767px) {
  .integration-panel .tv-integration-tile:nth-child(2n) {
    border-right: none;
  }

  .integration-panel .tv-integration-tile:nth-last-child(-n + 2) {
    border-bottom: none;
  }
}

@media (min-width: 767px) {
  .integration-panel .tv-integration-tile:nth-child(4n) {
    border-right: none;
  }

  .integration-panel .tv-integration-tile:nth-last-child(-n + 4) {
    border-bottom: none;
  }
}

.ocr-tool-card {
  height: 300px;
  margin-bottom: 10px;
}

.home_count_box {
  position: relative;
  top: -10px;
  z-index: -1;
  padding: 15px 25px;
}

@media (min-width: 991px) {
  .home_count_box {
    left: -35px;
  }

  .home_count_box.home_count_box_right {
    left: auto;
    right: -35px;
  }

  .hero_cop_txt {
    font-size: 26px;
  }
}

.tv-hero-before::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background: #f9f9f9;
}

.announce {
  background: linear-gradient(90deg, #0078c8 0%, #024188 100%);
  color: #fff;
  padding: 10px 0;
  position: relative;
  z-index: 5;
}

.announce__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  flex-wrap: wrap;
  margin: 0;
}

.announce__badge {
  background: #0a1628;
  color: #fff;
  padding: 2px 10px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.04em;
}

.announce__text {
  font-weight: 600;
}

.announce__link {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s;
}

.announce__link:hover {
  opacity: 0.85;
}

@media (max-width: 768px) {

  /* Hero */
  .whyus-announce__inner {
    font-size: 12px;
    gap: 6px;
  }

  .whyus-announce__link {
    font-size: 12px;
  }
}

/* ==========================================================================
   5. FAQ — Transparent Data Handling
   ========================================================================== */
.sec-faq {
  background: #fff;
  padding: 88px 0 90px;
}

.sec-faq__intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 44px;
}

.sec-faq__title {
  font-size: 38px;
  font-weight: 800;
  color: #024188;
  line-height: 1.2;
  margin: 0;
  letter-spacing: -0.01em;
}

.sec-faq__list {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sec-faq__item {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.2s;
}

.sec-faq__item[open] {
  border-color: #c2dcf0;
  box-shadow: 0 2px 12px rgba(0, 120, 200, 0.06);
}

.sec-faq__summary {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.sec-faq__summary::-webkit-details-marker {
  display: none;
}

.sec-faq__summary::marker {
  display: none;
}

.sec-faq__num {
  font-size: 16px;
  font-weight: 600;
  color: #64748b;
  flex-shrink: 0;
  width: 24px;
}

.sec-faq__q {
  flex: 1;
  font-size: 16px;
  font-weight: 700;
  color: #0a1628;
}

.sec-faq__icon {
  width: 32px;
  height: 32px;
  background: #e5f1ff;
  color: #0078c8;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}

.sec-faq__icon-minus {
  display: none;
}

.sec-faq__item[open] .sec-faq__icon-plus {
  display: none;
}

.sec-faq__item[open] .sec-faq__icon-minus {
  display: block;
}

.sec-faq__answer {
  padding: 0 24px 22px 70px;
}

.sec-faq__answer p {
  font-size: 14.5px;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

.sec-faq__callout {
  max-width: 880px;
  margin: 32px auto 0;
  background: #eff6fc;
  border: 1px solid #c2dcf0;
  border-radius: 4px;
  padding: 22px 30px;
  text-align: center;
}

.sec-faq__callout-title {
  font-size: 17px;
  font-weight: 700;
  color: #0a1628;
  margin: 0 0 10px;
}

.sec-faq__callout-copy {
  font-size: 14px;
  color: #64748b;
  line-height: 1.65;
  margin: 0;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.cp-contact {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cp-contact__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0078c8;
  position: relative;
}

.cp-apply__contacts {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 390px;
}

/* ==========================================================================
   FOOTER STYLING
   ========================================================================== */
.tv-footer {
  background: #ffffff;
}

.tv-footer a {
  text-decoration: none;
  color: #64748b;
  transition: color 0.2s ease;
}

.tv-footer a:hover {
  color: var(--brand);
}

.tv-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 100%;
}

.tv-footer li {
  list-style: none;
}

/* Contact info styling */
.tv-footer .cp-contact {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
}

.tv-footer .cp-contact__icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
}

.tv-footer .cp-contact__link {
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s ease;
  line-height: 1.5;
  word-break: break-word;
}

.tv-footer .cp-contact__link:hover {
  color: var(--brand);
}

/* Newsletter form styling */
.tv-footer input[type="email"] {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.2s ease;
}

.tv-footer input[type="email"]:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(0, 120, 200, 0.1);
}

.tv-footer button[type="submit"] {
  padding: 10px 20px;
  background: var(--brand);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.tv-footer button[type="submit"]:hover {
  background-color: var(--brand-dark);
}

/* Footer section headings */
.tv-footer h3,
.tv-footer p:first-child {
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

/* Social icons */
.tv-footer svg {
  width: 20px;
  height: 20px;
  transition: transform 0.2s ease;
}

.tv-footer a:hover svg {
  transform: translateY(-2px);
}

/* Responsive footer layout */
@media (max-width: 768px) {
  .tv-footer {
    padding: 32px 0;
  }

  .tv-footer .grid {
    gap: 32px 20px;
  }

  .tv-footer .cp-contact {
    gap: 10px;
    font-size: 13px;
  }
}

.footer_intro {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.newsletter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 400px;
  border: 1px solid #0078C899;
  background: #F2FAFF;
  border-radius: 15px;
}

.tv-footer .footer_intro {
  display: none;

}