/* ===== Base ===== */
:root{
  --bg: #0f0f10;
  --bg2:#111118;
  --text:#ffffff;
  --muted: rgba(255,255,255,.72);
  --muted2: rgba(255,255,255,.55);
  --stroke: rgba(255,255,255,.75);
  --accent: #7c4dff; /* purple */
  --accent2:#00d4ff; /* blue */
  --card: rgba(255,255,255,.06);
  --border: rgba(255,255,255,.18);
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

/* ===== Hero ===== */
.hero{
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
}

.hero__bg{
  position:absolute; inset:0;
  background-image: url("assets/hero.gif");
  background-size: 1600px auto;
  background-repeat: no-repeat;
  background-position: right center;
  transform: scale(1.02);
  z-index: 0;
}

.hero__overlay{
  position:absolute; inset:0;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg,
      rgba(0, 0, 0, .65) 0%,
      rgba(0, 0, 0, .35) 45%,
      rgba(0, 0, 0, .15) 100%),
    radial-gradient(circle at 70% 40%, rgba(0,0,0,.30) 0%, rgba(0,0,0,.65) 60%);
}

.hero__content{
  max-width: 620px;   /* was 980 */
  padding: 56px 28px 80px;
}

.hero__sub{
  max-width: 52ch;    /* tighter paragraph width */
}

.hero__content{ margin-top: auto; }

.nav{
  position: relative;
  z-index: 3;
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 18px 28px;
}

.nav a{
  color: var(--text);
  text-decoration:none;
  font-weight: 650;
  letter-spacing: .08em;
  font-size: 12px;
  opacity: .92;
}

.nav__brand{
  display:flex;
  gap: 10px;
  align-items:center;
}

.nav__logo{
  width: 28px;
  height: 18px;
  border: 2px solid rgba(255,255,255,.75);
  border-radius: 4px;
  position: relative;
  background-image: url("assets/instagram.png");
  background-size: cover;
  background-position: center;
}
.nav__logo::after{
  content:"";
  position:absolute;
  width: 8px; height: 8px;
  border:2px solid rgba(255,255,255,.75);
  border-radius: 50%;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%);
}

.nav__links{
  display:flex;
  gap: 18px;
  align-items:center;
}

.nav__contact{
  opacity: .95;
}

.hero__content{
  position: relative;
  z-index: 5;
  align-self: center;
  padding: 56px 28px 80px;
  max-width: 980px;
}

.hero__kicker{
  margin:0 0 10px;
  font-size: 14px;
  letter-spacing: .06em;
  color: rgba(255,255,255,.85);
}

.hero__title{
  margin: 0;
  display:flex;
  flex-direction: column;
  gap: 8px;
  line-height: .95;
}

.hero__outline{
  font-size: clamp(48px, 6.6vw, 92px);
  font-weight: 800;
  letter-spacing: .01em;
  color: transparent;
  -webkit-text-stroke: 2px var(--stroke);
  text-stroke: 2px var(--stroke);
}

.hero__solid{
  font-size: clamp(54px, 7.4vw, 108px);
  font-weight: 900;
  letter-spacing: .01em;
  color: #fff;
  text-shadow: 0 18px 50px rgba(0,0,0,.35);
}

.hero__sub{
  margin: 18px 0 0;
  max-width: 62ch;
  color: var(--muted);
  font-size: 16px;
}

.hero__ctaRow{
  display:flex;
  align-items:center;
  gap: 18px;
  margin-top: 22px;
}

.cta{
  display:inline-flex;
  align-items: stretch;
  gap: 0;
  border: 1px solid rgba(255,255,255,.40);
  text-decoration:none;
  color: #fff;
  background: rgba(0,0,0,.20);
  backdrop-filter: blur(6px);
}

.cta__text{
  padding: 12px 16px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .10em;
}

.cta__arrow{
  padding: 12px 14px;
  border-left: 1px solid rgba(255,255,255,.35);
  display:grid;
  place-items:center;
}

.cta:hover{
  border-color: rgba(255,255,255,.70);
  transform: translateY(-1px);
}

.ghostLink{
  color: rgba(255,255,255,.85);
  text-decoration:none;
  font-weight: 750;
  letter-spacing: .08em;
  font-size: 12px;
  border-bottom: 1px solid rgba(255,255,255,.25);
  padding-bottom: 3px;
}
.ghostLink:hover{ border-bottom-color: rgba(255,255,255,.7); }

.scrollTag{
  position:absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  z-index: 20;
  display:flex;
  align-items:center;
  gap: 10px;
  opacity: .8;
}
.scrollTag span{
  letter-spacing: .18em;
  font-size: 10px;
  font-weight: 800;
}
.scrollTag__line{
  width: 70px;
  height: 1px;
  background: rgba(255,255,255,.45);
}

.downHint{
  position:absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 10;

  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.28);

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(0,0,0,.20);
}

/* Hover polish */
.downHint{
  transition: all .25s ease;
}

.downHint:hover{
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.6);
  transform: translateX(-50%) translateY(-2px);
}

/* Subtle bounce animation */
@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

.downHint{
  animation: bounceDown 2.2s infinite ease-in-out;
}

/* ===== Sections ===== */
.section{
  padding: 72px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
  border-top: 1px solid rgba(255,255,255,.06);
}

.container{
  width: min(1100px, calc(100% - 56px));
  margin: 0 auto;
}

.section__title{
  margin: 0 0 18px;
  font-size: 28px;
  letter-spacing: .02em;
}

.muted{ color: var(--muted2); }

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.card{
  background: var(--card);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 18px;
  backdrop-filter: blur(6px);
  min-height: 120px;
}
.card h3{ margin: 0 0 8px; }
.card p{ margin: 0; color: var(--muted); }

.twoCol{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items:start;
}

.panel{
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 18px;
}

.panel__title{ margin: 0 0 10px; }
.list{ margin:0; padding-left: 18px; color: var(--muted); }
.list li{ margin: 6px 0; }

.form{
  display:grid;
  gap: 12px;
  padding: 18px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
}
label span{
  display:block;
  font-size: 12px;
  letter-spacing: .06em;
  margin-bottom: 6px;
  color: rgba(255,255,255,.8);
}
input, textarea{
  width:100%;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.25);
  color: #fff;
  padding: 10px 12px;
  outline: none;
}
input:focus, textarea:focus{
  border-color: rgba(124, 77, 255, .7);
}

.btn{
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(124, 77, 255, .18);
  color: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  font-weight: 900;
  letter-spacing: .10em;
  cursor: pointer;
}
.btn:hover{
  border-color: rgba(255,255,255,.65);
}

/* ===== Pricing Table ===== */
.priceBlock{
  margin-top: 18px;
}

.priceBlock__title{
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: .02em;
}

.priceTable{
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255,255,255,.04);
}

.priceRow{
  display: grid;
  grid-template-columns: 1.2fr 0.5fr 1.6fr;
  gap: 14px;
  padding: 14px 16px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.priceRow--head{
  border-top: 0;
  background: rgba(255,255,255,.06);
  font-weight: 800;
  letter-spacing: .06em;
  font-size: 12px;
  text-transform: uppercase;
}

.priceRow__name{
  font-weight: 750;
}

.priceRow__price{
  font-weight: 900;
  white-space: nowrap;
}

.priceRow__desc{
  color: rgba(255,255,255,.72);
}

.tag{
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.8);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.priceCta{
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 900px){
  .priceRow{
    grid-template-columns: 1fr;
  }
  .priceRow__price{
    opacity: .95;
  }
}

.formEmbed{
  background: #0d0d0d;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  border: 1px solid rgba(255,255,255,.08);
  max-width: 980px;     /* <-- key: stop it from being huge */
  margin: 18px auto 0;  /* center it */
}

.formEmbed iframe{
  display: block;
  width: 100%;
  border: 0;
  border-radius: 14px;  /* rounds the white form corners */
  background: #fff;     /* makes it look clean on purpose */
}

.contactAlt{
  margin-top: 12px;
}

.contactAlt a{
  color: rgba(255,255,255,.9);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.25);
}
.contactAlt a:hover{
  border-bottom-color: rgba(255,255,255,.65);
}

/* ===== Footer ===== */
.footer{
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 18px 0;
  background: #0b0b0c;
}
.footer__inner{
  display:flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

/* ===== Responsive ===== */
@media (max-width: 900px){
  .cards{ grid-template-columns: 1fr; }
  .twoCol{ grid-template-columns: 1fr; }
  .nav__links{ display:none; } /* keep it simple: no JS menu */
  .scrollTag{ display:none; }
}