:root{
  --tvh-bg:#071a33;
  --tvh-header:#0a2a55;
  --tvh-header2:#0b356a;
  --tvh-primary:#1b66ff;
  --tvh-primary2:#0f48cc;
  --tvh-accent:#79b5ff;
  --tvh-text:#eaf2ff;
  --tvh-muted:rgba(234,242,255,.75);
  --tvh-card:rgba(255,255,255,.08);
  --tvh-card2:rgba(255,255,255,.12);
  --tvh-stroke:rgba(255,255,255,.18);
  --tvh-shadow:0 18px 40px rgba(0,0,0,.35);
  --tvh-radius:18px;
  --tvh-wrap:1180px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background: radial-gradient(1200px 700px at 30% 0%, rgba(32,110,255,.35), transparent 60%),
              radial-gradient(900px 600px at 90% 20%, rgba(121,181,255,.25), transparent 60%),
              linear-gradient(180deg, var(--tvh-bg), #050e1d 70%, #030914);
  color:var(--tvh-text);
}

a{color:inherit;text-decoration:none}
a:focus{outline:2px solid var(--tvh-accent); outline-offset:3px}
img{max-width:100%;height:auto;display:block}
.tvh-wrap{width:100%;max-width:var(--tvh-wrap);margin:0 auto;padding:0 18px}

.tvh-topbar{
  height:6px;
  background:linear-gradient(90deg, rgba(121,181,255,.35), rgba(27,102,255,.85), rgba(121,181,255,.35));
}

.tvh-header{
  position:sticky;
  top:0;
  z-index:999;
  background:linear-gradient(180deg, rgba(11,53,106,.92), rgba(7,26,51,.78));
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.tvh-header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:16px;
}

.tvh-brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:220px;
}

.tvh-brand .tvh-site-title{
  font-weight:900;
  letter-spacing:.4px;
  font-size:16px;
  line-height:1.1;
  text-transform:uppercase;
  opacity:.95;
}

.tvh-logo{
  display:flex;
  align-items:center;
  gap:10px;
}

.tvh-logo img{
  width:auto;
  height:var(--tvh-logo-h, 44px);
}

.tvh-nav{
  display:flex;
  align-items:center;
  gap:18px;
  justify-content:center;
  flex:1;
}

.tvh-nav a{
  padding:10px 10px;
  border-radius:999px;
  color:rgba(234,242,255,.92);
  font-weight:600;
  font-size:14px;
  letter-spacing:.2px;
}

.tvh-nav a:hover{
  background:rgba(255,255,255,.08);
}

.tvh-nav .current-menu-item>a,
.tvh-nav .current_page_item>a{
  background:rgba(255,255,255,.10);
}

.tvh-header-actions{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:220px;
  justify-content:flex-end;
}

.tvh-call-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:12px;
  border:1px solid rgba(121,181,255,.35);
  background:linear-gradient(180deg, rgba(27,102,255,.95), rgba(15,72,204,.95));
  box-shadow:0 10px 22px rgba(0,0,0,.25);
  font-weight:800;
  letter-spacing:.2px;
  white-space:nowrap;
}

.tvh-call-btn small{
  font-weight:700;
  opacity:.9;
}

.tvh-call-btn:hover{filter:brightness(1.05)}

.tvh-burger{
  display:none;
  width:42px;
  height:42px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

.tvh-burger span{
  width:18px;
  height:2px;
  background:rgba(234,242,255,.92);
  display:block;
  position:relative;
}

.tvh-burger span:before,
.tvh-burger span:after{
  content:"";
  position:absolute;
  left:0;
  width:18px;
  height:2px;
  background:rgba(234,242,255,.92);
}

.tvh-burger span:before{top:-6px}
.tvh-burger span:after{top:6px}

.tvh-mobile-drawer{
  display:none;
  position:fixed;
  inset:0;
  z-index:1000;
}

.tvh-mobile-drawer[aria-hidden="false"]{display:block}

.tvh-mobile-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.55);
}

.tvh-mobile-panel{
  position:absolute;
  right:0;
  top:0;
  height:100%;
  width:min(360px, 90vw);
  background:linear-gradient(180deg, rgba(11,53,106,.98), rgba(7,26,51,.98));
  border-left:1px solid rgba(255,255,255,.10);
  padding:18px;
  box-shadow:var(--tvh-shadow);
  display:flex;
  flex-direction:column;
  gap:14px;
}

.tvh-mobile-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.tvh-close{
  width:42px;
  height:42px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  cursor:pointer;
  position:relative;
}

.tvh-close:before,
.tvh-close:after{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  width:18px;
  height:2px;
  background:rgba(234,242,255,.92);
  transform-origin:center;
}

.tvh-close:before{transform:translate(-50%,-50%) rotate(45deg)}
.tvh-close:after{transform:translate(-50%,-50%) rotate(-45deg)}

.tvh-mobile-nav a{
  display:block;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.05);
  margin-bottom:10px;
  font-weight:700;
}

.tvh-mobile-nav a:hover{background:rgba(255,255,255,.08)}

.tvh-mobile-footer{
  margin-top:auto;
  padding-top:14px;
  border-top:1px solid rgba(255,255,255,.10);
  color:var(--tvh-muted);
  font-size:13px;
}

.tvh-hero{
  position:relative;
  padding:38px 0 28px;
  overflow:hidden;
}

.tvh-hero-bg{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  filter:saturate(1.05) contrast(1.05);
  opacity:.95;
}

.tvh-hero-bg:after{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(900px 600px at 20% 30%, rgba(7,26,51,.20), rgba(7,26,51,.86) 60%),
              linear-gradient(180deg, rgba(7,26,51,.25), rgba(7,26,51,.92));
}

.tvh-hero-inner{
  position:relative;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:18px;
  align-items:center;
  min-height:520px;
}

.tvh-hero-copy{
  padding:18px 0;
}

.tvh-hero h1{
  margin:0 0 12px;
  font-size:52px;
  line-height:1.05;
  font-weight:950;
  letter-spacing:-.6px;
  text-shadow:0 14px 30px rgba(0,0,0,.45);
  color:#fff;
  display:block;
  visibility:visible;
  opacity:1;
}

.tvh-hero p{
  margin:0 0 18px;
  font-size:16px;
  color:var(--tvh-muted);
  max-width:520px;
}

.tvh-hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.tvh-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.06);
  font-weight:900;
  letter-spacing:.2px;
}

.tvh-btn.primary{
  border-color:rgba(121,181,255,.35);
  background:linear-gradient(180deg, rgba(27,102,255,.95), rgba(15,72,204,.95));
}

.tvh-btn:hover{filter:brightness(1.06)}

.tvh-hero-car{
  position:relative;
  width:100%;
  max-width:720px;
  margin-left:auto;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,.45));
}

.tvh-hero-car img{
  width:100%;
  height:auto;
  transform:translateY(10px);
}

main h1,
article h1,
section h1,
.entry-content h1,
.page-content h1{
  display:block !important;
  visibility:visible !important;
  opacity:1 !important;
  color:#ffffff !important;
  font-size:clamp(38px, 4.2vw, 56px) !important;
  line-height:1.08 !important;
  font-weight:950 !important;
  letter-spacing:-.5px !important;
  margin:0 0 18px !important;
  text-shadow:0 10px 24px rgba(0,0,0,.28) !important;
}

main h2,
article h2,
section h2,
.entry-content h2,
.page-content h2{
  display:block;
  visibility:visible;
  opacity:1;
  margin:32px 0 14px;
  font-size:clamp(28px, 3vw, 38px);
  line-height:1.15;
  font-weight:900;
  letter-spacing:-.3px;
  color:#ffffff;
}

main h3,
article h3,
section h3,
.entry-content h3,
.page-content h3{
  display:block;
  visibility:visible;
  opacity:1;
  margin:24px 0 12px;
  font-size:clamp(21px, 2.1vw, 28px);
  line-height:1.2;
  font-weight:850;
  letter-spacing:-.2px;
  color:rgba(234,242,255,.98);
}

main p,
article p,
section p,
.entry-content p,
.page-content p{
  line-height:1.7;
}

main h1 + p,
article h1 + p,
section h1 + p,
.entry-content h1 + p,
.page-content h1 + p{
  font-size:18px;
}

.tvh-section-title{
  text-align:center;
  margin:28px 0 16px;
  font-size:22px;
  font-weight:950;
  letter-spacing:.2px;
  color:rgba(234,242,255,.95);
}

.tvh-services{
  padding:8px 0 6px;
}

.tvh-cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}

.tvh-card{
  background:linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.05));
  border:1px solid rgba(255,255,255,.12);
  border-radius:16px;
  padding:18px 18px 16px;
  box-shadow:0 18px 40px rgba(0,0,0,.22);
  min-height:124px;
}

.tvh-card .tvh-ico{
  width:44px;
  height:44px;
  border-radius:14px;
  background:rgba(121,181,255,.15);
  border:1px solid rgba(121,181,255,.25);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:10px;
}

.tvh-card h3{
  margin:0 0 6px;
  font-size:16px;
  font-weight:900;
}

.tvh-card p{
  margin:0;
  color:var(--tvh-muted);
  font-size:13.5px;
  line-height:1.45;
}

.tvh-why{
  position:relative;
  padding:26px 0 0;
}

.tvh-why-title{
  text-align:center;
  font-size:22px;
  font-weight:950;
  margin:0 0 14px;
}

.tvh-why-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}

.tvh-why-card{
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  padding:16px;
  display:flex;
  gap:12px;
  align-items:center;
}

.tvh-why-ico{
  width:58px;
  height:58px;
  border-radius:18px;
  background:rgba(121,181,255,.15);
  border:1px solid rgba(121,181,255,.25);
  display:flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
}

.tvh-why-card h4{
  margin:0 0 4px;
  font-size:15px;
  font-weight:950;
}

.tvh-why-card p{
  margin:0;
  font-size:13px;
  color:var(--tvh-muted);
  line-height:1.45;
}

.tvh-callout{
  margin:18px 0 28px;
  padding:18px 16px;
  border-radius:18px;
  border:1px solid rgba(121,181,255,.30);
  background:linear-gradient(180deg, rgba(27,102,255,.28), rgba(255,255,255,.05));
  box-shadow:0 24px 50px rgba(0,0,0,.25);
  text-align:center;
}

.tvh-callout .tvh-callout-small{
  margin:0 0 6px;
  color:rgba(234,242,255,.92);
  font-weight:800;
}

.tvh-callout .tvh-callout-phone{
  display:inline-flex;
  align-items:center;
  gap:12px;
  font-size:44px;
  font-weight:950;
  letter-spacing:.6px;
  margin:0;
}

.tvh-phone-ico{
  width:46px;
  height:46px;
  border-radius:16px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.16);
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.tvh-footer{
  position:relative;
  margin-top:34px;
  padding:26px 0 30px;
  border-top:1px solid rgba(255,255,255,.10);
  background:linear-gradient(180deg, rgba(7,26,51,.4), rgba(3,9,20,.85));
  overflow:hidden;
}

.tvh-footer-bg{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:.25;
  filter:saturate(1.1) blur(.2px);
}

.tvh-footer-inner{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}

.tvh-footer small{
  color:var(--tvh-muted);
  font-weight:650;
}

.tvh-footer a{color:rgba(234,242,255,.92); text-decoration:underline}

.tvh-skip-link{
  position:absolute;
  left:-9999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}

.tvh-skip-link:focus{
  left:14px;
  top:14px;
  width:auto;
  height:auto;
  padding:10px 12px;
  background:#000;
  z-index:9999;
  border-radius:10px;
}

@media (max-width: 980px){
  .tvh-nav{display:none}
  .tvh-burger{display:inline-flex}
  .tvh-header-actions{min-width:auto}
  .tvh-brand{min-width:auto}
  .tvh-hero-inner{grid-template-columns:1fr; min-height:auto}
  .tvh-hero h1{font-size:44px}
  .tvh-hero-car{max-width:760px}

  main h1,
  article h1,
  section h1,
  .entry-content h1,
  .page-content h1{
    font-size:clamp(34px, 5vw, 46px) !important;
  }

  main h2,
  article h2,
  section h2,
  .entry-content h2,
  .page-content h2{
    font-size:clamp(26px, 3.6vw, 34px);
  }

  main h3,
  article h3,
  section h3,
  .entry-content h3,
  .page-content h3{
    font-size:clamp(20px, 2.5vw, 24px);
  }
}

@media (max-width: 680px){
  .tvh-hero{padding:26px 0 14px}
  .tvh-hero h1{font-size:36px}
  .tvh-hero p{font-size:15px}
  .tvh-cards{grid-template-columns:1fr}
  .tvh-why-grid{grid-template-columns:1fr}
  .tvh-callout .tvh-callout-phone{font-size:34px}

  main h1,
  article h1,
  section h1,
  .entry-content h1,
  .page-content h1{
    font-size:32px !important;
    line-height:1.12 !important;
  }

  main h2,
  article h2,
  section h2,
  .entry-content h2,
  .page-content h2{
    font-size:26px;
    line-height:1.16;
  }

  main h3,
  article h3,
  section h3,
  .entry-content h3,
  .page-content h3{
    font-size:21px;
    line-height:1.22;
  }
}