/*
Theme Name: Bright Star Web Studios
Theme URI: https://brightstarweb.com
Author: Zaranita Sarbeng
Author URI: https://brightstarweb.com
Description: Custom WordPress theme for Bright Star Web Studios — dark, premium web design agency aesthetic with purple/cyan gradient branding.
Version: 1.0.0
License: Private
Text Domain: brightstar

=============================================================
EASY EDIT GUIDE
=============================================================
Colors:
  --pu  (purple accent)   : #c59dff
  --pu3 (purple dark)     : #7d2ae8
  --cy  (cyan accent)     : #00c4cc
  --bg  (background)      : #000000
  --wh  (white text)      : #ffffff

To change the color scheme, search & replace those hex values.

Fonts:
  Body: DM Sans (Google Fonts, loaded in functions.php)
  To change, update the Google Fonts URL in functions.php

Spacing:
  Nav height: 64px
  Section padding: 88px 48px (desktop), 64px 20px (mobile)

=============================================================
*/

/* ── CSS VARIABLES ──────────────────────────────────────── */
:root {
  --bg:  #000000;
  --bg2: #080810;
  --pu:  #c59dff;
  --pu2: #a370fc;
  --pu3: #7d2ae8;
  --pu4: #5424bb;
  --cy:  #00c4cc;
  --cy2: #00a8af;
  --wh:  #ffffff;
  --w2:  rgba(255,255,255,.75);
  --w3:  rgba(255,255,255,.45);
  --w4:  rgba(255,255,255,.15);
  --grd:  linear-gradient(135deg, #7d2ae8, #00c4cc);
  --grd2: linear-gradient(135deg, #c59dff, #00c4cc);
}

/* ── RESET & BASE ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--wh);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ── CUSTOM CURSOR ──────────────────────────────────────── */
body { cursor: none; }
#cd {
  position: fixed; z-index: 9999; pointer-events: none;
  width: 8px; height: 8px; background: var(--pu);
  border-radius: 50%; transform: translate(-50%,-50%);
}
#cr {
  position: fixed; z-index: 9998; pointer-events: none;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(197,157,255,.4); border-radius: 50%;
  transform: translate(-50%,-50%);
  transition: width .4s cubic-bezier(.16,1,.3,1), height .4s cubic-bezier(.16,1,.3,1),
              border-color .4s, background .4s;
}
#cr.on { width: 56px; height: 56px; border-color: var(--pu); background: rgba(197,157,255,.07); }
@media (hover: none) { body { cursor: auto; } #cd, #cr { display: none; } }

/* ── SKIP LINK ──────────────────────────────────────────── */
.skip {
  position: absolute; top: -100px; left: 16px;
  background: var(--pu3); color: #fff; padding: 10px 20px;
  border-radius: 0 0 8px 8px; font-size: 14px; text-decoration: none; z-index: 9999;
}
.skip:focus { top: 0; }
:focus-visible { outline: 2px solid var(--pu); outline-offset: 3px; }

/* ── NAVIGATION ─────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  transition: background .4s, border-color .4s, backdrop-filter .4s;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: rgba(0,0,0,.92);
  border-color: rgba(197,157,255,.12);
  backdrop-filter: blur(20px);
}
.site-logo {
  font-size: 16px; font-weight: 700; color: var(--wh);
  text-decoration: none; letter-spacing: .02em;
}
.site-logo span {
  background: var(--grd2);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Desktop nav links */
.nav-links { display: flex; align-items: center; gap: 0; list-style: none; }
.nav-links a {
  font-size: 14px; font-weight: 400; color: var(--w2);
  text-decoration: none; padding: 8px 16px; border-radius: 8px;
  transition: color .2s, background .2s;
}
.nav-links a:hover,
.nav-links a.current-menu-item,
.nav-links a[aria-current="page"] {
  color: var(--wh);
}
.nav-links a.current-menu-item,
.nav-links a[aria-current="page"] {
  background: rgba(255,255,255,.06);
}

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 8px; background: rgba(255,255,255,.06); border-radius: 8px; border: none;
}
.hamburger span {
  width: 20px; height: 1.5px; background: var(--wh);
  display: block; transition: all .3s; border-radius: 2px;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(4.5px,4.5px); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(4.5px,-4.5px); }

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed; top: 64px; left: 0; right: 0;
  background: rgba(0,0,0,.97); border-bottom: 1px solid rgba(255,255,255,.08);
  z-index: 850; padding: 20px 24px 32px; backdrop-filter: blur(20px);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; font-size: 16px; font-weight: 400; color: var(--w3);
  text-decoration: none; padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.06); transition: color .2s;
}
.mobile-menu a:hover { color: var(--wh); }
.mobile-menu a:last-child { border-bottom: none; }

/* ── FOOTER ─────────────────────────────────────────────── */
footer {
  background: var(--bg);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 40px 48px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 20px;
}
.footer-logo { font-size: 15px; font-weight: 700; color: var(--w2); }
.footer-logo span {
  background: var(--grd2);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-links { display: flex; gap: 4px; list-style: none; flex-wrap: wrap; }
.footer-links a {
  font-size: 12px; color: rgba(255,255,255,.3); text-decoration: none;
  padding: 6px 12px; border-radius: 8px; transition: color .2s, background .2s;
}
.footer-links a:hover { color: var(--wh); background: rgba(255,255,255,.06); }
.footer-copy { font-size: 11px; color: rgba(255,255,255,.2); }

/* ── SCROLL REVEAL ANIMATIONS ───────────────────────────── */
.rv  { opacity: 0; transform: translateY(32px);  transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1); }
.rvl { opacity: 0; transform: translateX(-40px); transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1); }
.rvr { opacity: 0; transform: translateX(40px);  transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1); }
.rv.on, .rvl.on, .rvr.on { opacity: 1; transform: none; }
.d1 { transition-delay: .08s; }
.d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; }
.d4 { transition-delay: .32s; }
.d5 { transition-delay: .40s; }
.d6 { transition-delay: .48s; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'DM Sans', Helvetica, Arial, sans-serif;
  font-size: 14px; font-weight: 600;
  text-decoration: none; padding: 14px 28px;
  border-radius: 1000px;
  transition: all .3s cubic-bezier(.16,1,.3,1);
  border: none; cursor: pointer; white-space: nowrap;
}
.btn-primary {
  background: var(--grd); color: #fff;
  box-shadow: 0 4px 24px rgba(125,42,232,.4);
}
.btn-primary:hover {
  opacity: .9; transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(125,42,232,.55);
}
.btn-outline {
  background: transparent; color: var(--wh);
  border: 1.5px solid rgba(255,255,255,.3); padding: 12px 26px;
}
.btn-outline:hover { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.06); }

/* ── TYPE HELPERS ───────────────────────────────────────── */
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600; letter-spacing: .24em;
  text-transform: uppercase; color: var(--pu); margin-bottom: 24px;
}
.section-label::before {
  content: ''; width: 20px; height: 1px; background: var(--pu); opacity: .7; flex-shrink: 0;
}
.section-heading {
  font-size: clamp(28px, 3.5vw, 52px); font-weight: 700;
  line-height: 1.05; letter-spacing: -.025em; color: var(--wh);
}
.gradient-italic {
  font-weight: 300; font-style: italic;
  background: var(--grd2);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; padding-bottom: .1em; display: inline-block;
}
.body-text {
  font-size: 17px; line-height: 1.78; color: rgba(255,255,255,.5); font-weight: 300;
}
.body-text b { color: rgba(255,255,255,.82); font-weight: 500; }

/* ── MARQUEE ─────────────────────────────────────────────── */
.marquee { overflow: hidden; padding: 12px 0; border-top: 1px solid rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.06); }
.marquee-track { display: flex; width: max-content; animation: marquee-scroll 36s linear infinite; }
.marquee-item {
  font-size: 11px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.4); padding: 0 28px; white-space: nowrap;
  display: flex; align-items: center; gap: 28px;
}
.marquee-item::after { content: '✦'; font-size: 7px; background: var(--grd2); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── HERO SECTION ───────────────────────────────────────── */
#hero {
  min-height: 100vh; min-height: 100svh; background: #000;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: stretch; padding-top: 64px;
  position: relative; overflow: hidden;
}
.hero-left {
  padding: 88px 56px 88px 48px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; z-index: 2;
}
.hero-tag {
  font-size: 11px; font-weight: 500; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(255,255,255,.35);
  display: flex; align-items: center; gap: 12px; margin-bottom: 44px;
  opacity: 0; animation: fade-up .8s cubic-bezier(.16,1,.3,1) forwards .2s;
}
.hero-tag::before { content: ''; width: 24px; height: 1px; background: var(--pu); flex-shrink: 0; }
h1.hero-heading {
  font-size: clamp(56px, 7.5vw, 96px); font-weight: 700;
  line-height: .92; letter-spacing: -.035em; color: #fff; margin-bottom: 36px;
  opacity: 0; animation: fade-up 1.1s cubic-bezier(.16,1,.3,1) forwards .35s;
}
.hero-sub {
  font-size: 17px; line-height: 1.78; color: rgba(255,255,255,.45);
  max-width: 400px; font-weight: 300; margin-bottom: 44px;
  opacity: 0; animation: fade-up .9s cubic-bezier(.16,1,.3,1) forwards .5s;
}
.hero-buttons {
  display: flex; gap: 12px; flex-wrap: wrap;
  opacity: 0; animation: fade-up .9s cubic-bezier(.16,1,.3,1) forwards .65s;
}
.hero-right { position: relative; overflow: hidden; }
.hero-right::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, #000 0%, rgba(0,0,0,.55) 30%, rgba(0,0,0,.1) 55%, transparent 75%);
  z-index: 2; pointer-events: none;
}
.hero-right::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 200px; background: linear-gradient(to top, #000 0%, transparent 100%);
  z-index: 2; pointer-events: none;
}
.hero-photo {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  min-height: calc(100vh - 64px); display: block; position: relative; z-index: 1;
  opacity: 0; animation: fade-in 1s forwards .3s;
}
.hero-glow {
  position: absolute; top: 50%; right: -80px; transform: translateY(-50%);
  width: 520px; height: 520px;
  background: conic-gradient(from 0deg, var(--cy), var(--pu3), var(--cy));
  border-radius: 50%; filter: blur(110px); opacity: .22;
  animation: spin-glow 20s linear infinite; z-index: 0; pointer-events: none;
}
@keyframes fade-up { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fade-in  { from { opacity: 0; } to { opacity: 1; } }
@keyframes spin-glow { from { transform: translateY(-50%) rotate(0deg); } to { transform: translateY(-50%) rotate(360deg); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }
@keyframes spin  { from { transform: translateY(-50%) rotate(0); } to { transform: translateY(-50%) rotate(360deg); } }

/* ── ABOUT SECTION ──────────────────────────────────────── */
#about {
  background: #000; border-top: 1px solid rgba(255,255,255,.08);
  display: grid; grid-template-columns: 1fr 1fr;
}
.about-left {
  padding: 96px 64px 96px 48px; border-right: 1px solid rgba(255,255,255,.08);
  display: flex; flex-direction: column; justify-content: center;
}
.about-right {
  padding: 96px 48px 96px 64px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.creds-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(255,255,255,.08); border-radius: 12px; overflow: hidden;
  position: relative; z-index: 1;
}
.cred-item {
  padding: 24px 20px; border-right: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08); text-align: center;
}
.cred-item:nth-child(2n) { border-right: none; }
.cred-item:nth-last-child(-n+2) { border-bottom: none; }
.cred-number {
  font-size: 36px; font-weight: 700; line-height: 1;
  background: var(--grd2); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.cred-label { font-size: 10px; color: rgba(255,255,255,.35); letter-spacing: .14em; text-transform: uppercase; margin-top: 6px; }

/* ── SERVICES TAB SECTION ───────────────────────────────── */
.services-wrap {
  display: grid; grid-template-columns: 220px 1fr;
  border: 1px solid rgba(255,255,255,.1); border-radius: 16px; overflow: hidden;
  margin-top: 52px; background: rgba(255,255,255,.02);
}
.service-tabs { background: rgba(255,255,255,.03); border-right: 1px solid rgba(255,255,255,.08); }
.service-tab {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 18px; cursor: pointer;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .25s; position: relative;
}
.service-tab:last-child { border-bottom: none; }
.service-tab::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: var(--grd); transform: scaleY(0);
  transition: transform .3s cubic-bezier(.16,1,.3,1);
}
.service-tab.active { background: rgba(255,255,255,.04); }
.service-tab.active::before { transform: scaleY(1); }
.service-tab:hover:not(.active) { background: rgba(255,255,255,.03); }
.tab-icon {
  width: 34px; height: 34px; background: rgba(197,157,255,.1); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0;
  transition: background .25s;
}
.service-tab.active .tab-icon { background: rgba(197,157,255,.2); }
.tab-name { font-size: 12px; font-weight: 400; color: rgba(255,255,255,.45); transition: color .25s; }
.service-tab.active .tab-name { color: var(--pu); font-weight: 500; }
.service-panel { padding: 48px; display: none; }
.service-panel.active { display: block; animation: panel-in .35s cubic-bezier(.16,1,.3,1); }
@keyframes panel-in { from { opacity: 0; transform: translateX(12px); } to { opacity: 1; transform: translateX(0); } }
.panel-heading { font-size: clamp(20px,2.5vw,32px); font-weight: 700; color: var(--wh); margin-bottom: 14px; }
.panel-desc { font-size: 15px; line-height: 1.82; color: rgba(255,255,255,.5); font-weight: 300; margin-bottom: 28px; max-width: 480px; }
.panel-features { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-bottom: 32px; }
.panel-feature {
  display: flex; align-items: center; gap: 9px;
  font-size: 13px; color: rgba(255,255,255,.45); font-weight: 300;
}
.panel-feature::before {
  content: '✓'; font-weight: 700; font-size: 11px; flex-shrink: 0;
  background: var(--grd2); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.panel-footer {
  display: flex; align-items: center; gap: 20px;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08); flex-wrap: wrap;
}
.panel-price {
  font-size: 36px; font-weight: 700; line-height: 1;
  background: var(--grd2); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}

/* ── PRICING CARDS ──────────────────────────────────────── */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: rgba(255,255,255,.08);
  border-radius: 16px; overflow: hidden; margin-top: 52px;
}
.pricing-card {
  background: #000; padding: 40px 32px;
  display: flex; flex-direction: column; transition: background .3s;
}
.pricing-card:hover { background: rgba(255,255,255,.03); }
.price-badge {
  display: inline-block; font-size: 8px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 1000px; margin-bottom: 14px; align-self: flex-start;
}
.pricing-card.featured .price-badge { background: var(--grd); color: #fff; }
.pricing-card.speed   .price-badge { background: rgba(0,196,204,.15); color: var(--cy); border: 1px solid rgba(0,196,204,.3); }
.price-amount {
  font-size: 60px; font-weight: 700; line-height: 1;
  background: var(--grd2); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.price-note { font-size: 11px; color: rgba(255,255,255,.3); margin-top: 5px; margin-bottom: 20px; }
.price-features { list-style: none; flex-grow: 1; margin-bottom: 28px; }
.price-features li {
  font-size: 13px; font-weight: 300; padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  display: flex; align-items: flex-start; gap: 10px;
  color: rgba(255,255,255,.45); line-height: 1.4;
}
.price-features li::before {
  content: '✓'; font-size: 10px; flex-shrink: 0; font-weight: 700; margin-top: 2px;
  background: var(--grd2); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.price-cta {
  display: block; text-align: center; padding: 13px;
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 600; text-decoration: none; border-radius: 1000px; transition: all .3s;
}
.pricing-card:not(.featured):not(.speed) .price-cta { background: rgba(255,255,255,.07); color: rgba(255,255,255,.7); border: 1px solid rgba(255,255,255,.12); }
.pricing-card:not(.featured):not(.speed) .price-cta:hover { background: rgba(255,255,255,.12); }
.pricing-card.featured .price-cta { background: var(--grd); color: #fff; box-shadow: 0 4px 20px rgba(125,42,232,.35); }
.pricing-card.featured .price-cta:hover { opacity: .9; }
.pricing-card.speed .price-cta { background: rgba(0,196,204,.12); color: var(--cy); border: 1px solid rgba(0,196,204,.25); }
.pricing-card.speed .price-cta:hover { background: rgba(0,196,204,.22); }

/* ── WORK / PORTFOLIO GRID ──────────────────────────────── */
.work-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 20px; margin-bottom: 52px;
}
.demo-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: rgba(255,255,255,.08);
  border-radius: 16px; overflow: hidden;
}
.demo-card {
  background: #000; padding: 40px 32px; cursor: pointer;
  transition: background .3s; position: relative;
}
.demo-card::after {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: var(--grd); transform: scaleY(0); transform-origin: bottom;
  transition: transform .4s cubic-bezier(.16,1,.3,1);
}
.demo-card:hover { background: rgba(255,255,255,.03); }
.demo-card:hover::after { transform: scaleY(1); }
.demo-title { font-size: 17px; font-weight: 600; color: rgba(255,255,255,.85); margin-bottom: 8px; }
.demo-desc { font-size: 13px; color: rgba(255,255,255,.35); line-height: 1.65; font-weight: 300; margin-bottom: 20px; }
.demo-link {
  font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  background: var(--grd2); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; display: inline-flex; align-items: center; gap: 6px;
  transition: gap .25s;
}
.demo-card:hover .demo-link { gap: 10px; }

/* ── REVIEWS SECTION ────────────────────────────────────── */
.reviews-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: rgba(255,255,255,.08);
  border-radius: 16px; overflow: hidden; margin-top: 52px;
}
.review-card { background: #000; padding: 40px 32px; transition: background .3s; }
.review-card:hover { background: rgba(255,255,255,.03); }
.review-stars { margin-bottom: 16px; }
.review-stars span { color: var(--pu); font-size: 14px; }
.review-text { font-size: 15px; line-height: 1.8; color: rgba(255,255,255,.5); font-weight: 300; margin-bottom: 24px; }
.reviewer-name { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.75); }
.reviewer-tag  { font-size: 11px; color: rgba(255,255,255,.3); margin-top: 3px; }

/* ── CTA SECTION ────────────────────────────────────────── */
#cta {
  background: #000; border-top: 1px solid rgba(255,255,255,.08);
  padding: 120px 48px; text-align: center; position: relative; overflow: hidden;
}
.cta-glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 700px; height: 700px;
  background: conic-gradient(from 0deg, var(--pu3), var(--cy), var(--pu3));
  border-radius: 50%; filter: blur(120px); opacity: .1;
  animation: cta-spin 24s linear infinite; pointer-events: none;
}
@keyframes cta-spin { from { transform: translate(-50%,-50%) rotate(0deg); } to { transform: translate(-50%,-50%) rotate(360deg); } }
.cta-inner { position: relative; z-index: 2; }
h2.cta-heading {
  font-size: clamp(48px, 8vw, 108px); font-weight: 700;
  line-height: .9; letter-spacing: -.04em; color: #fff; margin-bottom: 24px;
}
.cta-sub { font-size: 17px; color: rgba(255,255,255,.4); font-weight: 300; max-width: 440px; margin: 0 auto 44px; line-height: 1.78; }
.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── CONTACT FORM ───────────────────────────────────────── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: rgba(255,255,255,.08);
  border-radius: 16px; overflow: hidden; margin-top: 52px;
}
.contact-info { background: #000; padding: 52px 44px; }
.contact-form-wrap { background: rgba(255,255,255,.02); padding: 52px 44px; }
.contact-detail {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 28px; color: rgba(255,255,255,.45); font-size: 15px; font-weight: 300;
}
.contact-detail-icon { font-size: 18px; margin-top: 2px; flex-shrink: 0; }

/* Form fields */
.field { margin-bottom: 16px; }
.field label {
  display: block; font-size: 9px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin-bottom: 7px;
}
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 16px;
  font-family: inherit; font-size: 15px; font-weight: 300;
  color: var(--wh); background: rgba(255,255,255,.04);
  border: 1.5px solid rgba(255,255,255,.12); border-radius: 12px; outline: none;
  transition: border-color .25s, background .25s, box-shadow .25s;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,.25); }
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--pu); background: rgba(197,157,255,.05);
  box-shadow: 0 0 0 4px rgba(197,157,255,.08);
}
.field textarea { resize: vertical; min-height: 100px; line-height: 1.6; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-submit {
  width: 100%; padding: 15px; background: var(--grd); color: #fff;
  font-family: inherit; font-size: 12px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  border: none; cursor: pointer; border-radius: 1000px;
  transition: opacity .25s, transform .25s, box-shadow .25s;
  margin-top: 8px; box-shadow: 0 4px 18px rgba(125,42,232,.35);
}
.form-submit:hover { opacity: .9; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(125,42,232,.5); }
.form-note { font-size: 11px; color: rgba(255,255,255,.3); text-align: center; margin-top: 14px; line-height: 1.65; }

/* ── PAGE SECTION WRAPPER ───────────────────────────────── */
.page-section {
  background: #000; border-top: 1px solid rgba(255,255,255,.08);
  padding: 88px 48px;
}

/* ── PAGE HERO (inner pages) ────────────────────────────── */
.page-hero {
  min-height: 100vh; min-height: 100svh; background: #000;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; padding-top: 64px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  position: relative; overflow: hidden;
}
.page-hero-glow {
  position: absolute; right: -100px; top: 50%; transform: translateY(-50%);
  width: 600px; height: 600px;
  background: conic-gradient(from 0deg, var(--cy), var(--pu3), var(--cy));
  border-radius: 50%; filter: blur(120px); opacity: .15;
  animation: spin 22s linear infinite; pointer-events: none;
}
.page-hero-left  { padding: 80px 56px 80px 48px; position: relative; z-index: 2; }
.page-hero-right {
  display: flex; align-items: center; justify-content: center;
  padding: 80px 48px; position: relative; z-index: 2;
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .services-wrap { grid-template-columns: 1fr; }
  .service-tabs {
    display: flex; flex-wrap: wrap; border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .service-tab { flex: 1; min-width: 70px; border-bottom: none; border-right: 1px solid rgba(255,255,255,.06); justify-content: center; }
  .service-tab:last-child { border-right: none; }
  .service-tab::before { top: 0; bottom: auto; left: 0; right: 0; width: 100%; height: 2px; transform: scaleX(0); }
  .service-tab.active::before { transform: scaleX(1); }
  .tab-name { display: none; }
  .pricing-grid, .reviews-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .page-hero { grid-template-columns: 1fr; }
  .page-hero-left { padding: 80px 20px 40px; }
  .page-hero-right { display: none; }
  .page-section { padding-left: 20px; padding-right: 20px; }
  .service-panel { padding: 28px 20px; }
  .panel-features { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info, .contact-form-wrap { padding: 36px 24px; }
}
@media (max-width: 860px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  footer { padding: 24px 20px; flex-direction: column; align-items: flex-start; gap: 14px; }
  #hero { grid-template-columns: 1fr; }
  .hero-left { padding: 80px 20px 56px; }
  .hero-right { display: none; }
  #about { grid-template-columns: 1fr; }
  .about-left { padding: 64px 20px; border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .about-right { padding: 64px 20px; }
  .page-section { padding: 64px 20px; }
  #cta { padding: 72px 20px; }
  .demo-grid { grid-template-columns: 1fr; }
  .creds-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  h1.hero-heading { font-size: clamp(36px, 11vw, 56px); }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .field-row { grid-template-columns: 1fr; }
}
