/* ===== 2026-GRADE BASE ===== */
:root{
  --bg: #07090d;
  --panel: rgba(255,255,255,0.06);
  --panel2: rgba(255,255,255,0.10);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.70);
  --border: rgba(255,255,255,0.14);
  --shadow: 0 18px 60px rgba(0,0,0,0.55);

  --brand: #e24a2a;   /* CALL */
  --brand2: #1f7aff;  /* TEXT */
  --accent: rgba(226,74,42,0.16);

  --radius: 18px;
  --radius2: 26px;
  --max: 1100px;
  --header-h: 72px;

  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body{
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  background: radial-gradient(1200px 900px at 30% 10%, rgba(31,122,255,0.10), transparent 60%),
              radial-gradient(900px 700px at 70% 25%, rgba(226,74,42,0.10), transparent 55%),
              var(--bg);
  color: var(--text);
  letter-spacing: 0.2px;
}

/* ===== LAYOUT ===== */
.container{
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.topbar{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  backdrop-filter: blur(12px);
  background: rgba(0,0,0,0.85);
  border-bottom: 1px solid var(--border);
  z-index: 50;
}

.nav{
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  column-gap: 18px;
  padding: 10px 0;
  min-height: var(--header-h);
}

.brand{
  display: flex;
  gap: 10px;
  align-items: center;
  text-decoration: none;
  color: var(--text);
  flex: 1;
}
.brand-mark{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(226,74,42,0.9), rgba(31,122,255,0.85));
  box-shadow: 0 10px 28px rgba(0,0,0,0.35);
}
.brand-name{
  font-weight: 900;
  letter-spacing: 0.32em;
  font-size: clamp(32px, 5.4vw, 56px);
  font-family: "Bebas Neue", var(--font);
}
.brand-sub{
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

.navlinks{
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  flex: 1;
}
.nav-break{
  flex-basis: 100%;
  height: 0;
}
.navlinks a{
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 6px 2px;
  border-bottom: 1px solid transparent;
  transition: color 160ms ease, border-color 160ms ease;
}
.navlinks a:hover{
  color: var(--text);
  border-color: rgba(255,255,255,0.3);
}
.navlinks a.is-disabled{
  color: rgba(255,255,255,0.35);
  border-color: transparent;
  pointer-events: none;
}
.navlinks a.is-disabled:hover{
  color: rgba(255,255,255,0.35);
}

.nav-actions{
  display: flex;
  gap: 10px;
  align-items: center;
  justify-self: end;
  justify-content: flex-end;
}
.nav-actions a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  text-decoration: none;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.96);
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(10,12,16,0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 160ms ease, border-color 160ms ease;
  box-shadow: 0 14px 28px rgba(0,0,0,0.45);
}
.nav-actions a:hover{
  transform: translateY(-1px);
  border-color: rgba(255,255,255,0.35);
}
.nav-actions .schedule{ background: rgba(226,74,42,0.92); }
.nav-actions .call{ background: rgba(31,122,255,0.9); }
.nav-actions .text{ background: rgba(255,255,255,0.08); }
.nav-actions .tiktok{
  padding: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nav-actions .tiktok svg{
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ===== HERO (VIDEO) ===== */
.hero{
  position: relative;
  min-height: 100vh;
  padding-top: var(--header-h);
  overflow: hidden;
}
.hero-video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.08) brightness(1.08);
  transform: scale(1.02);
}
.hero-overlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 800px at 30% 20%, rgba(0,0,0,0.08), rgba(0,0,0,0.35)),
    linear-gradient(to bottom, rgba(7,9,13,0.10), rgba(7,9,13,0.45));
}
.hero-inner{
  position: relative;
  z-index: 2;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 0 34px;
}
.hero-card{
  max-width: 760px;
  padding: 28px;
  border-radius: var(--radius2);
  border: 1px solid var(--border);
  background: rgba(0,0,0,0.32);
  box-shadow: var(--shadow);
}
.kicker{
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
}
.kicker-dot{
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 0 6px rgba(226,74,42,0.18);
}
h1{
  margin: 16px 0 10px;
  font-size: clamp(40px, 5.2vw, 60px);
  line-height: 1.03;
  letter-spacing: 0.2px;
}
.hero p{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}
.ctas{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  text-decoration: none;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.4px;
  box-shadow: 0 14px 28px rgba(0,0,0,0.45);
}
.btn.primary{
  background: linear-gradient(135deg, rgba(226,74,42,0.92), rgba(226,74,42,0.72));
  border-color: rgba(226,74,42,0.45);
  color: rgba(255,255,255,0.96);
}
.btn.secondary{
  background: rgba(255,255,255,0.06);
  color: var(--text);
}
.btn:hover{ transform: translateY(-1px); }

/* ===== FEATURE STRIP ===== */
.strip{
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.pill{
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  border-radius: 16px;
  padding: 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

/* ===== PAGE HERO (IMAGES) ===== */
.page-hero{
  padding-top: var(--header-h);
}
.page-hero.static-hero{
  min-height: calc(100vh - var(--header-h));
}
.page-hero.static-hero .container{
  width: min(1400px, calc(100% - 24px));
}
.page-hero.static-hero .wrap{
  margin-top: 10px;
  height: calc(100vh - var(--header-h) - 8px);
  position: sticky;
  top: var(--header-h);
}
.page-hero.static-hero img{
  height: 100%;
}
.page-hero .wrap{
  margin-top: 22px;
  border-radius: var(--radius2);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
}
.page-hero img{
  width: 100%;
  height: 54vh;
  min-height: 320px;
  object-fit: cover;
  display: block;
  filter: saturate(0.96) contrast(1.02);
  position: relative;
  z-index: 0;
}
.page-hero .shade{
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.05), rgba(0,0,0,0.78));
  z-index: 1;
}
.page-hero .title{
  position: absolute;
  left: 18px;
  bottom: 18px;
  right: 18px;
  z-index: 2;
}
.page-hero .title.top{
  top: 18px;
  bottom: auto;
}
.page-hero .overlay-card{
  position: absolute;
  top: 18px;
  left: 18px;
  max-width: 420px;
  z-index: 2;
}
.page-hero .overlay-card.right{
  left: auto;
  right: 18px;
}
.page-hero .overlay-card .card{
  background: rgba(4,6,10,0.78);
  border-color: rgba(255,255,255,0.2);
}
.page-hero .overlay-card .card h3{
  color: rgba(255,255,255,0.98);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.page-hero .overlay-card .card p{
  color: rgba(255,255,255,0.86);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
}
.page-hero .overlay-card .card{
  margin: 0;
}
.about-page .page-hero .overlay-card{
  top: 34%;
  bottom: auto;
  right: 8%;
  max-width: 400px;
  transform: translateY(-6px);
}
.about-page .page-hero .overlay-card .card h3{
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.about-page .page-hero .overlay-card .card p{
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.about-page .page-hero .overlay-card .card{
  background: rgba(4,6,10,0.72);
  padding: 12px 14px;
}
.about-page .page-hero .overlay-card .card h3{
  margin: 0 0 8px;
}
.about-page .page-hero .overlay-card .card p{
  font-family: "Space Grotesk", var(--font);
  font-size: 15px;
  letter-spacing: 0.04em;
  line-height: 1.55;
  color: rgba(255,255,255,0.9);
  margin: 0;
}
.about-page .page-hero.static-hero .container{
  width: 100%;
}
.about-page .page-hero.static-hero .wrap{
  margin-top: 0;
  height: calc(100vh - var(--header-h));
  border-radius: 0;
  border: 0;
  box-shadow: none;
}
.about-page .page-hero.static-hero img{
  object-position: center 0%;
}
.page-hero h2{
  margin: 0 0 6px;
  font-size: clamp(30px, 4.2vw, 44px);
}
.page-hero .subtitle{
  color: var(--muted);
  max-width: 800px;
  line-height: 1.6;
}

/* ===== CONTENT ===== */
main{
  padding: 16px 0 110px;
}
.card{
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius2);
  padding: 22px;
  box-shadow: 0 10px 34px rgba(0,0,0,0.35);
}
.grid{
  display: grid;
  gap: 14px;
  grid-template-columns: 1.2fr 0.8fr;
}
@media (max-width: 920px){
  .strip{ grid-template-columns: 1fr; }
  .grid{ grid-template-columns: 1fr; }
}

/* ===== FORMS ===== */
form{
  display: grid;
  gap: 10px;
}
label{
  font-size: 13px;
  color: var(--muted);
  font-weight: 700;
}
input, textarea{
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--border);
  padding: 12px 12px;
  background: rgba(0,0,0,0.35);
  color: var(--text);
  outline: none;
}
textarea{ min-height: 120px; resize: vertical; }
input:focus, textarea:focus{
  border-color: rgba(31,122,255,0.55);
  box-shadow: 0 0 0 6px rgba(31,122,255,0.12);
}
button{
  border: 0;
  border-radius: 14px;
  padding: 12px 14px;
  font-weight: 900;
  cursor: pointer;
  background: linear-gradient(135deg, rgba(31,122,255,0.92), rgba(31,122,255,0.75));
  color: rgba(255,255,255,0.96);
}
button:hover{ transform: translateY(-1px); }

/* ===== FOOTER ===== */
.footer{
  border-top: 1px solid var(--border);
  padding: 18px 0 110px;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 900px){
  .nav{
    grid-template-columns: 1fr 1fr;
    row-gap: 10px;
  }
  .navlinks{
    grid-column: 1 / -1;
    justify-content: center;
  }
  .nav-actions{
    justify-self: end;
    flex-wrap: wrap;
  }
  .about-page .page-hero .overlay-card{
    top: 14%;
    right: 18px;
    left: 18px;
    max-width: 520px;
  }
}

@media (max-width: 700px){
  :root{ --header-h: 96px; }
  .brand-name{ letter-spacing: 0.22em; font-size: clamp(24px, 6.2vw, 32px); }
  .navlinks{ gap: 10px; }
  .navlinks a{ font-size: 13px; }
  .nav-actions a{ font-size: 12px; padding: 9px 10px; }
}
