/* ============================================
   GAS NOIR — Inner Pages Stylesheet
   Extends style.css for all non-homepage pages
   Colors: #4682B4 | #28282B | #FAF9F6
============================================ */

/* ─── BODY ─── */
body.page-inner {
  background: var(--dark);
  color: var(--light);
  font-family: 'Montserrat', sans-serif;
  padding-top: 80px;
  opacity: 0;
  animation: page-fadein 0.5s ease 0.1s forwards;
}

@keyframes page-fadein {
  to { opacity: 1; }
}

/* ─── PAGE HERO ─── */
.page-hero {
  min-height: 52vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 80px 6vw 64px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(250,249,246,0.07);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 60%, rgba(70,130,180,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.page-hero-eyebrow {
  font-family: 'VT323', monospace;
  font-size: 1rem;
  letter-spacing: 0.22em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  display: block;
}

.page-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4.5rem, 11vw, 10rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--light);
  margin-bottom: 1.5rem;
}

.page-hero-title em {
  color: var(--blue);
  font-style: normal;
}

.page-hero-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  font-weight: 300;
  color: rgba(250,249,246,0.65);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 2.25rem;
}

.page-hero-cta-group {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.page-hero-wordmark {
  position: absolute;
  bottom: -0.12em;
  right: -0.02em;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(7rem, 20vw, 22rem);
  color: transparent;
  -webkit-text-stroke: 1px rgba(250,249,246,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.02em;
}

/* ─── SECTION SCAFFOLDING ─── */
.section-wrap {
  padding: 100px 6vw;
}

.section-wrap.section-alt {
  background: rgba(255,255,255,0.025);
}

.section-wrap.section-dark {
  background: #1a1a1e;
}

.section-inner-narrow {
  max-width: 860px;
  margin: 0 auto;
}

.section-inner-wide {
  max-width: 1360px;
  margin: 0 auto;
}

.section-eyebrow {
  display: inline-block;
  font-family: 'VT323', monospace;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title-xl {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--light);
  margin-bottom: 2rem;
}

.section-title-xl em {
  color: var(--blue);
  font-style: normal;
}

.section-title-md {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
}

.section-body {
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  font-weight: 300;
  line-height: 1.8;
  color: rgba(250,249,246,0.7);
  max-width: 640px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 48px; }
}

/* ─── CTA BAND ─── */
.cta-band {
  background: rgba(70,130,180,0.07);
  border-top: 1px solid rgba(70,130,180,0.14);
  border-bottom: 1px solid rgba(70,130,180,0.14);
  padding: 80px 6vw;
  text-align: center;
}

.cta-band-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.cta-band-sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(250,249,246,0.6);
  margin-bottom: 2.5rem;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta-band-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── SERVICES HUB ─── */
.services-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2px;
  margin-top: 64px;
}

.service-hub-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(250,249,246,0.06);
  padding: 48px 40px;
  text-decoration: none;
  color: var(--light);
  position: relative;
  overflow: hidden;
  display: block;
  transition: background 0.3s, border-color 0.3s;
}

.service-hub-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(70,130,180,0.07) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.service-hub-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(70,130,180,0.3);
}

.service-hub-card:hover::before { opacity: 1; }

.shc-num {
  display: block;
  font-family: 'VT323', monospace;
  font-size: 0.8rem;
  color: var(--blue);
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
}

.shc-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
  opacity: 0.7;
}

.shc-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.shc-body {
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(250,249,246,0.55);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.shc-arrow {
  font-family: 'VT323', monospace;
  font-size: 0.85rem;
  color: var(--blue);
  letter-spacing: 0.1em;
  transition: transform 0.3s;
  display: inline-block;
}

.service-hub-card:hover .shc-arrow { transform: translateX(6px); }

/* ─── SERVICE DETAIL ─── */
.service-includes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.include-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(250,249,246,0.06);
  border-left: 3px solid var(--blue);
  padding: 28px 24px;
}

.include-title {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.include-body {
  font-size: 0.825rem;
  font-weight: 300;
  color: rgba(250,249,246,0.55);
  line-height: 1.65;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.pricing-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(250,249,246,0.08);
  padding: 40px 32px;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--blue);
  background: rgba(70,130,180,0.06);
}

.pricing-badge {
  position: absolute;
  top: -1px;
  left: 32px;
  background: var(--blue);
  color: var(--light);
  font-family: 'VT323', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  padding: 4px 14px;
  text-transform: uppercase;
}

.pricing-tier {
  font-family: 'VT323', monospace;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.pricing-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.pricing-period {
  font-size: 0.8rem;
  color: rgba(250,249,246,0.45);
  margin-bottom: 1.75rem;
  font-weight: 300;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-features li {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(250,249,246,0.7);
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(250,249,246,0.05);
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.pricing-features li::before {
  content: '→';
  color: var(--blue);
  flex-shrink: 0;
  font-family: 'VT323', monospace;
}

/* FAQ */
.faq-list {
  margin-top: 48px;
  border-top: 1px solid rgba(250,249,246,0.07);
}

.faq-item {
  border-bottom: 1px solid rgba(250,249,246,0.07);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--light);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.975rem;
  font-weight: 600;
  text-align: left;
  padding: 24px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-question::after {
  content: '+';
  font-family: 'VT323', monospace;
  font-size: 1.6rem;
  color: var(--blue);
  flex-shrink: 0;
  transition: transform 0.3s;
  line-height: 1;
}

.faq-item.open .faq-question::after { transform: rotate(45deg); }

.faq-answer {
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(250,249,246,0.65);
  line-height: 1.8;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding-bottom 0.3s;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding-bottom: 24px;
}

/* ─── ABOUT ─── */
.about-visual-block {
  width: 100%;
  aspect-ratio: 4/3;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(250,249,246,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 10vw, 9rem);
  color: rgba(250,249,246,0.04);
  position: relative;
  overflow: hidden;
  letter-spacing: -0.02em;
}

.about-visual-block::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(70,130,180,0.05) 0%, transparent 70%);
}

.process-steps {
  margin-top: 64px;
}

.process-step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 40px;
  align-items: start;
  padding: 52px 0;
  border-bottom: 1px solid rgba(250,249,246,0.06);
}

.process-step:first-child { padding-top: 0; }

.process-step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4.5rem;
  color: rgba(70,130,180,0.2);
  line-height: 1;
}

.process-step-label {
  font-family: 'VT323', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}

.process-step-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
  line-height: 1;
}

.process-step-body {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(250,249,246,0.65);
  line-height: 1.8;
}

.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 64px;
}

.diff-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(250,249,246,0.06);
  padding: 48px 40px;
}

.diff-num {
  font-family: 'VT323', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--blue);
  margin-bottom: 1.25rem;
  display: block;
}

.diff-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
  line-height: 1;
}

.diff-body {
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(250,249,246,0.6);
  line-height: 1.75;
}

@media (max-width: 700px) {
  .diff-grid { grid-template-columns: 1fr; }
  .process-step { grid-template-columns: 1fr; gap: 16px; }
}

/* ─── WORK / CASE STUDIES ─── */
.case-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  padding-top: 12px;
}

.filter-btn {
  background: none;
  border: 1px solid rgba(250,249,246,0.1);
  color: rgba(250,249,246,0.5);
  font-family: 'VT323', monospace;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 8px 20px;
  cursor: pointer;
  transition: all 0.25s;
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--blue);
  color: var(--blue);
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 2px;
}

.case-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(250,249,246,0.06);
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
  color: var(--light);
}

.case-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 6rem;
  color: rgba(250,249,246,0.04);
  background: linear-gradient(135deg, rgba(70,130,180,0.03) 0%, transparent 100%);
  transition: transform 0.6s ease;
}

.case-card:hover .case-card-placeholder { transform: scale(1.04); }

.case-card-info {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(40,40,43,0.96) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  opacity: 0;
  transition: opacity 0.35s;
}

.case-card:hover .case-card-info { opacity: 1; }

.case-card-tag {
  font-family: 'VT323', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.case-card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.case-card-result {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(250,249,246,0.6);
  margin-top: 0.5rem;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 64px;
}

.testimonial-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(250,249,246,0.06);
  padding: 40px 36px 36px;
  position: relative;
}

.testimonial-quote-mark {
  font-family: 'Abril Fatface', serif;
  font-size: 5rem;
  color: rgba(70,130,180,0.12);
  line-height: 1;
  margin-bottom: -1rem;
  display: block;
}

.testimonial-text {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(250,249,246,0.82);
  margin-bottom: 1.75rem;
}

.testimonial-author {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(70,130,180,0.15);
  border: 1px solid rgba(70,130,180,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'VT323', monospace;
  font-size: 0.8rem;
  color: var(--blue);
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
}

.testimonial-role {
  font-size: 0.78rem;
  color: rgba(250,249,246,0.45);
  font-weight: 300;
}

/* ─── BLOG ─── */
.blog-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 48px 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 40px;
}

.blog-card {
  text-decoration: none;
  color: var(--light);
  display: flex;
  flex-direction: column;
}

.blog-card-thumb {
  aspect-ratio: 16/9;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(250,249,246,0.06);
  margin-bottom: 1.25rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: rgba(250,249,246,0.04);
  transition: border-color 0.3s;
}

.blog-card:hover .blog-card-thumb {
  border-color: rgba(70,130,180,0.3);
}

.blog-card-category {
  font-family: 'VT323', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.blog-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  transition: color 0.25s;
}

.blog-card:hover .blog-card-title { color: var(--blue); }

.blog-card-excerpt {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(250,249,246,0.55);
  line-height: 1.7;
  margin-bottom: 1rem;
  flex: 1;
}

.blog-card-meta {
  font-family: 'VT323', monospace;
  font-size: 0.75rem;
  color: rgba(250,249,246,0.3);
  letter-spacing: 0.1em;
}

/* Resource Hub */
.resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.resource-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(250,249,246,0.06);
  padding: 36px 32px;
  text-decoration: none;
  color: var(--light);
  transition: border-color 0.3s, background 0.3s;
  display: block;
}

.resource-card:hover {
  border-color: rgba(70,130,180,0.3);
  background: rgba(70,130,180,0.04);
}

.resource-type {
  font-family: 'VT323', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}

.resource-title {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.resource-body {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(250,249,246,0.55);
  line-height: 1.65;
}

/* ─── CONTACT / FORMS ─── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
}

.contact-info-item {
  margin-bottom: 2.25rem;
}

.contact-info-label {
  font-family: 'VT323', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  display: block;
}

.contact-info-value {
  font-size: 0.975rem;
  font-weight: 300;
  color: rgba(250,249,246,0.8);
  line-height: 1.6;
}

.contact-info-value a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(70,130,180,0.4);
  transition: color 0.25s;
}

.contact-info-value a:hover { color: var(--blue); }

.form-wrap {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(250,249,246,0.07);
  padding: 52px;
}

@media (max-width: 600px) {
  .form-wrap { padding: 28px 20px; }
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}

.form-group {
  margin-bottom: 22px;
}

.form-label {
  display: block;
  font-family: 'VT323', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(250,249,246,0.1);
  color: var(--light);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.25s;
  -webkit-appearance: none;
  box-sizing: border-box;
  border-radius: 0;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--blue); }

.form-input::placeholder,
.form-textarea::placeholder { color: rgba(250,249,246,0.28); }

.form-select option { background: #28282B; color: var(--light); }

.form-textarea {
  resize: vertical;
  min-height: 130px;
}

/* Booking embed */
.booking-embed-wrap {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(250,249,246,0.06);
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  padding: 40px;
  text-align: center;
}

.booking-placeholder-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  color: rgba(70,130,180,0.12);
  line-height: 1;
}

.booking-placeholder-text {
  font-family: 'VT323', monospace;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: rgba(250,249,246,0.25);
  text-transform: uppercase;
  max-width: 280px;
  line-height: 1.8;
}

/* ─── FREE RESOURCE / OPT-IN ─── */
.optin-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 75vh;
}

@media (max-width: 900px) {
  .optin-hero { grid-template-columns: 1fr; }
}

.optin-visual {
  background: rgba(70,130,180,0.06);
  border-right: 1px solid rgba(250,249,246,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5rem, 12vw, 12rem);
  color: rgba(250,249,246,0.04);
  letter-spacing: -0.02em;
  position: relative;
  overflow: hidden;
}

.optin-content {
  padding: 80px 6vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.optin-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 0.95;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.optin-sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(250,249,246,0.65);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 440px;
}

.optin-benefits {
  list-style: none;
  margin-bottom: 2.5rem;
}

.optin-benefits li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(250,249,246,0.75);
  padding: 0.5rem 0;
}

.optin-benefits li::before {
  content: '✓';
  color: var(--blue);
  flex-shrink: 0;
  font-weight: 700;
}

.optin-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 440px;
}

.optin-form input {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(250,249,246,0.1);
  color: var(--light);
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  padding: 16px 20px;
  outline: none;
  transition: border-color 0.25s;
  box-sizing: border-box;
  border-radius: 0;
}

.optin-form input:focus { border-color: var(--blue); }
.optin-form input::placeholder { color: rgba(250,249,246,0.28); }

/* ─── LINK-IN-BIO ─── */
body.bio-page {
  min-height: 100vh;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
}

.bio-container {
  width: 100%;
  max-width: 480px;
  padding: 72px 24px 80px;
}

.bio-header {
  text-align: center;
  margin-bottom: 48px;
}

.bio-logo {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  display: block;
  border-radius: 50%;
  border: 1px solid rgba(70,130,180,0.3);
  object-fit: cover;
}

.bio-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}

.bio-handle {
  font-family: 'VT323', monospace;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--blue);
}

.bio-tagline {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(250,249,246,0.5);
  margin-top: 0.5rem;
}

.bio-links-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bio-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(250,249,246,0.08);
  color: var(--light);
  text-decoration: none;
  padding: 18px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background 0.25s, border-color 0.25s;
}

.bio-link:hover {
  background: rgba(70,130,180,0.1);
  border-color: rgba(70,130,180,0.4);
}

.bio-link.featured {
  background: rgba(70,130,180,0.14);
  border-color: var(--blue);
}

.bio-link.featured:hover {
  background: rgba(70,130,180,0.24);
}

.bio-link-label {
  font-family: 'VT323', monospace;
  font-size: 0.7rem;
  color: var(--blue);
  letter-spacing: 0.12em;
}

.bio-social {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

.bio-social a {
  font-family: 'VT323', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: rgba(250,249,246,0.35);
  text-decoration: none;
  transition: color 0.25s;
}

.bio-social a:hover { color: var(--blue); }

/* ─── LEGAL PAGES ─── */
.legal-content {
  max-width: 740px;
  margin: 0 auto;
  padding: 80px 6vw 120px;
}

.legal-updated {
  font-family: 'VT323', monospace;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: rgba(250,249,246,0.3);
  margin-bottom: 3rem;
  display: block;
}

.legal-content h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.02em;
  margin: 3.5rem 0 1rem;
  color: var(--light);
}

.legal-content h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 2rem 0 0.5rem;
  letter-spacing: 0.04em;
}

.legal-content p {
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(250,249,246,0.65);
  line-height: 1.85;
  margin-bottom: 1rem;
}

.legal-content ul {
  margin: 0 0 1rem 1.25rem;
}

.legal-content li {
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(250,249,246,0.65);
  line-height: 1.8;
  margin-bottom: 0.4rem;
}

/* ─── 404 ─── */
.error-page {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 6vw;
}

.error-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(10rem, 28vw, 24rem);
  color: transparent;
  -webkit-text-stroke: 1px rgba(250,249,246,0.07);
  line-height: 0.85;
  letter-spacing: -0.04em;
  margin-bottom: 2rem;
  user-select: none;
}

.error-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 4rem);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.error-sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(250,249,246,0.55);
  margin-bottom: 2.5rem;
  max-width: 380px;
  line-height: 1.7;
}

/* ─── THANK YOU ─── */
.thankyou-page {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 6vw;
}

.thankyou-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(70,130,180,0.1);
  border: 1px solid rgba(70,130,180,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  margin: 0 auto 2rem;
}

.thankyou-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.92;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.thankyou-sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(250,249,246,0.6);
  line-height: 1.75;
  max-width: 480px;
  margin: 0 auto 2.5rem;
}

/* ─── REVEAL ANIMATIONS ─── */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left {
  transform: translateX(-30px);
}

.reveal-right {
  transform: translateX(30px);
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* ─── NAV ACTIVE STATE ─── */
.nav-links a.active {
  color: var(--blue);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .section-wrap { padding: 72px 5vw; }
  .page-hero { padding: 60px 5vw 48px; min-height: 42vh; }
  .services-hub-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .case-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 60px 5vw; }
  .form-wrap { padding: 32px 20px; }
  .contact-layout { gap: 40px; }
  .diff-grid { grid-template-columns: 1fr; }
}
