/*
Theme Name: Techno Cuts Solutions
Theme URI: https://technocuts.com/
Author: Techno Cuts Solutions
Author URI: https://technocuts.com/
Description: A premium, conversion-focused WordPress theme for telecom, cloud, cybersecurity and technology consulting firms.
Version: 1.3.5
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
Text Domain: techno-cuts-solutions
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/

:root {
  --tcs-navy-950: #050c1c;
  --tcs-navy-900: #08162f;
  --tcs-navy-800: #0d2145;
  --tcs-navy-700: #17325f;
  --tcs-slate-700: #43516a;
  --tcs-slate-600: #59677f;
  --tcs-slate-500: #758197;
  --tcs-slate-300: #c4cede;
  --tcs-slate-200: #dbe3ef;
  --tcs-slate-100: #eef3f9;
  --tcs-slate-50: #f7faff;
  --tcs-white: #ffffff;
  --tcs-cyan: #20d8e5;
  --tcs-cyan-dark: #0aa9bc;
  --tcs-violet: #7568ff;
  --tcs-purple: #a654ff;
  --tcs-mint: #8cf0ba;
  --tcs-orange: #ffab5c;
  --tcs-rose: #ff6c98;
  --tcs-success: #10b981;
  --tcs-danger: #dc2626;
  --tcs-shadow-sm: 0 8px 24px rgba(8, 22, 47, 0.08);
  --tcs-shadow-md: 0 18px 54px rgba(8, 22, 47, 0.12);
  --tcs-shadow-lg: 0 34px 90px rgba(8, 22, 47, 0.18);
  --tcs-radius-sm: 12px;
  --tcs-radius: 20px;
  --tcs-radius-lg: 32px;
  --tcs-container: 1180px;
  --tcs-transition: 180ms ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--tcs-navy-900);
  background: var(--tcs-white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
::selection { background: rgba(32, 216, 229, 0.28); color: var(--tcs-navy-950); }


/* TCS duplicate directory kill switch: no second menu below the homepage hero. */
.tcs-page-directory, .tcs-page-directory__inner { display: none !important; }

.tcs-container { width: min(calc(100% - 40px), var(--tcs-container)); margin-inline: auto; }
.tcs-narrow { width: min(calc(100% - 40px), 820px); margin-inline: auto; }
.tcs-section { padding: 96px 0; position: relative; }
.tcs-section--tight { padding: 70px 0; }
.tcs-section--soft { background: var(--tcs-slate-50); }
.tcs-section--dark { color: var(--tcs-white); background: var(--tcs-navy-950); overflow: hidden; }
.tcs-grid { display: grid; gap: 28px; }
.tcs-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.tcs-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.tcs-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.tcs-flex { display: flex; align-items: center; gap: 16px; }
.tcs-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  margin: 0 0 18px; color: var(--tcs-violet); font-size: 13px; font-weight: 800;
  letter-spacing: .13em; text-transform: uppercase;
}
.tcs-kicker::before { content: ""; width: 30px; height: 2px; border-radius: 999px; background: linear-gradient(90deg, var(--tcs-cyan), var(--tcs-violet)); }
.tcs-section-title { margin: 0; max-width: 850px; font-size: clamp(34px, 5vw, 58px); line-height: 1.06; letter-spacing: -.045em; }
.tcs-section-lead { max-width: 740px; margin: 22px 0 0; color: var(--tcs-slate-600); font-size: 19px; }
.tcs-section-head { margin-bottom: 48px; }
.tcs-section-head--split { display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.tcs-section-head--split .tcs-section-lead { margin-bottom: 8px; max-width: 470px; }
.tcs-gradient-text { background: linear-gradient(105deg, var(--tcs-cyan) 0%, #6f77ff 48%, #bc65ff 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }

.tcs-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 23px; border: 1px solid transparent; border-radius: 999px;
  font-weight: 800; line-height: 1; transition: transform var(--tcs-transition), box-shadow var(--tcs-transition), background var(--tcs-transition), border-color var(--tcs-transition);
}
.tcs-btn:hover { transform: translateY(-2px); }
.tcs-btn--primary { color: var(--tcs-navy-950); background: linear-gradient(120deg, var(--tcs-mint), var(--tcs-cyan)); box-shadow: 0 14px 34px rgba(32, 216, 229, .22); }
.tcs-btn--primary:hover { box-shadow: 0 18px 42px rgba(32, 216, 229, .32); }
.tcs-btn--dark { color: var(--tcs-white); background: var(--tcs-navy-900); box-shadow: 0 14px 34px rgba(8, 22, 47, .18); }
.tcs-btn--dark:hover { background: var(--tcs-navy-800); }
.tcs-btn--outline { color: var(--tcs-navy-900); border-color: var(--tcs-slate-200); background: rgba(255,255,255,.78); }
.tcs-btn--outline:hover { border-color: var(--tcs-cyan); background: var(--tcs-white); }
.tcs-btn--light { color: var(--tcs-white); border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.08); }
.tcs-btn--light:hover { background: rgba(255,255,255,.14); }
.tcs-btn svg { width: 18px; height: 18px; flex: 0 0 auto; }

.tcs-topbar { color: #c5d2ea; background: var(--tcs-navy-950); font-size: 13px; }
.tcs-topbar__inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.tcs-topbar__note { display: flex; align-items: center; gap: 9px; }
.tcs-topbar__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--tcs-mint); box-shadow: 0 0 0 5px rgba(140,240,186,.12); }
.tcs-topbar__links { display: flex; align-items: center; gap: 22px; }
.tcs-topbar a:hover { color: var(--tcs-white); }

.tcs-header { position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid rgba(8,22,47,.08); background: rgba(255,255,255,.92); backdrop-filter: blur(18px); }
.admin-bar .tcs-header { top: 32px; }
.tcs-header__inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.tcs-logo { display: inline-flex; align-items: center; width: 258px; max-width: 44vw; }
.tcs-logo img { width: 100%; display: block; }

/* Reliable inline header logo: prevents missing custom-logo/assets from leaving the header blank. */
.tcs-header .tcs-container { width: min(calc(100% - 48px), 1440px); }
.tcs-logo--inline { flex: 0 0 auto; width: auto; min-width: 204px; max-width: none; gap: 12px; color: var(--tcs-navy-950); }
.tcs-logo__mark { width: 46px; height: 46px; flex: 0 0 46px; display: grid; place-items: center; border-radius: 15px; background: #fff; box-shadow: 0 12px 28px rgba(15, 118, 110, .16); }
.tcs-logo__mark svg { width: 38px; height: 38px; display: block; }
.tcs-logo__words { display: grid; gap: 0; line-height: 1; letter-spacing: -.035em; }
.tcs-logo__words strong { display: block; font-size: 20px; font-weight: 950; color: #111827; white-space: nowrap; }
.tcs-logo__words small { display: block; margin-top: 4px; font-size: 11px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; color: var(--tcs-cyan-dark); white-space: nowrap; }
.tcs-header__inner { gap: 18px; }
.tcs-nav { flex: 1 1 auto; min-width: 0; }
.tcs-nav ul { gap: 2px; }
.tcs-nav a { padding-inline: 10px; font-size: 14px; }
@media (max-width: 1380px) {
  .tcs-header__email { display: none; }
  .tcs-logo--inline { min-width: 190px; }
}
@media (max-width: 1180px) {
  .tcs-logo--inline { min-width: 178px; }
  .tcs-logo__words strong { font-size: 18px; }
  .tcs-logo__words small { font-size: 10px; letter-spacing: .15em; }
}
@media (max-width: 960px) {
  .tcs-header .tcs-container { width: min(calc(100% - 28px), var(--tcs-container)); }
  .tcs-logo--inline { min-width: 0; }
}
@media (max-width: 440px) {
  .tcs-logo__words strong { font-size: 16px; }
  .tcs-logo__words small { font-size: 9px; }
  .tcs-logo__mark { width: 40px; height: 40px; flex-basis: 40px; border-radius: 12px; }
  .tcs-logo__mark svg { width: 33px; height: 33px; }
}

.tcs-nav { display: flex; align-items: center; gap: 8px; }
.tcs-nav ul { display: flex; align-items: center; gap: 4px; margin: 0; padding: 0; list-style: none; }
.tcs-nav li { position: relative; }
.tcs-nav a { display: inline-flex; align-items: center; min-height: 44px; padding: 0 13px; border-radius: 10px; color: var(--tcs-navy-800); font-size: 14px; font-weight: 700; }
.tcs-nav a:hover, .tcs-nav .current-menu-item > a, .tcs-nav .current-menu-ancestor > a { color: var(--tcs-violet); background: var(--tcs-slate-50); }
.tcs-nav .menu-item-has-children > a::after { content: ""; width: 6px; height: 6px; margin-left: 8px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-2px); }
.tcs-nav .sub-menu {
  position: absolute; top: calc(100% + 10px); left: 0; min-width: 280px; display: grid; gap: 4px;
  padding: 12px; opacity: 0; visibility: hidden; transform: translateY(8px); border: 1px solid var(--tcs-slate-200);
  border-radius: 18px; background: var(--tcs-white); box-shadow: var(--tcs-shadow-md); transition: all var(--tcs-transition);
}
.tcs-nav li:hover > .sub-menu, .tcs-nav li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.tcs-nav .sub-menu a { width: 100%; justify-content: flex-start; }
.tcs-nav .sub-menu .menu-item-has-children > a::after { margin-left: auto; transform: rotate(-45deg); }
.tcs-nav .sub-menu .sub-menu { left: calc(100% + 8px); top: 0; }
.tcs-header__cta { margin-left: 6px; min-height: 46px; padding-inline: 18px; }
.tcs-menu-toggle { display: none; width: 46px; height: 46px; place-items: center; border: 0; border-radius: 12px; background: var(--tcs-slate-50); }
.tcs-menu-toggle span, .tcs-menu-toggle::before, .tcs-menu-toggle::after { content: ""; display: block; width: 22px; height: 2px; border-radius: 99px; background: var(--tcs-navy-900); transition: all var(--tcs-transition); }
.tcs-menu-toggle span { margin: 5px 0; }
.menu-open .tcs-menu-toggle span { opacity: 0; }
.menu-open .tcs-menu-toggle::before { transform: translateY(7px) rotate(45deg); }
.menu-open .tcs-menu-toggle::after { transform: translateY(-7px) rotate(-45deg); }

.tcs-hero { position: relative; min-height: 760px; display: grid; align-items: center; overflow: hidden; color: var(--tcs-white); background: var(--tcs-navy-950); }
.tcs-hero::before { content: ""; position: absolute; inset: 0; background:
  radial-gradient(circle at 18% 12%, rgba(117,104,255,.30), transparent 35%),
  radial-gradient(circle at 78% 20%, rgba(32,216,229,.22), transparent 29%),
  radial-gradient(circle at 68% 88%, rgba(166,84,255,.20), transparent 33%),
  linear-gradient(120deg, #050c1c 0%, #08162f 56%, #0a1f42 100%);
}
.tcs-hero::after { content: ""; position: absolute; inset: 0; opacity: .18; background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px); background-size: 46px 46px; mask-image: linear-gradient(to bottom, black, transparent 88%); }
.tcs-hero__orb { position: absolute; border-radius: 50%; filter: blur(1px); animation: tcs-float 10s ease-in-out infinite; }
.tcs-hero__orb--1 { width: 180px; height: 180px; top: 11%; right: 7%; border: 1px solid rgba(32,216,229,.35); box-shadow: inset 0 0 70px rgba(32,216,229,.12), 0 0 70px rgba(32,216,229,.08); }
.tcs-hero__orb--2 { width: 90px; height: 90px; left: 4%; bottom: 14%; border: 1px solid rgba(166,84,255,.42); animation-delay: -3s; }
@keyframes tcs-float { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-16px) rotate(5deg); } }
.tcs-hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0,1.05fr) minmax(440px,.95fr); align-items: center; gap: 58px; padding: 100px 0 114px; }
.tcs-hero__badge { display: inline-flex; align-items: center; gap: 10px; padding: 8px 13px; margin-bottom: 23px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; color: #d9e5fb; background: rgba(255,255,255,.06); font-size: 13px; font-weight: 700; }
.tcs-hero__badge span { width: 8px; height: 8px; border-radius: 50%; background: var(--tcs-mint); box-shadow: 0 0 0 6px rgba(140,240,186,.12); }
.tcs-hero h1 { margin: 0; font-size: clamp(50px, 6.6vw, 84px); line-height: .98; letter-spacing: -.058em; }
.tcs-hero__lead { max-width: 680px; margin: 26px 0 0; color: #bdcbe3; font-size: clamp(18px, 2vw, 21px); }
.tcs-hero__actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.tcs-hero__proof { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 38px; color: #d7e2f5; font-size: 14px; }
.tcs-hero__proof span { display: inline-flex; align-items: center; gap: 8px; }
.tcs-hero__proof svg { width: 18px; height: 18px; color: var(--tcs-mint); }

.tcs-visual { position: relative; min-height: 500px; }
.tcs-visual__glow { position: absolute; inset: 15% 5%; border-radius: 50%; background: radial-gradient(circle, rgba(32,216,229,.22), rgba(117,104,255,.10) 44%, transparent 72%); filter: blur(20px); }
.tcs-visual__panel { position: absolute; inset: 48px 8px 30px 32px; overflow: hidden; border: 1px solid rgba(255,255,255,.15); border-radius: 30px; background: linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.045)); box-shadow: 0 36px 90px rgba(0,0,0,.34); backdrop-filter: blur(18px); }
.tcs-visual__panel::before { content: ""; position: absolute; inset: 0; opacity: .22; background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px); background-size: 36px 36px; }
.tcs-network { position: absolute; inset: 0; }
.tcs-network svg { width: 100%; height: 100%; }
.tcs-network line { stroke: rgba(126, 231, 245, .44); stroke-width: 1.4; stroke-dasharray: 6 7; animation: tcs-dash 16s linear infinite; }
@keyframes tcs-dash { to { stroke-dashoffset: -160; } }
.tcs-network circle { filter: drop-shadow(0 0 9px rgba(32,216,229,.7)); }
.tcs-visual__metric { position: absolute; display: flex; align-items: center; gap: 12px; min-width: 165px; padding: 14px 16px; border: 1px solid rgba(255,255,255,.14); border-radius: 18px; background: rgba(6,17,37,.78); box-shadow: 0 18px 42px rgba(0,0,0,.28); backdrop-filter: blur(14px); }
.tcs-visual__metric--one { top: 8px; right: 0; }
.tcs-visual__metric--two { left: 0; bottom: 2px; }
.tcs-visual__metric--three { right: 12px; bottom: 52px; }
.tcs-visual__metric strong { display: block; color: var(--tcs-white); font-size: 18px; }
.tcs-visual__metric small { color: #91a5c7; font-size: 12px; }
.tcs-visual__metric-icon { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; background: linear-gradient(135deg, rgba(32,216,229,.22), rgba(117,104,255,.24)); color: var(--tcs-mint); }
.tcs-visual__metric-icon svg { width: 20px; height: 20px; }
.tcs-visual__center { position: absolute; inset: 50% auto auto 50%; width: 124px; height: 124px; display: grid; place-items: center; transform: translate(-50%,-50%); border: 1px solid rgba(255,255,255,.18); border-radius: 30px; background: linear-gradient(145deg, rgba(32,216,229,.22), rgba(117,104,255,.24)); box-shadow: 0 0 0 18px rgba(117,104,255,.07), 0 0 0 38px rgba(32,216,229,.035); }
.tcs-visual__center svg { width: 58px; height: 58px; color: var(--tcs-white); }

.tcs-trustbar { position: relative; z-index: 3; margin-top: -46px; }
.tcs-trustbar__inner { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; overflow: hidden; border: 1px solid var(--tcs-slate-200); border-radius: 24px; background: var(--tcs-slate-200); box-shadow: var(--tcs-shadow-lg); }
.tcs-stat { padding: 27px 28px; background: var(--tcs-white); }
.tcs-stat strong { display: block; margin-bottom: 4px; color: var(--tcs-navy-900); font-size: 25px; line-height: 1.1; letter-spacing: -.03em; }
.tcs-stat span { color: var(--tcs-slate-600); font-size: 13px; font-weight: 700; }

.tcs-card { position: relative; overflow: hidden; border: 1px solid var(--tcs-slate-200); border-radius: var(--tcs-radius); background: var(--tcs-white); box-shadow: var(--tcs-shadow-sm); transition: transform var(--tcs-transition), box-shadow var(--tcs-transition), border-color var(--tcs-transition); }
.tcs-card:hover { transform: translateY(-7px); border-color: rgba(117,104,255,.35); box-shadow: var(--tcs-shadow-md); }
.tcs-service-card { min-height: 330px; padding: 30px; display: flex; flex-direction: column; }
.tcs-service-card::before { content: ""; position: absolute; width: 160px; height: 160px; right: -70px; top: -80px; border-radius: 50%; background: var(--card-glow, rgba(32,216,229,.16)); filter: blur(2px); }
.tcs-service-card__icon { position: relative; width: 56px; height: 56px; display: grid; place-items: center; margin-bottom: 26px; border-radius: 17px; color: var(--card-color, var(--tcs-violet)); background: var(--card-bg, rgba(117,104,255,.11)); }
.tcs-service-card__icon svg { width: 28px; height: 28px; }
.tcs-service-card h3 { position: relative; margin: 0; font-size: 24px; line-height: 1.16; letter-spacing: -.025em; }
.tcs-service-card p { position: relative; margin: 15px 0 24px; color: var(--tcs-slate-600); }
.tcs-card-link { position: relative; display: inline-flex; align-items: center; gap: 9px; margin-top: auto; color: var(--tcs-navy-900); font-weight: 800; }
.tcs-card-link svg { width: 17px; height: 17px; transition: transform var(--tcs-transition); }
.tcs-card-link:hover { color: var(--tcs-violet); }
.tcs-card-link:hover svg { transform: translateX(4px); }

.tcs-split { display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr); gap: 70px; align-items: center; }
.tcs-feature-visual { position: relative; min-height: 520px; border-radius: var(--tcs-radius-lg); overflow: hidden; color: var(--tcs-white); background: linear-gradient(145deg, var(--tcs-navy-900), #172b56); box-shadow: var(--tcs-shadow-lg); }
.tcs-feature-visual::before { content: ""; position: absolute; width: 320px; height: 320px; right: -70px; top: -80px; border-radius: 50%; background: radial-gradient(circle, rgba(32,216,229,.28), transparent 68%); }
.tcs-feature-visual::after { content: ""; position: absolute; width: 290px; height: 290px; left: -120px; bottom: -100px; border-radius: 50%; background: radial-gradient(circle, rgba(166,84,255,.34), transparent 68%); }
.tcs-feature-visual__grid { position: absolute; inset: 0; opacity: .16; background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px); background-size: 42px 42px; }
.tcs-feature-visual__stack { position: relative; z-index: 2; padding: 42px; display: grid; gap: 18px; }
.tcs-mini-panel { padding: 20px; border: 1px solid rgba(255,255,255,.14); border-radius: 20px; background: rgba(255,255,255,.075); backdrop-filter: blur(12px); }
.tcs-mini-panel__top { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.tcs-mini-panel__label { color: #b8c7df; font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.tcs-mini-panel__value { margin-top: 8px; font-size: 31px; font-weight: 850; letter-spacing: -.04em; }
.tcs-mini-panel__bars { display: flex; align-items: end; gap: 8px; height: 70px; margin-top: 16px; }
.tcs-mini-panel__bars span { flex: 1; border-radius: 8px 8px 2px 2px; background: linear-gradient(to top, rgba(32,216,229,.36), var(--tcs-cyan)); }
.tcs-mini-panel__status { display: inline-flex; align-items: center; gap: 7px; color: var(--tcs-mint); font-size: 13px; font-weight: 800; }
.tcs-mini-panel__status::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.tcs-checklist { display: grid; gap: 16px; margin: 28px 0 34px; padding: 0; list-style: none; }
.tcs-checklist li { display: grid; grid-template-columns: 28px 1fr; align-items: start; gap: 12px; color: var(--tcs-slate-700); }
.tcs-checklist__icon { width: 28px; height: 28px; display: grid; place-items: center; margin-top: 1px; border-radius: 9px; color: var(--tcs-navy-900); background: linear-gradient(135deg, var(--tcs-mint), var(--tcs-cyan)); }
.tcs-checklist__icon svg { width: 15px; height: 15px; }

.tcs-process { counter-reset: step; }
.tcs-process-card { position: relative; padding: 30px; border-left: 1px solid var(--tcs-slate-200); }
.tcs-process-card:first-child { border-left: 0; }
.tcs-process-card::before { counter-increment: step; content: "0" counter(step); display: inline-flex; margin-bottom: 22px; color: var(--tcs-violet); font-size: 13px; font-weight: 900; letter-spacing: .12em; }
.tcs-process-card h3 { margin: 0; font-size: 23px; letter-spacing: -.025em; }
.tcs-process-card p { margin: 12px 0 0; color: var(--tcs-slate-600); }

.tcs-industries { display: flex; flex-wrap: wrap; gap: 12px; }
.tcs-industry-pill { display: inline-flex; align-items: center; gap: 10px; padding: 13px 17px; border: 1px solid var(--tcs-slate-200); border-radius: 999px; color: var(--tcs-slate-700); background: var(--tcs-white); font-weight: 750; box-shadow: 0 5px 18px rgba(8,22,47,.05); }
.tcs-industry-pill::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: linear-gradient(135deg, var(--tcs-cyan), var(--tcs-violet)); }

.tcs-dark-band { position: relative; overflow: hidden; border-radius: var(--tcs-radius-lg); color: var(--tcs-white); background: linear-gradient(120deg, var(--tcs-navy-950), #102850); box-shadow: var(--tcs-shadow-lg); }
.tcs-dark-band::before { content: ""; position: absolute; width: 400px; height: 400px; right: -100px; top: -150px; border-radius: 50%; background: radial-gradient(circle, rgba(32,216,229,.24), transparent 66%); }
.tcs-dark-band__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: center; padding: 58px; }
.tcs-dark-band h2 { margin: 0; font-size: clamp(34px, 4vw, 52px); line-height: 1.05; letter-spacing: -.045em; }
.tcs-dark-band p { margin: 18px 0 0; color: #b8c7df; font-size: 18px; }
.tcs-dark-band__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }

.tcs-logo-cloud { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.tcs-partner-card { min-height: 120px; display: grid; place-items: center; padding: 20px; border: 1px solid var(--tcs-slate-200); border-radius: 18px; background: var(--tcs-white); color: var(--tcs-slate-600); font-size: 18px; font-weight: 850; letter-spacing: -.02em; text-align: center; box-shadow: var(--tcs-shadow-sm); }
.tcs-partner-card small { display: block; margin-top: 5px; color: var(--tcs-slate-500); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

.tcs-post-card { display: flex; flex-direction: column; min-height: 100%; }
.tcs-post-card__image { position: relative; aspect-ratio: 16/9; overflow: hidden; background: linear-gradient(140deg, var(--tcs-navy-900), var(--tcs-violet)); }
.tcs-post-card__image::after { content: ""; position: absolute; inset: 0; opacity: .42; background: radial-gradient(circle at 20% 20%, var(--tcs-cyan), transparent 36%), radial-gradient(circle at 90% 75%, var(--tcs-purple), transparent 42%); }
.tcs-post-card__image img { width: 100%; height: 100%; object-fit: cover; }
.tcs-post-card__body { flex: 1; display: flex; flex-direction: column; padding: 26px; }
.tcs-post-card__meta { margin-bottom: 12px; color: var(--tcs-violet); font-size: 12px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.tcs-post-card h3 { margin: 0; font-size: 23px; line-height: 1.22; letter-spacing: -.03em; }
.tcs-post-card p { margin: 13px 0 22px; color: var(--tcs-slate-600); }

.tcs-page-hero { position: relative; overflow: hidden; color: var(--tcs-white); background: var(--tcs-navy-950); }
.tcs-page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 75% 10%, rgba(32,216,229,.22), transparent 34%), radial-gradient(circle at 10% 90%, rgba(166,84,255,.2), transparent 32%), linear-gradient(120deg, #050c1c, #102850); }
.tcs-page-hero::after { content: ""; position: absolute; inset: 0; opacity: .14; background-image: linear-gradient(rgba(255,255,255,.14) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.14) 1px, transparent 1px); background-size: 48px 48px; }
.tcs-page-hero__inner { position: relative; z-index: 2; padding: 96px 0 90px; }
.tcs-breadcrumbs { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 22px; color: #9fb1cf; font-size: 13px; font-weight: 700; }
.tcs-breadcrumbs a:hover { color: var(--tcs-white); }
.tcs-page-hero h1 { max-width: 900px; margin: 0; font-size: clamp(44px, 6vw, 74px); line-height: 1.01; letter-spacing: -.052em; }
.tcs-page-hero p { max-width: 760px; margin: 24px 0 0; color: #b8c7df; font-size: 20px; }

.tcs-content { font-size: 18px; }
.tcs-content > *:first-child { margin-top: 0; }
.tcs-content h2, .tcs-content h3, .tcs-content h4 { margin: 1.7em 0 .55em; line-height: 1.15; letter-spacing: -.03em; }
.tcs-content h2 { font-size: 38px; }
.tcs-content h3 { font-size: 28px; }
.tcs-content p, .tcs-content li { color: var(--tcs-slate-700); }
.tcs-content a { color: var(--tcs-violet); font-weight: 750; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.tcs-content blockquote { margin: 34px 0; padding: 24px 28px; border-left: 4px solid var(--tcs-cyan); border-radius: 0 18px 18px 0; background: var(--tcs-slate-50); font-size: 21px; font-weight: 650; }

.tcs-service-layout { display: grid; grid-template-columns: minmax(0,1fr) 350px; gap: 58px; align-items: start; }
.tcs-service-sidebar { position: sticky; top: 120px; display: grid; gap: 18px; }
.tcs-sidebar-card { padding: 24px; border: 1px solid var(--tcs-slate-200); border-radius: 20px; background: var(--tcs-white); box-shadow: var(--tcs-shadow-sm); }
.tcs-sidebar-card h3 { margin: 0 0 14px; font-size: 20px; }
.tcs-sidebar-links { display: grid; gap: 7px; }
.tcs-sidebar-links a { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 11px 12px; border-radius: 10px; color: var(--tcs-slate-700); font-size: 14px; font-weight: 700; }
.tcs-sidebar-links a:hover, .tcs-sidebar-links a.is-active { color: var(--tcs-violet); background: var(--tcs-slate-50); }
.tcs-outcomes { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; margin: 34px 0; }
.tcs-outcome { padding: 22px; border: 1px solid var(--tcs-slate-200); border-radius: 18px; background: var(--tcs-slate-50); }
.tcs-outcome strong { display: block; margin-bottom: 6px; font-size: 19px; }
.tcs-outcome span { color: var(--tcs-slate-600); font-size: 14px; }

.tcs-faq-list { display: grid; gap: 14px; }
.tcs-faq { overflow: hidden; border: 1px solid var(--tcs-slate-200); border-radius: 18px; background: var(--tcs-white); box-shadow: 0 8px 24px rgba(8,22,47,.05); }
.tcs-faq__button { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 24px; border: 0; color: var(--tcs-navy-900); background: transparent; text-align: left; font-weight: 800; }
.tcs-faq__icon { width: 30px; height: 30px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 50%; color: var(--tcs-violet); background: rgba(117,104,255,.10); transition: transform var(--tcs-transition); }
.tcs-faq.is-open .tcs-faq__icon { transform: rotate(45deg); }
.tcs-faq__answer { max-height: 0; overflow: hidden; transition: max-height 300ms ease; }
.tcs-faq__answer-inner { padding: 0 24px 22px; color: var(--tcs-slate-600); }
.tcs-faq__answer-inner p { margin: 0; }

.tcs-contact-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 42px; align-items: start; }
.tcs-contact-panel { padding: 34px; border-radius: var(--tcs-radius-lg); color: var(--tcs-white); background: linear-gradient(145deg, var(--tcs-navy-950), var(--tcs-navy-800)); box-shadow: var(--tcs-shadow-lg); }
.tcs-contact-panel h2 { margin: 0; font-size: 36px; line-height: 1.08; letter-spacing: -.04em; }
.tcs-contact-panel > p { color: #b8c7df; }
.tcs-contact-details { display: grid; gap: 16px; margin-top: 30px; }
.tcs-contact-detail { display: grid; grid-template-columns: 44px 1fr; gap: 13px; align-items: start; padding: 16px; border: 1px solid rgba(255,255,255,.11); border-radius: 16px; background: rgba(255,255,255,.055); }
.tcs-contact-detail__icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 13px; color: var(--tcs-mint); background: rgba(32,216,229,.11); }
.tcs-contact-detail__icon svg { width: 21px; height: 21px; }
.tcs-contact-detail small { display: block; color: #91a5c7; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; }
.tcs-contact-detail strong, .tcs-contact-detail a { display: block; margin-top: 3px; color: var(--tcs-white); font-size: 15px; font-weight: 750; }
.tcs-form-card { padding: 36px; border: 1px solid var(--tcs-slate-200); border-radius: var(--tcs-radius-lg); background: var(--tcs-white); box-shadow: var(--tcs-shadow-md); }
.tcs-form-card h2 { margin: 0; font-size: 34px; letter-spacing: -.04em; }
.tcs-form-card > p { color: var(--tcs-slate-600); }
.tcs-form { display: grid; gap: 18px; margin-top: 28px; }
.tcs-form-row { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
.tcs-field label { display: block; margin-bottom: 7px; color: var(--tcs-navy-900); font-size: 13px; font-weight: 800; }
.tcs-field input, .tcs-field textarea, .tcs-field select { width: 100%; border: 1px solid var(--tcs-slate-200); border-radius: 13px; outline: none; color: var(--tcs-navy-900); background: var(--tcs-slate-50); transition: border-color var(--tcs-transition), box-shadow var(--tcs-transition), background var(--tcs-transition); }
.tcs-field input, .tcs-field select { height: 52px; padding: 0 15px; }
.tcs-field textarea { min-height: 150px; padding: 14px 15px; resize: vertical; }
.tcs-field input:focus, .tcs-field textarea:focus, .tcs-field select:focus { border-color: var(--tcs-cyan); background: var(--tcs-white); box-shadow: 0 0 0 4px rgba(32,216,229,.12); }
.tcs-form-alert { padding: 14px 16px; border-radius: 12px; font-weight: 700; }
.tcs-form-alert--success { color: #08714d; background: #e7fbf3; }
.tcs-form-alert--error { color: #9f1d1d; background: #fff0f0; }
.tcs-hp { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.tcs-footer { position: relative; overflow: hidden; color: #b8c7df; background: var(--tcs-navy-950); }
.tcs-footer::before { content: ""; position: absolute; width: 520px; height: 520px; right: -170px; top: -270px; border-radius: 50%; background: radial-gradient(circle, rgba(32,216,229,.15), transparent 65%); }
.tcs-footer__main { position: relative; z-index: 2; display: grid; grid-template-columns: 1.2fr .8fr .95fr .8fr 1fr; gap: 42px; padding: 76px 0 56px; }
.tcs-footer__brand img { width: 230px; }
.tcs-footer__brand p { max-width: 360px; margin: 20px 0 0; }
.tcs-footer h3 { margin: 0 0 18px; color: var(--tcs-white); font-size: 15px; letter-spacing: .03em; }
.tcs-footer ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.tcs-footer a:hover { color: var(--tcs-white); }
.tcs-footer__contact { display: grid; gap: 12px; font-size: 14px; }
.tcs-footer__social { display: flex; gap: 9px; margin-top: 20px; }
.tcs-footer__social a { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.13); border-radius: 12px; color: var(--tcs-white); background: rgba(255,255,255,.05); }
.tcs-footer__social a:hover { border-color: var(--tcs-cyan); background: rgba(32,216,229,.10); }
.tcs-footer__social svg { width: 18px; height: 18px; }
.tcs-footer__bottom { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.09); font-size: 13px; }
.tcs-footer__legal { display: flex; flex-wrap: wrap; gap: 18px; }

.tcs-pagination { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 42px; }
.tcs-pagination .page-numbers { min-width: 42px; height: 42px; display: grid; place-items: center; padding: 0 12px; border: 1px solid var(--tcs-slate-200); border-radius: 11px; color: var(--tcs-slate-700); background: var(--tcs-white); font-weight: 800; }
.tcs-pagination .current, .tcs-pagination a:hover { color: var(--tcs-white); border-color: var(--tcs-violet); background: var(--tcs-violet); }
.tcs-empty { padding: 48px; border: 1px dashed var(--tcs-slate-300); border-radius: var(--tcs-radius); text-align: center; background: var(--tcs-slate-50); }
.tcs-404 { min-height: 70vh; display: grid; place-items: center; text-align: center; }
.tcs-404__number { font-size: clamp(110px, 20vw, 220px); line-height: .8; font-weight: 900; letter-spacing: -.08em; background: linear-gradient(135deg, var(--tcs-cyan), var(--tcs-violet), var(--tcs-purple)); -webkit-background-clip: text; background-clip: text; color: transparent; }

.screen-reader-text { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.screen-reader-text:focus { width: auto; height: auto; margin: 0; clip: auto; padding: 12px 16px; left: 10px; top: 10px; z-index: 99999; color: var(--tcs-navy-900); background: var(--tcs-white); box-shadow: var(--tcs-shadow-md); }

@media (max-width: 1100px) {
  .tcs-header__cta { display: none; }
  .tcs-nav a { padding-inline: 9px; }
  .tcs-hero__inner { grid-template-columns: 1fr .9fr; gap: 32px; }
  .tcs-grid--4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .tcs-footer__main { grid-template-columns: 1.4fr 1fr 1fr; }
  .tcs-footer__main > :last-child { grid-column: 1 / -1; }
}

@media (max-width: 920px) {
  .admin-bar .tcs-header { top: 46px; }
  .tcs-topbar__links { display: none; }
  .tcs-menu-toggle { display: grid; }
  .tcs-nav { position: fixed; inset: 120px 18px auto; max-height: calc(100vh - 145px); display: block; padding: 16px; overflow-y: auto; opacity: 0; visibility: hidden; transform: translateY(-10px); border: 1px solid var(--tcs-slate-200); border-radius: 22px; background: var(--tcs-white); box-shadow: var(--tcs-shadow-lg); transition: all var(--tcs-transition); }
  .admin-bar .tcs-nav { top: 150px; }
  .menu-open .tcs-nav { opacity: 1; visibility: visible; transform: translateY(0); }
  .tcs-nav ul { display: grid; align-items: stretch; }
  .tcs-nav a { width: 100%; min-height: 48px; justify-content: space-between; }
  .tcs-nav .sub-menu { position: static; min-width: 0; display: none; padding: 4px 0 4px 16px; opacity: 1; visibility: visible; transform: none; border: 0; box-shadow: none; }
  .tcs-nav li.is-submenu-open > .sub-menu { display: grid; }
  .tcs-nav .sub-menu .sub-menu { position: static; }
  .tcs-hero { min-height: auto; }
  .tcs-hero__inner { grid-template-columns: 1fr; padding: 86px 0 105px; }
  .tcs-hero__copy { max-width: 760px; }
  .tcs-visual { min-height: 480px; }
  .tcs-trustbar__inner { grid-template-columns: repeat(2,1fr); }
  .tcs-grid--3 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .tcs-split, .tcs-contact-grid, .tcs-service-layout { grid-template-columns: 1fr; }
  .tcs-feature-visual { order: -1; }
  .tcs-service-sidebar { position: static; }
  .tcs-dark-band__inner { grid-template-columns: 1fr; }
  .tcs-dark-band__actions { justify-content: flex-start; }
  .tcs-footer__main { grid-template-columns: repeat(2,1fr); }
  .tcs-footer__main > :last-child { grid-column: auto; }
}

@media (max-width: 680px) {
  .tcs-container, .tcs-narrow { width: min(calc(100% - 28px), var(--tcs-container)); }
  .tcs-section { padding: 74px 0; }
  .tcs-section--tight { padding: 56px 0; }
  .tcs-topbar__inner { justify-content: center; text-align: center; }
  .tcs-header__inner { min-height: 72px; }
  .tcs-logo { width: 215px; max-width: 69vw; }
  .tcs-nav { top: 110px; }
  .tcs-section-head--split { display: block; }
  .tcs-section-head--split .tcs-section-lead { margin-top: 18px; }
  .tcs-hero h1 { font-size: clamp(45px, 14vw, 62px); }
  .tcs-hero__inner { padding-top: 70px; }
  .tcs-hero__actions .tcs-btn { width: 100%; }
  .tcs-visual { min-height: 410px; }
  .tcs-visual__panel { inset: 38px 5px 40px 18px; }
  .tcs-visual__metric { min-width: 145px; padding: 11px 12px; }
  .tcs-visual__metric--three { display: none; }
  .tcs-visual__center { width: 100px; height: 100px; border-radius: 25px; }
  .tcs-trustbar { margin-top: -30px; }
  .tcs-trustbar__inner { grid-template-columns: 1fr; }
  .tcs-grid--2, .tcs-grid--3, .tcs-grid--4, .tcs-form-row, .tcs-outcomes { grid-template-columns: 1fr; }
  .tcs-process-card { border-left: 0; border-top: 1px solid var(--tcs-slate-200); }
  .tcs-process-card:first-child { border-top: 0; }
  .tcs-feature-visual { min-height: 470px; }
  .tcs-feature-visual__stack { padding: 24px; }
  .tcs-dark-band__inner { padding: 35px 25px; }
  .tcs-logo-cloud { grid-template-columns: 1fr; }
  .tcs-page-hero__inner { padding: 72px 0 66px; }
  .tcs-page-hero h1 { font-size: clamp(42px, 13vw, 58px); }
  .tcs-contact-panel, .tcs-form-card { padding: 26px 22px; }
  .tcs-footer__main { grid-template-columns: 1fr; gap: 36px; padding-top: 62px; }
  .tcs-footer__bottom { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity 520ms ease, transform 520ms ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }


/* Techno Cuts 1.1 polished package-led design */
.tcs-topbar { background: linear-gradient(90deg, #050c1c, #0d2145 55%, #101d42); }
.tcs-topbar__email { display:inline-flex; align-items:center; gap:7px; padding:5px 10px; border:1px solid rgba(255,255,255,.12); border-radius:999px; background:rgba(255,255,255,.06); color:#fff; font-weight:800; }
.tcs-topbar__email svg { width:15px; height:15px; color:var(--tcs-mint); }
.tcs-header { box-shadow: 0 14px 34px rgba(8,22,47,.06); }
.tcs-header__email { display:inline-flex; align-items:center; gap:8px; color:var(--tcs-navy-900); font-size:13px; font-weight:800; white-space:nowrap; }
.tcs-header__email svg { width:16px; height:16px; color:var(--tcs-violet); }
.tcs-hero { min-height: 790px; }
.tcs-hero::before { background:
  radial-gradient(circle at 10% 18%, rgba(32,216,229,.26), transparent 33%),
  radial-gradient(circle at 72% 15%, rgba(117,104,255,.35), transparent 35%),
  radial-gradient(circle at 88% 78%, rgba(140,240,186,.16), transparent 26%),
  linear-gradient(135deg, #050c1c 0%, #091939 48%, #101445 100%); }
.tcs-hero__copy h1, .tcs-hero h1 { max-width: 860px; font-size: clamp(50px, 7vw, 86px); line-height: .98; letter-spacing:-.065em; }
.tcs-package-grid { display:grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap:24px; }
.tcs-package-card { position:relative; overflow:hidden; display:flex; flex-direction:column; min-height:490px; padding:28px; border:1px solid var(--tcs-slate-200); border-radius:28px; background:linear-gradient(180deg,#fff 0%,#f9fbff 100%); box-shadow:var(--tcs-shadow-sm); transition: transform var(--tcs-transition), box-shadow var(--tcs-transition), border-color var(--tcs-transition); }
.tcs-package-card:hover { transform:translateY(-7px); border-color:rgba(117,104,255,.32); box-shadow:var(--tcs-shadow-md); }
.tcs-package-card::before { content:""; position:absolute; inset:0 0 auto; height:8px; background:linear-gradient(90deg, var(--package-color, var(--tcs-cyan)), var(--tcs-violet)); }
.tcs-package-card::after { content:""; position:absolute; width:210px; height:210px; right:-98px; top:-98px; border-radius:50%; background:rgba(32,216,229,.12); }
.tcs-package-card__badge { position:relative; z-index:2; align-self:flex-start; padding:6px 10px; border-radius:999px; color:var(--tcs-navy-950); background:rgba(140,240,186,.55); font-size:12px; font-weight:900; text-transform:uppercase; letter-spacing:.06em; }
.tcs-package-card__icon { position:relative; z-index:2; width:58px; height:58px; display:grid; place-items:center; margin:22px 0 22px; border-radius:18px; color:var(--package-color, var(--tcs-cyan)); background:rgba(8,22,47,.045); }
.tcs-package-card__icon svg { width:29px; height:29px; }
.tcs-package-card h3 { position:relative; z-index:2; margin:0; font-size:28px; line-height:1.08; letter-spacing:-.035em; }
.tcs-package-card__label { position:relative; z-index:2; margin:10px 0 0; color:var(--tcs-violet); font-weight:850; }
.tcs-package-card p { position:relative; z-index:2; color:var(--tcs-slate-600); }
.tcs-package-card ul { position:relative; z-index:2; display:grid; gap:10px; margin:20px 0 24px; padding:0; list-style:none; }
.tcs-package-card li { display:grid; grid-template-columns:20px 1fr; gap:9px; color:var(--tcs-slate-700); font-size:14px; }
.tcs-package-card li::before { content:"✓"; display:grid; place-items:center; width:20px; height:20px; border-radius:7px; color:var(--tcs-navy-950); background:linear-gradient(135deg,var(--tcs-mint),var(--tcs-cyan)); font-size:12px; font-weight:900; }
.tcs-package-card__solutions { position:relative; z-index:2; display:flex; flex-wrap:wrap; gap:7px; margin-top:auto; }
.tcs-package-card__solutions span { padding:5px 8px; border-radius:999px; color:var(--tcs-slate-700); background:var(--tcs-white); border:1px solid var(--tcs-slate-200); font-size:12px; font-weight:800; }
.tcs-package-card .tcs-card-link { margin-top:22px; }
.tcs-packages-hero-strip { display:grid; grid-template-columns: 1.1fr .9fr; gap:28px; align-items:stretch; }
.tcs-package-summary { padding:30px; border-radius:26px; color:var(--tcs-white); background:linear-gradient(135deg,var(--tcs-navy-900),#11194a); box-shadow:var(--tcs-shadow-lg); }
.tcs-package-summary h3 { margin:0 0 12px; font-size:28px; letter-spacing:-.03em; }
.tcs-package-summary p { color:#b8c7df; margin-bottom:0; }
.tcs-package-mini-grid { display:grid; grid-template-columns:repeat(2, minmax(0,1fr)); gap:14px; }
.tcs-package-mini { padding:18px; border:1px solid rgba(255,255,255,.12); border-radius:18px; background:rgba(255,255,255,.07); }
.tcs-package-mini strong { display:block; color:#fff; }
.tcs-package-mini span { display:block; color:#b8c7df; font-size:13px; margin-top:3px; }
.tcs-footer__pages { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:9px 16px; }
@media (max-width: 1180px) {
  .tcs-package-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .tcs-header__email { display:none; }
}
@media (max-width: 920px) {
  .tcs-packages-hero-strip { grid-template-columns:1fr; }
}
@media (max-width: 680px) {
  .tcs-package-grid, .tcs-package-mini-grid { grid-template-columns:1fr; }
  .tcs-package-card { min-height:0; }
  .tcs-topbar__email { display:none; }
}

/* Product directory and product detail pages. */
.tcs-products-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.tcs-products-grid--compact { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.tcs-product-card { position: relative; overflow: hidden; display: flex; flex-direction: column; min-height: 328px; padding: 28px; border: 1px solid var(--tcs-slate-200); border-radius: var(--tcs-radius); background: var(--tcs-white); box-shadow: var(--tcs-shadow-sm); transition: transform var(--tcs-transition), box-shadow var(--tcs-transition), border-color var(--tcs-transition); }
.tcs-product-card::before { content: ""; position: absolute; width: 190px; height: 190px; right: -92px; top: -96px; border-radius: 50%; background: color-mix(in srgb, var(--product-color, var(--tcs-violet)) 16%, transparent); }
.tcs-product-card:hover { transform: translateY(-7px); border-color: color-mix(in srgb, var(--product-color, var(--tcs-violet)) 34%, var(--tcs-slate-200)); box-shadow: var(--tcs-shadow-md); }
.tcs-product-card__top { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 22px; }
.tcs-product-card__icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 17px; color: var(--product-color, var(--tcs-violet)); background: color-mix(in srgb, var(--product-color, var(--tcs-violet)) 12%, white); }
.tcs-product-card__icon svg { width: 27px; height: 27px; }
.tcs-product-card__eyebrow { display: inline-flex; align-items: center; padding: 7px 11px; border-radius: 999px; background: var(--tcs-slate-100); color: var(--tcs-slate-700); font-size: 11px; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; }
.tcs-product-card h3 { position: relative; margin: 0; color: var(--tcs-navy-950); font-size: 23px; line-height: 1.15; letter-spacing: -.025em; }
.tcs-product-card p { position: relative; margin: 14px 0 18px; color: var(--tcs-slate-600); }
.tcs-product-card ul { position: relative; display: grid; gap: 8px; margin: 0 0 22px; padding: 0; list-style: none; }
.tcs-product-card li { position: relative; padding-left: 19px; color: var(--tcs-slate-700); font-size: 14px; }
.tcs-product-card li::before { content: ""; position: absolute; left: 0; top: .68em; width: 7px; height: 7px; border-radius: 50%; background: var(--product-color, var(--tcs-violet)); transform: translateY(-50%); }
.tcs-products-strip { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.tcs-product-pill { display: flex; align-items: center; gap: 12px; min-height: 72px; padding: 16px; border: 1px solid var(--tcs-slate-200); border-radius: 18px; background: var(--tcs-white); color: var(--tcs-navy-900); font-weight: 850; box-shadow: var(--tcs-shadow-sm); }
.tcs-product-pill svg { width: 22px; height: 22px; color: var(--product-color, var(--tcs-violet)); flex: 0 0 auto; }
.tcs-product-pill:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--product-color, var(--tcs-violet)) 35%, var(--tcs-slate-200)); box-shadow: var(--tcs-shadow-md); }
.tcs-product-hero { overflow: hidden; }
.tcs-product-hero::after { content: ""; position: absolute; width: 520px; height: 520px; right: -180px; bottom: -240px; border-radius: 50%; background: radial-gradient(circle, color-mix(in srgb, var(--product-color, var(--tcs-violet)) 34%, transparent), transparent 70%); }
.tcs-product-hero__layout { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(280px, .7fr); gap: 40px; align-items: center; }
.tcs-product-hero__panel { position: relative; overflow: hidden; padding: 34px; border: 1px solid rgba(255,255,255,.16); border-radius: 30px; background: rgba(255,255,255,.08); color: #fff; box-shadow: 0 28px 70px rgba(0,0,0,.26); backdrop-filter: blur(14px); }
.tcs-product-hero__panel::before { content: ""; position: absolute; width: 220px; height: 220px; right: -110px; top: -110px; border-radius: 50%; background: color-mix(in srgb, var(--product-color, var(--tcs-cyan)) 35%, transparent); }
.tcs-product-hero__icon { position: relative; width: 78px; height: 78px; display: grid; place-items: center; margin-bottom: 28px; border-radius: 24px; background: linear-gradient(135deg, color-mix(in srgb, var(--product-color) 50%, #fff), rgba(255,255,255,.16)); }
.tcs-product-hero__icon svg { width: 38px; height: 38px; }
.tcs-product-hero__panel strong { position: relative; display: block; margin-bottom: 12px; font-size: 30px; line-height: 1.05; letter-spacing: -.035em; }
.tcs-product-hero__panel span { position: relative; color: #c7d4ee; }
.tcs-product-next-step { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; margin-top: 42px; padding: 30px; border-radius: 24px; border: 1px solid color-mix(in srgb, var(--product-color, var(--tcs-violet)) 28%, var(--tcs-slate-200)); background: linear-gradient(135deg, color-mix(in srgb, var(--product-color, var(--tcs-violet)) 9%, white), #fff); box-shadow: var(--tcs-shadow-sm); }
.tcs-product-next-step h3 { margin: 4px 0 8px; font-size: 26px; letter-spacing: -.03em; }
.tcs-product-next-step p { margin: 0; color: var(--tcs-slate-600); }
@media (max-width: 1100px) { .tcs-products-grid, .tcs-products-grid--compact, .tcs-products-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 760px) { .tcs-products-grid, .tcs-products-grid--compact, .tcs-products-strip, .tcs-product-hero__layout, .tcs-product-next-step { grid-template-columns: 1fr; } .tcs-product-next-step .tcs-btn { width: 100%; } }


/* Techno Cuts Solutions v1.3.2 - premium warm-tech redesign with homepage slider */
:root {
  --tcs-navy-950: #111827;
  --tcs-navy-900: #172033;
  --tcs-navy-800: #223047;
  --tcs-navy-700: #31415f;
  --tcs-slate-700: #4b5563;
  --tcs-slate-600: #64748b;
  --tcs-slate-500: #7a8798;
  --tcs-slate-300: #cbd5e1;
  --tcs-slate-200: #e2e8f0;
  --tcs-slate-100: #f2f6f8;
  --tcs-slate-50: #fffaf2;
  --tcs-white: #ffffff;
  --tcs-cyan: #14b8a6;
  --tcs-cyan-dark: #0f766e;
  --tcs-violet: #2563eb;
  --tcs-purple: #0f766e;
  --tcs-mint: #f59e0b;
  --tcs-orange: #f97316;
  --tcs-rose: #ef4444;
  --tcs-success: #16a34a;
  --tcs-danger: #dc2626;
  --tcs-shadow-sm: 0 10px 26px rgba(17, 24, 39, 0.07);
  --tcs-shadow-md: 0 22px 60px rgba(17, 24, 39, 0.12);
  --tcs-shadow-lg: 0 38px 100px rgba(17, 24, 39, 0.17);
  --tcs-radius-sm: 14px;
  --tcs-radius: 24px;
  --tcs-radius-lg: 36px;
}
body { background: linear-gradient(180deg, #fffaf2 0%, #ffffff 36%, #f6f9fb 100%); color: var(--tcs-navy-900); }
::selection { background: rgba(245, 158, 11, .25); color: var(--tcs-navy-950); }
.tcs-section--soft { background: linear-gradient(180deg, #fff7e8, #f5fbfb); }
.tcs-kicker { color: var(--tcs-cyan-dark); }
.tcs-gradient-text { background: linear-gradient(120deg, var(--tcs-cyan-dark), var(--tcs-orange)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.tcs-topbar { background: linear-gradient(90deg, #111827, #24324c 55%, #0f766e); color: #f9fafb; }
.tcs-topbar__dot { background: var(--tcs-orange); box-shadow: 0 0 0 5px rgba(249, 115, 22, .18); }
.tcs-topbar__email { color: #fff7ed; border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.10); }
.tcs-topbar__email svg { color: #fed7aa; }
.tcs-header { background: rgba(255, 250, 242, .90); backdrop-filter: blur(18px); border-bottom: 1px solid rgba(148, 163, 184, .24); }
.tcs-header__inner { min-height: 88px; }
.tcs-nav a { color: #233047; }
.tcs-nav a:hover, .tcs-nav .current-menu-item > a, .tcs-nav .current-menu-ancestor > a { color: var(--tcs-cyan-dark); background: rgba(20,184,166,.09); }
.tcs-header__email { color: var(--tcs-cyan-dark); }
.tcs-btn--primary { color: #111827; background: linear-gradient(135deg, #fde68a, #f97316 70%, #fb923c); box-shadow: 0 16px 36px rgba(249,115,22,.25); }
.tcs-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 22px 44px rgba(249,115,22,.28); }
.tcs-btn--dark { color: #fff; background: linear-gradient(135deg, #172033, #0f766e); box-shadow: 0 15px 38px rgba(15,118,110,.22); }
.tcs-btn--dark:hover { background: linear-gradient(135deg, #111827, #0b5f5a); }
.tcs-btn--outline { background: rgba(255,255,255,.86); border-color: rgba(15,118,110,.20); }
.tcs-btn--outline:hover { border-color: rgba(249,115,22,.45); }
.tcs-hero { position: relative; min-height: 760px; display: block; overflow: hidden; color: #fff; background: linear-gradient(135deg, #111827 0%, #263349 46%, #0f766e 100%); }
.tcs-hero::before, .tcs-hero::after { display: none; }
.tcs-hero__mesh { position: absolute; inset: 0; opacity: .8; background:
  radial-gradient(circle at 12% 20%, rgba(249,115,22,.38), transparent 28%),
  radial-gradient(circle at 76% 12%, rgba(20,184,166,.34), transparent 32%),
  radial-gradient(circle at 78% 82%, rgba(245,158,11,.28), transparent 35%),
  linear-gradient(135deg, rgba(17,24,39,.96), rgba(35,48,71,.90)); }
.tcs-hero__mesh::after { content: ""; position: absolute; inset: 0; opacity: .22; background-image: linear-gradient(120deg, rgba(255,255,255,.10) 1px, transparent 1px), linear-gradient(30deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(90deg, black, transparent 95%); }
.tcs-hero-slider { position: relative; z-index: 2; min-height: 760px; }
.tcs-hero-slide { position: absolute; inset: 0; display: grid; align-items: center; opacity: 0; visibility: hidden; transform: scale(1.015); transition: opacity 520ms ease, transform 700ms ease, visibility 520ms ease; }
.tcs-hero-slide.is-active { opacity: 1; visibility: visible; transform: scale(1); z-index: 2; }
.tcs-hero-slide__inner { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(390px, .98fr); gap: 64px; align-items: center; padding: 104px 0 128px; }
.tcs-hero-slide__copy { max-width: 720px; }
.tcs-hero__badge { color: #fff7ed; background: rgba(255, 255, 255, .10); border-color: rgba(255,255,255,.18); text-transform: uppercase; letter-spacing: .08em; font-size: 12px; }
.tcs-hero__badge span { background: var(--slide-accent, var(--tcs-orange)); box-shadow: 0 0 0 6px rgba(249, 115, 22, .18); }
.tcs-hero h1 { max-width: 760px; margin: 0; font-size: clamp(46px, 6vw, 78px); line-height: .98; letter-spacing: -.06em; }
.tcs-hero__lead { max-width: 660px; color: #e5edf4; font-size: clamp(18px, 2vw, 21px); }
.tcs-hero__proof { gap: 16px 22px; color: #f8fafc; }
.tcs-hero__proof span { padding: 7px 10px; border-radius: 999px; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.12); }
.tcs-hero__proof svg { color: #fed7aa; }
.tcs-hero-showcase { position: relative; min-height: 520px; }
.tcs-hero-showcase__screen { position: absolute; inset: 16px 0 40px 20px; overflow: hidden; border: 1px solid rgba(255,255,255,.18); border-radius: 34px; background: linear-gradient(145deg, rgba(255,255,255,.98), rgba(255,247,232,.90)); color: var(--tcs-navy-900); box-shadow: 0 38px 100px rgba(0,0,0,.32); }
.tcs-hero-showcase__screen::before { content: ""; position: absolute; width: 260px; height: 260px; border-radius: 50%; right: -80px; top: -90px; background: radial-gradient(circle, rgba(249, 115, 22, .20), transparent 70%); }
.tcs-hero-showcase__top { position: relative; z-index: 2; height: 58px; display: flex; align-items: center; gap: 8px; padding: 0 22px; border-bottom: 1px solid rgba(148, 163, 184, .25); background: rgba(255,255,255,.62); }
.tcs-hero-showcase__top span { width: 10px; height: 10px; border-radius: 50%; background: #f97316; }
.tcs-hero-showcase__top span:nth-child(2) { background: #f59e0b; }
.tcs-hero-showcase__top span:nth-child(3) { background: #14b8a6; }
.tcs-hero-showcase__top strong { margin-left: auto; color: #64748b; font-size: 12px; letter-spacing: .11em; text-transform: uppercase; }
.tcs-hero-showcase__body { position: relative; z-index: 2; display: grid; grid-template-columns: .98fr 1.02fr; gap: 20px; padding: 28px; }
.tcs-hero-showcase__main { min-height: 300px; padding: 26px; border-radius: 28px; color: #fff; background: linear-gradient(145deg, #172033, #0f766e); box-shadow: inset 0 1px 0 rgba(255,255,255,.16), 0 22px 52px rgba(15,118,110,.22); }
.tcs-hero-showcase__icon { width: 72px; height: 72px; display: grid; place-items: center; border-radius: 22px; color: #111827; background: linear-gradient(135deg, #fde68a, var(--slide-accent, #f97316)); margin-bottom: 58px; }
.tcs-hero-showcase__icon svg { width: 36px; height: 36px; }
.tcs-hero-showcase__main strong { display: block; font-size: 32px; line-height: 1.04; letter-spacing: -.04em; }
.tcs-hero-showcase__main p { color: rgba(255,255,255,.78); margin: 10px 0 0; }
.tcs-hero-showcase__rows { display: grid; gap: 12px; align-content: start; }
.tcs-hero-showcase__rows div { display: flex; align-items: center; gap: 10px; padding: 15px 16px; border: 1px solid rgba(148,163,184,.24); border-radius: 18px; background: rgba(255,255,255,.76); color: #334155; font-weight: 850; }
.tcs-hero-showcase__rows span { width: 10px; height: 10px; border-radius: 50%; background: var(--slide-accent, #f97316); }
.tcs-floating-card { position: absolute; z-index: 4; min-width: 142px; padding: 17px 18px; border: 1px solid rgba(255,255,255,.44); border-radius: 20px; color: #111827; background: rgba(255,255,255,.88); box-shadow: 0 22px 52px rgba(0,0,0,.18); backdrop-filter: blur(12px); }
.tcs-floating-card strong { display: block; font-size: 28px; letter-spacing: -.04em; line-height: 1; }
.tcs-floating-card span { color: #64748b; font-size: 12px; font-weight: 850; }
.tcs-floating-card--one { top: 0; right: 0; }
.tcs-floating-card--two { left: 0; bottom: 78px; }
.tcs-floating-card--three { right: 26px; bottom: 0; }
.tcs-hero-slider__controls { position: absolute; left: 50%; bottom: 48px; transform: translateX(-50%); z-index: 5; display: flex; align-items: center; gap: 14px; pointer-events: none; }
.tcs-slider-dots { display: inline-flex; align-items: center; gap: 8px; padding: 8px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; background: rgba(255,255,255,.10); pointer-events: auto; }
.tcs-slider-dot { width: 10px; height: 10px; padding: 0; border: 0; border-radius: 999px; background: rgba(255,255,255,.55); transition: width 220ms ease, background 220ms ease; }
.tcs-slider-dot.is-active { width: 34px; background: #f97316; }
.tcs-slider-arrow { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; color: #fff; background: rgba(255,255,255,.12); backdrop-filter: blur(10px); pointer-events: auto; transition: all var(--tcs-transition); }
.tcs-slider-arrow:hover { background: rgba(255,255,255,.22); transform: translateX(-2px); }
.tcs-slider-arrow svg { width: 18px; height: 18px; transform: rotate(180deg); }
.tcs-slider-arrow--next:hover { transform: translateX(2px); }
.tcs-slider-arrow--next svg { transform: none; }
.tcs-trustbar { margin-top: -58px; }
.tcs-trustbar__inner { border: 0; background: rgba(255,255,255,.78); box-shadow: 0 26px 80px rgba(17,24,39,.12); backdrop-filter: blur(18px); }
.tcs-stat { background: rgba(255,255,255,.86); }
.tcs-stat strong { color: var(--tcs-navy-950); }
.tcs-card, .tcs-package-card, .tcs-product-card { border-color: rgba(148,163,184,.24); box-shadow: 0 14px 36px rgba(17,24,39,.07); }
.tcs-card:hover, .tcs-package-card:hover, .tcs-product-card:hover { border-color: rgba(249,115,22,.38); box-shadow: 0 24px 62px rgba(17,24,39,.12); }
.tcs-service-card__icon, .tcs-product-card__icon, .tcs-package-card__icon { background: linear-gradient(135deg, rgba(20,184,166,.12), rgba(249,115,22,.14)); color: var(--tcs-cyan-dark); }
.tcs-package-card__badge { color: #7c2d12; background: #ffedd5; }
.tcs-package-card li::before, .tcs-checklist__icon { color: #111827; background: linear-gradient(135deg, #fde68a, #f97316); }
.tcs-dark-band, .tcs-section--dark, .tcs-footer, .tcs-page-hero, .tcs-contact-panel { background: linear-gradient(135deg, #111827, #24324c 58%, #0f766e); }
.tcs-post-card__image { background: linear-gradient(140deg, #0f766e, #f97316); }
.tcs-logo-cloud, .tcs-partner-card { background: rgba(255,255,255,.76); }
@media (max-width: 1100px) {
  .tcs-hero-slide__inner { grid-template-columns: 1fr; gap: 34px; padding-top: 76px; }
  .tcs-hero-showcase { min-height: 430px; }
  .tcs-hero-showcase__screen { inset: 0; }
  .tcs-floating-card--one { right: 12px; }
}
@media (max-width: 700px) {
  .tcs-hero, .tcs-hero-slider { min-height: 860px; }
  .tcs-hero-slide__inner { padding: 54px 0 120px; }
  .tcs-hero h1 { font-size: clamp(40px, 12vw, 54px); }
  .tcs-hero__proof span { width: 100%; }
  .tcs-hero-showcase { min-height: 410px; }
  .tcs-hero-showcase__body { grid-template-columns: 1fr; padding: 18px; }
  .tcs-hero-showcase__main { min-height: 180px; }
  .tcs-hero-showcase__icon { margin-bottom: 26px; }
  .tcs-floating-card { display: none; }
  .tcs-hero-slider__controls { bottom: 34px; justify-content: center; }
  .tcs-slider-arrow { display: none; }
}

/* FINAL header logo patch v1.3.2 */
.tcs-header .tcs-container { width: min(calc(100% - 48px), 1440px); }
.tcs-header .tcs-logo.tcs-logo--inline { display: inline-flex !important; flex: 0 0 auto; width: auto !important; min-width: 204px; max-width: none !important; gap: 12px; align-items: center; color: var(--tcs-navy-950); }
.tcs-header .tcs-logo__mark { width: 46px; height: 46px; flex: 0 0 46px; display: grid; place-items: center; border-radius: 15px; background: #fff; box-shadow: 0 12px 28px rgba(15, 118, 110, .16); }
.tcs-header .tcs-logo__mark svg { width: 38px; height: 38px; display: block; }
.tcs-header .tcs-logo__words { display: grid; line-height: 1; letter-spacing: -.035em; }
.tcs-header .tcs-logo__words strong { display: block; font-size: 20px; font-weight: 950; color: #111827; white-space: nowrap; }
.tcs-header .tcs-logo__words small { display: block; margin-top: 4px; font-size: 11px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; color: var(--tcs-cyan-dark); white-space: nowrap; }
.tcs-header .tcs-header__inner { gap: 18px; }
.tcs-header .tcs-nav { flex: 1 1 auto; min-width: 0; }
.tcs-header .tcs-nav ul { gap: 2px; }
.tcs-header .tcs-nav a { padding-inline: 10px; font-size: 14px; }
@media (max-width: 1380px) { .tcs-header .tcs-header__email { display: none; } .tcs-header .tcs-logo.tcs-logo--inline { min-width: 190px; } }
@media (max-width: 1180px) { .tcs-header .tcs-logo.tcs-logo--inline { min-width: 178px; } .tcs-header .tcs-logo__words strong { font-size: 18px; } .tcs-header .tcs-logo__words small { font-size: 10px; letter-spacing: .15em; } }
@media (max-width: 960px) { .tcs-header .tcs-container { width: min(calc(100% - 28px), var(--tcs-container)); } .tcs-header .tcs-logo.tcs-logo--inline { min-width: 0; } }
@media (max-width: 440px) { .tcs-header .tcs-logo__words strong { font-size: 16px; } .tcs-header .tcs-logo__words small { font-size: 9px; } .tcs-header .tcs-logo__mark { width: 40px; height: 40px; flex-basis: 40px; border-radius: 12px; } .tcs-header .tcs-logo__mark svg { width: 33px; height: 33px; } }


/* v1.3.4 customer-ready branding updates */
.tcs-logo--image { display:inline-flex !important; align-items:center; flex:0 0 auto; width:min(283px, 24vw); min-width:210px; max-width:none; }
.tcs-logo--image img { display:block; width:100%; height:auto; }
.tcs-footer__logo { display:inline-flex; width:min(283px, 100%); }
.tcs-footer__logo img { display:block; width:100%; height:auto; }
.tcs-header .tcs-logo--inline, .tcs-logo__mark, .tcs-logo__words { display:none !important; }
@media (max-width: 1380px) { .tcs-logo--image { width:min(250px, 22vw); min-width:190px; } }
@media (max-width: 1180px) { .tcs-logo--image { width:min(220px, 20vw); min-width:170px; } }
@media (max-width: 960px) { .tcs-logo--image { width:210px; min-width:0; } }
@media (max-width: 520px) { .tcs-logo--image { width:180px; } }


/* v1.3.5 transparent logo and non-sticky header fix */
.tcs-header,
.admin-bar .tcs-header {
  position: relative !important;
  top: auto !important;
  z-index: 50;
}

.tcs-logo--image {
  display: inline-flex !important;
  align-items: center;
  flex: 0 0 auto;
  width: 260px;
  max-width: 26vw;
  min-width: 210px;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.tcs-logo--image img,
.tcs-footer__logo img {
  display: block;
  width: 100%;
  height: auto;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.tcs-footer__logo {
  display: inline-flex;
  width: 260px;
  max-width: 100%;
  background: transparent !important;
}

.tcs-header .tcs-logo--inline,
.tcs-logo__mark,
.tcs-logo__words {
  display: none !important;
}

@media (max-width: 1380px) {
  .tcs-logo--image { width: 235px; min-width: 190px; max-width: 22vw; }
}
@media (max-width: 1180px) {
  .tcs-logo--image { width: 210px; min-width: 175px; max-width: 20vw; }
}
@media (max-width: 960px) {
  .tcs-logo--image { width: 215px; min-width: 0; max-width: 68vw; }
}
@media (max-width: 520px) {
  .tcs-logo--image { width: 185px; }
}
