﻿:root{
  --primary: #49c2d8;
  --primary2: #3aa1c6;
  --primary3: #7ad3e6;

  --bg0: #060b16;
  --bg1: #081326;
  --bg2: #0b1b34;

  --card: rgba(255,255,255,.06);
  --card-strong: linear-gradient(180deg, rgba(30,45,74,.95), rgba(25,39,66,.94));
  --border: rgba(255,255,255,.12);
  --border-accent: rgba(92,212,255,.28);

  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.72);

  --shadow: 0 20px 60px rgba(0,0,0,.35);
  --shadow-soft: 0 16px 40px rgba(0,0,0,.30);
  --shadow-hover: 0 22px 44px rgba(0,0,0,.28), 0 0 0 1px rgba(92,212,255,.05) inset;

  --radius: 18px;
  --radius-lg: 22px;
  --radius-xl: 24px;
}

html{
  scroll-behavior: smooth;
}

*{
  box-sizing: border-box;
}

body{
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(900px 420px at 15% 10%, rgba(73,194,216,.16), transparent 62%),
    radial-gradient(900px 520px at 85% 20%, rgba(58,161,198,.14), transparent 62%),
    linear-gradient(180deg, var(--bg0), var(--bg1) 45%, var(--bg2));
}

img{
  max-width: 100%;
  height: auto;
  display: block;
}

a{
  color: inherit;
  text-decoration: none;
}

:focus-visible{
  outline: 2px solid rgba(73,194,216,.55);
  outline-offset: 2px;
}

.tp-container{
  width: min(1120px, calc(100% - 44px));
  margin-inline: auto;
}

.tp-gradient{
  background: linear-gradient(90deg, var(--primary3), var(--primary), var(--primary2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: text-shadow .3s ease;
}

.tp-muted{
  color: var(--muted);
}

.tp-pill{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: rgba(255,255,255,.92);
  margin-bottom: 6px;
}

.tp-header{
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 72px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(6,11,22,.72), rgba(6,11,22,.45));
  backdrop-filter: blur(10px);
}

.tp-nav{
  position: relative;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.tp-brand{
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 950;
  letter-spacing: .2px;
}

.tp-logo{
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.tp-links{
  display: flex;
  align-items: center;
  gap: 14px;
}

.tp-links a{
  color: rgba(255,255,255,.8);
  font-weight: 850;
  font-size: 14px;
  padding: 10px 10px;
  border-radius: 12px;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}

.tp-links a:hover{
  color: rgba(255,255,255,.92);
  background: rgba(255,255,255,.06);
}

.tp-burger{
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.tp-burger span{
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255,255,255,.86);
}

.tp-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 900;
  letter-spacing: .2px;
  user-select: none;
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    filter .22s ease,
    background .22s ease,
    border-color .22s ease;
}

.tp-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0,0,0,.24);
  filter: brightness(1.03);
}

.tp-btn:active{
  transform: translateY(0);
}

.tp-btn-primary{
  background: linear-gradient(180deg, rgba(73,194,216,.95), rgba(58,161,198,.92));
  color: rgba(8,18,34,.95);
  box-shadow: 0 14px 34px rgba(0,0,0,.25);
}

.tp-btn-ghost{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.16);
  color: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
}

.tp-btn-ghost:hover{
  border-color: rgba(73,194,216,.3);
  background: rgba(255,255,255,.08);
}

.tp-btn-outline{
  background: rgba(255,255,255,.06);
  border-color: rgba(73,194,216,.35);
  color: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
}

.tp-btn-outline:hover{
  border-color: rgba(73,194,216,.55);
}

.tp-btn-sm{
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 14px;
}

.tp-hero{
  padding: 56px 0 26px;
}

.tp-hero-grid{
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px;
  align-items: start;
}

.tp-hero-copy h1{
  margin: 14px 0 10px;
  font-size: clamp(32px, 3.6vw, 54px);
  line-height: 1.06;
  letter-spacing: -.4px;
}

.tp-hero-copy p{
  margin: 0 0 18px;
  color: rgba(255,255,255,.78);
  font-size: 16.5px;
  line-height: 1.55;
}

.tp-hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 16px;
}

.tp-badges{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tp-badges span{
  display: inline-flex;
  align-items: center;
  padding: .45rem .9rem;
  border-radius: 999px;
  border: 1px solid rgba(120,180,255,.18);
  background: rgba(18,35,63,.6);
  color: rgba(255,255,255,.88);
  font-weight: 700;
  font-size: .9rem;
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    border-color .25s ease,
    background .25s ease;
}

.tp-badges span:hover{
  transform: translateY(-4px) scale(1.03);
  border-color: rgba(92,212,255,.45);
  background: rgba(30,60,100,.55);
  box-shadow: 0 14px 30px rgba(0,0,0,.28), 0 0 12px rgba(92,212,255,.1);
}

.tp-hero-card,
.tp-card,
.tp-quote,
.tp-faq-card,
.tp-contact-info,
.tp-contact-form-card{
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--card);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
}

.tp-hero-card{
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.tp-hero-card:hover{
  transform: translateY(-6px);
  border-color: rgba(92,212,255,.25);
  box-shadow: 0 22px 50px rgba(0,0,0,.45), 0 0 20px rgba(92,212,255,.08);
}

.tp-hero:hover .tp-gradient{
  text-shadow: 0 0 16px rgba(92,212,255,.4);
}

.tp-hero-card-top{
  padding: 16px 16px 10px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  background:
    radial-gradient(700px 180px at 35% 20%, rgba(73,194,216,.22), transparent 62%),
    linear-gradient(180deg, rgba(8,22,40,.65), rgba(8,22,40,.35));
}

.tp-mini{
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.8);
  font-weight: 900;
  font-size: 14px;
}

.dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(73,194,216,.9);
  box-shadow: 0 0 0 6px rgba(73,194,216,.16);
}

.tp-hero-metrics{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px;
  padding: 14px 16px 16px;
}

.tp-metric{
  padding: 1rem;
  border-radius: 16px;
  border: 1px solid rgba(120,180,255,.12);
  background: rgba(28,40,63,.75);
  transition:
    transform .28s ease,
    box-shadow .28s ease,
    border-color .28s ease,
    background .28s ease;
}

.tp-metric:hover{
  transform: translateY(-4px);
  border-color: rgba(92,212,255,.35);
  background: rgba(40,60,95,.75);
  box-shadow: 0 14px 28px rgba(0,0,0,.32), 0 0 12px rgba(92,212,255,.12);
}

.tp-metric strong{
  display: block;
  font-size: 16px;
  letter-spacing: .2px;
}

.tp-metric span{
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,.7);
  font-weight: 700;
  font-size: 13px;
}

.tp-hero-card-cta{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px 16px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.tp-scroll{
  margin-top: 18px;
  color: rgba(255,255,255,.62);
  font-weight: 800;
  font-size: 13px;
}

.tp-section{
  position: relative;
  overflow: hidden;
  padding: 56px 0;
}

.tp-section::before{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 20%, rgba(92,212,255,.04), transparent 30%),
    radial-gradient(circle at 80% 30%, rgba(92,212,255,.03), transparent 28%);
}

.tp-section-alt{
  background: rgba(255,255,255,.03);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.tp-section-head{
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 28px;
}

.tp-section-head h2{
  margin: 0 0 10px;
  font-size: 28px;
  letter-spacing: -.3px;
  transition: transform .25s ease, text-shadow .25s ease;
}

.tp-section:hover .tp-section-head h2{
  transform: translateY(-1px);
  text-shadow: 0 0 18px rgba(92,212,255,.1);
}

.tp-section-head p{
  margin: 0 auto;
  color: rgba(255,255,255,.72);
  line-height: 1.55;
}

.tp-section-head h2::after{
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  margin: 12px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary3), var(--primary));
}

.tp-grid-3{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
}

.tp-card,
.tp-quote,
.tp-faq-card{
  position: relative;
  z-index: 1;
  padding: 18px;
  transition:
    transform .28s ease,
    box-shadow .28s ease,
    border-color .28s ease,
    background .28s ease;
}

.tp-card:hover,
.tp-quote:hover,
.tp-faq-card:hover,
.tp-contact-info:hover,
.tp-contact-form-card:hover,
.tp-accordion details:hover{
  transform: translateY(-6px);
  border-color: rgba(92,212,255,.3);
  box-shadow: var(--shadow-hover);
}

.tp-card p,
.tp-quote p{
  margin: 0;
  color: rgba(255,255,255,.76);
  line-height: 1.6;
}

.tp-list{
  margin: 10px 0 0;
  padding-left: 18px;
  color: rgba(255,255,255,.78);
  line-height: 1.65;
}

.tp-card-media{
  padding: 0;
  overflow: hidden;
  border-radius: 18px;
}

.tp-media{
  position: relative;
  overflow: hidden;
  height: 92px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  background:
    radial-gradient(700px 120px at 18% 30%, rgba(46,163,183,.16), transparent 62%),
    radial-gradient(650px 120px at 82% 40%, rgba(31,127,153,.12), transparent 65%),
    linear-gradient(180deg, rgba(8,22,40,.7), rgba(8,22,40,.38));
}

.tp-media-2{
  background:
    radial-gradient(700px 120px at 24% 30%, rgba(31,127,153,.16), transparent 62%),
    radial-gradient(650px 120px at 80% 40%, rgba(46,163,183,.12), transparent 65%),
    linear-gradient(180deg, rgba(8,22,40,.7), rgba(8,22,40,.38));
}

.tp-media-3{
  background:
    radial-gradient(700px 120px at 22% 30%, rgba(46,163,183,.14), transparent 62%),
    radial-gradient(650px 120px at 82% 40%, rgba(88,184,204,.1), transparent 65%),
    linear-gradient(180deg, rgba(8,22,40,.7), rgba(8,22,40,.38));
}

.tp-media::after,
.tp-media-2::after,
.tp-media-3::after{
  content: "";
  position: absolute;
  inset: 0;
  opacity: .16;
  pointer-events: none;
  background:
    linear-gradient(to right, rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 26px 26px;
}

.tp-media-inner{
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  z-index: 1;
  display: grid;
  gap: 8px;
}

.tp-media-inner h3{
  margin: 0;
  font-size: 16px;
  font-weight: 900;
  color: rgba(255,255,255,.95);
  letter-spacing: .2px;
  text-shadow: 0 10px 24px rgba(0,0,0,.38);
}

.tp-chips{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tp-chip{
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.88);
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(6px);
}

.tp-card-media:hover .tp-chip{
  border-color: rgba(46,163,183,.3);
}

.tp-card-media p{
  margin: 0;
  padding: 14px 18px 18px;
  color: rgba(255,255,255,.76);
}

.tp-clients-logos{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(6, minmax(0,1fr));
  gap: 18px;
  margin-top: 18px;
  align-items: center;
}

.tp-client-logo{
  position: relative;
  z-index: 1;
  width: 78px;
  height: 78px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background:
    radial-gradient(140px 90px at 30% 25%, rgba(73,194,216,.16), transparent 60%),
    rgba(255,255,255,.06);
  box-shadow: 0 16px 40px rgba(0,0,0,.3);
  backdrop-filter: blur(12px);
  transition:
    transform .28s ease,
    box-shadow .28s ease,
    border-color .28s ease,
    background .28s ease;
}

.tp-client-logo:hover{
  transform: translateY(-6px) scale(1.04);
  border-color: rgba(92,212,255,.34);
  box-shadow: 0 16px 34px rgba(0,0,0,.28), 0 0 18px rgba(92,212,255,.08);
}

.tp-client-logo img{
  width: 62%;
  height: 62%;
  object-fit: contain;
  filter: saturate(1.05);
  opacity: .92;
}

.tp-client-fallback{
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 16px;
  font-weight: 950;
  letter-spacing: .6px;
  color: rgba(255,255,255,.88);
  text-transform: uppercase;
}

.tp-client-logo.has-image .tp-client-fallback{
  display: none;
}

.tp-client-logo.no-image img{
  display: none;
}

.tp-client-logo::after{
  content: attr(data-tip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translateX(-50%) translateY(6px);
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(6,11,22,.86);
  color: rgba(255,255,255,.92);
  white-space: nowrap;
  font-size: 12.5px;
  font-weight: 900;
  letter-spacing: .2px;
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
  opacity: 0;
  pointer-events: none;
  z-index: 10;
  transition: opacity .15s ease, transform .15s ease;
}

.tp-client-logo::before{
  content: "";
  position: absolute;
  left: 50%;
  bottom: calc(100% + 2px);
  width: 10px;
  height: 10px;
  background: rgba(6,11,22,.86);
  border-left: 1px solid rgba(255,255,255,.14);
  border-top: 1px solid rgba(255,255,255,.14);
  rotate: 45deg;
  transform: translateX(-50%) translateY(6px);
  opacity: 0;
  pointer-events: none;
  z-index: 10;
  transition: opacity .15s ease, transform .15s ease;
}

.tp-client-logo:hover::after,
.tp-client-logo:hover::before{
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.tp-clients-cta{
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 18px;
}

.tp-quote-meta{
  margin-top: 12px;
  color: rgba(255,255,255,.62);
  font-weight: 800;
  font-size: 13px;
}

.tp-accordion{
  position: relative;
  z-index: 1;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  overflow: hidden;
}

.tp-accordion details{
  transition:
    transform .28s ease,
    box-shadow .28s ease,
    border-color .28s ease,
    background .28s ease;
}

.tp-accordion details + details{
  border-top: 1px solid rgba(255,255,255,.1);
}

.tp-accordion summary{
  list-style: none;
  cursor: pointer;
  padding: 14px 16px;
  font-weight: 900;
  color: rgba(255,255,255,.88);
}

.tp-accordion summary::-webkit-details-marker{
  display: none;
}

.tp-acc-body{
  padding: 0 16px 16px;
  color: rgba(255,255,255,.72);
  line-height: 1.6;
}

.tp-faq-grid{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 1.5rem;
  margin-top: 2.25rem;
}

.tp-faq-card{
  min-height: 148px;
  padding: 1.6rem 1.4rem;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(26,40,68,.92), rgba(21,33,56,.96));
}

.tp-faq-card h3{
  margin: 0 0 1rem;
  color: #fff;
  font-size: clamp(1.05rem, 1.1vw, 1.3rem);
  line-height: 1.35;
  font-weight: 800;
}

.tp-faq-card p{
  margin: 0;
  color: rgba(231,241,255,.84);
  font-size: 1rem;
  line-height: 1.75;
}

.tp-contact-grid{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px,1fr) minmax(340px,1.05fr);
  gap: 1.25rem;
  align-items: start;
  margin-top: 2rem;
}

.tp-contact-info,
.tp-contact-form-card{
  align-self: start;
  padding: 1.25rem 1.25rem 1.35rem;
  border-radius: var(--radius-xl);
  background: var(--card-strong);
  border: 1px solid rgba(120,180,255,.14);
  box-shadow: 0 18px 36px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.03);
}

.tp-contact-links{
  margin-top: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}

.tp-contact-link{
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .85rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(120,180,255,.14);
  background: linear-gradient(180deg, rgba(26,40,68,.92), rgba(22,34,58,.94));
  color: #eaf3ff;
  font-size: .95rem;
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    border-color .25s ease,
    background .25s ease;
}

.tp-contact-link:hover{
  transform: translateY(-4px);
  border-color: rgba(92,212,255,.35);
  background: linear-gradient(180deg, rgba(36,56,92,.95), rgba(26,40,68,.95));
  box-shadow: 0 14px 32px rgba(0,0,0,.35), 0 0 12px rgba(92,212,255,.12);
}

.tp-contact-link strong{
  display: block;
  font-weight: 700;
}

.tp-contact-icon{
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(92,212,255,.15);
  font-size: 1rem;
}

.tp-form{
  display: flex;
  flex-direction: column;
  gap: .55rem;
}

.tp-form-group{
  display: flex;
  flex-direction: column;
  gap: .35rem;
  margin-bottom: .5rem;
}

.tp-form-group label{
  margin: 0;
  font-weight: 700;
  color: #f4f7ff;
}

.tp-form-group input,
.tp-form-group select,
.tp-form-group textarea{
  width: 100%;
  padding: .9rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(120,180,255,.16);
  background: rgba(8,22,45,.9);
  color: #fff;
  outline: none;
  transition:
    border-color .25s ease,
    box-shadow .25s ease,
    transform .2s ease;
}

.tp-form-group textarea{
  min-height: 120px;
  resize: vertical;
}

.tp-form-group input:hover,
.tp-form-group select:hover,
.tp-form-group textarea:hover{
  border-color: rgba(92,212,255,.28);
  box-shadow: 0 0 0 2px rgba(92,212,255,.05);
}

.tp-form-group input:focus,
.tp-form-group select:focus,
.tp-form-group textarea:focus{
  border-color: rgba(92,212,255,.58);
  box-shadow: 0 0 0 3px rgba(92,212,255,.14);
  transform: translateY(-1px);
}

.tp-form-group select{
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 44px;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255,255,255,.85) 50%),
    linear-gradient(135deg, rgba(255,255,255,.85) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 52%,
    calc(100% - 12px) 52%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.tp-form-group select option{
  background: rgb(8,18,34);
  color: rgba(255,255,255,.92);
}

.tp-form-group.has-error input,
.tp-form-group.has-error select,
.tp-form-group.has-error textarea{
  border-color: #ff7a7a;
  box-shadow: 0 0 0 3px rgba(255,122,122,.12);
}

.tp-field-error{
  min-height: 16px;
  margin-top: .1rem;
  color: #ff9c9c;
  font-size: .82rem;
}

.tp-btn-submit{
  position: relative;
  width: 100%;
  min-height: 46px;
  margin-top: .5rem;
}

.tp-btn-submit.is-loading{
  pointer-events: none;
  opacity: .9;
}

.tp-btn-loader{
  display: none;
  width: 18px;
  height: 18px;
  margin-left: .6rem;
  border: 2px solid rgba(255,255,255,.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: tp-spin .8s linear infinite;
}

.tp-btn-submit.is-loading .tp-btn-loader{
  display: inline-block;
  vertical-align: middle;
}

.tp-btn-submit.is-loading .tp-btn-text{
  opacity: .95;
}

.tp-form-status{
  margin-top: .6rem;
  min-height: 20px;
  font-size: .95rem;
  line-height: 1.35;
}

.tp-form-status.is-success{
  color: #7ef0a8;
}

.tp-form-status.is-error{
  color: #ff9c9c;
}

.tp-footer{
  margin-top: 40px;
  padding: 34px 0 18px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(6,11,22,.35), rgba(6,11,22,.7));
}

.tp-footer-grid{
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  gap: 18px;
  align-items: start;
}

.tp-footer-brand{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.tp-footer h4{
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 950;
  color: rgba(255,255,255,.9);
}

.tp-footer p{
  margin: 0;
  color: rgba(255,255,255,.7);
  line-height: 1.6;
}

.tp-footer a{
  display: block;
  padding: 8px 0;
  color: rgba(255,255,255,.74);
  font-weight: 850;
}

.tp-footer a:hover{
  color: rgba(255,255,255,.92);
}

.tp-footer-bottom{
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.6);
  font-weight: 800;
  font-size: 13px;
}

.tp-alert{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 16px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
  box-shadow: 0 18px 44px rgba(0,0,0,.28);
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(-6px);
  animation: tpAlertIn .22s ease forwards;
}

.tp-alert-content{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
}

.tp-alert-title{
  margin: 0;
  font-weight: 950;
  line-height: 1.2;
}

.tp-alert-msg{
  margin: 2px 0 0;
  color: rgba(255,255,255,.78);
  font-weight: 800;
  line-height: 1.35;
  word-break: break-word;
}

.tp-alert-close{
  appearance: none;
  -webkit-appearance: none;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 0;
  border-radius: 12px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.86);
  cursor: pointer;
  transition: transform .15s ease, background .15s ease;
}

.tp-alert-close:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.12);
}

.tp-alert-icon{
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 10px;
  font-weight: 950;
}

.tp-alert-ok{
  border-color: rgba(120,255,190,.3);
  background: rgba(120,255,190,.1);
}

.tp-alert-ok .tp-alert-icon{
  background: rgba(120,255,190,.16);
  color: #7cffc0;
}

.tp-alert-ok .tp-alert-title{
  color: #bfffe0;
}

.tp-alert-error{
  border-color: rgba(255,75,75,.38);
  background: rgba(255,75,75,.1);
  box-shadow: 0 0 0 4px rgba(255,75,75,.06), 0 18px 44px rgba(0,0,0,.28);
}

.tp-alert-error .tp-alert-icon{
  background: rgba(255,75,75,.18);
  color: #ff6b6b;
}

.tp-alert-error .tp-alert-title{
  color: #ffd0d0;
}

.tp-alert.is-hiding{
  animation: tpAlertOut .18s ease forwards;
}

[data-reveal]{
  opacity: 0;
  transform: translateY(28px);
  filter: blur(4px);
  will-change: opacity, transform, filter;
  transition: opacity .7s ease, transform .7s ease, filter .7s ease;
}

[data-reveal].is-visible{
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

[data-reveal="left"]{
  transform: translateX(-36px);
}

[data-reveal="right"]{
  transform: translateX(36px);
}

[data-reveal="zoom"]{
  transform: scale(.96);
}

[data-reveal="left"].is-visible,
[data-reveal="right"].is-visible,
[data-reveal="zoom"].is-visible{
  transform: translateX(0) scale(1);
}

[data-reveal-delay="1"]{ transition-delay: .08s; }
[data-reveal-delay="2"]{ transition-delay: .16s; }
[data-reveal-delay="3"]{ transition-delay: .24s; }
[data-reveal-delay="4"]{ transition-delay: .32s; }
[data-reveal-delay="5"]{ transition-delay: .4s; }

.tp-honeypot{
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

@keyframes tp-spin{
  to{ transform: rotate(360deg); }
}

@keyframes tpAlertIn{
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes tpAlertOut{
  to{
    opacity: 0;
    transform: translateY(-10px);
  }
}

@media (max-width: 980px){
  .tp-hero{
    padding-top: 44px;
  }

  .tp-hero-grid,
  .tp-grid-3,
  .tp-contact-grid,
  .tp-footer-grid,
  .tp-faq-grid{
    grid-template-columns: 1fr;
  }

  .tp-burger{
    display: flex;
  }

  .tp-links{
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 12px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(6,11,22,.86);
    backdrop-filter: blur(14px);
    box-shadow: 0 20px 60px rgba(0,0,0,.38);
  }

  .tp-links.open{
    display: flex;
  }

  .tp-links a{
    padding: 12px;
    border-radius: 14px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
  }

  .tp-links a:hover{
    background: rgba(255,255,255,.07);
    border-color: rgba(73,194,216,.22);
  }

  .tp-clients-logos{
    grid-template-columns: repeat(3, minmax(0,1fr));
  }
}

@media (max-width: 520px){
  .tp-container{
    width: min(1120px, calc(100% - 28px));
  }

  .tp-hero-card-cta{
    flex-direction: column;
    align-items: stretch;
  }

  .tp-hero-metrics{
    grid-template-columns: 1fr;
  }

  .tp-clients-logos{
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 14px;
  }

  .tp-client-logo{
    width: 72px;
    height: 72px;
  }
}

@media (prefers-reduced-motion: reduce){
  html{
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after{
    animation: none !important;
    transition: none !important;
  }

  [data-reveal]{
    opacity: 1;
    transform: none;
    filter: none;
  }
}