/* =============================================
   BRANDELLOX VENTURES — Main Stylesheet
   Theme: Black + #A100FF
   Fonts: Syne (headings) + DM Sans (body)
============================================= */

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:       #000000;
  --purple:      #A100FF;
  --purple-dim:  rgba(161,0,255,0.12);
  --purple-mid:  rgba(161,0,255,0.35);
  --white:       #ffffff;
  --grey:        #888888;
  --light-grey:  #1a1a1a;
  --border:      rgba(161,0,255,0.25);
  --font-head:   'Syne', sans-serif;
  --font-body:   'DM Sans', sans-serif;
}

html  { scroll-behavior: smooth; }
body  {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  cursor: none;
}

/* ── CUSTOM CURSOR ── */
.cursor {
  position: fixed; width: 12px; height: 12px;
  background: var(--purple); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transition: transform .15s ease;
  mix-blend-mode: difference;
}
.cursor-ring {
  position: fixed; width: 36px; height: 36px;
  border: 1.5px solid var(--purple); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transition: all .25s ease; opacity: .6;
}
.cursor.active { transform: scale(2.5); }

/* ── NAVIGATION ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 60px;
  background: rgba(0,0,0,.85);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}
.logo-img  { height: 44px; width: auto; }
.nav-links { display: flex; gap: 36px; list-style: none; align-items: center; }
.nav-links a {
  color: var(--white); text-decoration: none;
  font-family: var(--font-head); font-size: .85rem;
  font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  transition: color .2s; position: relative; padding-bottom: 4px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--purple);
  transition: width .3s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover,
.nav-links a.active { color: var(--purple); }
.nav-cta {
  background: var(--purple) !important;
  color: var(--white) !important;
  padding: 10px 22px; border-radius: 4px;
  font-size: .82rem !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover  { background: #8800dd !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: all .3s; }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  justify-content: center; align-items: center; text-align: center;
  padding: 140px 60px 80px; position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 60%, rgba(161,0,255,.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(161,0,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(161,0,255,.06) 1px, transparent 1px);
  background-size: 60px 60px; pointer-events: none;
}
.hero-logo-full {
  height: 80px; width: auto; margin-bottom: 28px;
  animation: fadeUp .8s ease both;
}
.hero h1 {
  font-family: var(--font-head); font-size: clamp(3rem,7vw,6.5rem);
  font-weight: 800; line-height: 1.04; letter-spacing: -.03em;
  animation: fadeUp .8s .1s ease both; max-width: 900px;
}
.hero h1 span { color: var(--purple); }
.hero-sub {
  font-size: clamp(1rem,2vw,1.2rem); color: var(--grey);
  margin-top: 24px; max-width: 560px; line-height: 1.7;
  animation: fadeUp .8s .2s ease both; font-weight: 300;
}
.hero-btns {
  display: flex; gap: 16px; margin-top: 44px;
  animation: fadeUp .8s .3s ease both;
  flex-wrap: wrap; justify-content: center;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--purple); color: var(--white);
  padding: 14px 34px; border: none; border-radius: 4px;
  font-family: var(--font-head); font-size: .9rem; font-weight: 700;
  cursor: pointer; text-decoration: none; letter-spacing: .04em;
  transition: all .25s; display: inline-block;
}
.btn-primary:hover {
  background: #8800dd; transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(161,0,255,.4);
}
.btn-outline {
  background: transparent; color: var(--white);
  padding: 14px 34px; border: 1.5px solid rgba(255,255,255,.25);
  border-radius: 4px; font-family: var(--font-head);
  font-size: .9rem; font-weight: 600; cursor: pointer;
  text-decoration: none; letter-spacing: .04em;
  transition: all .25s; display: inline-block;
}
.btn-outline:hover { border-color: var(--purple); color: var(--purple); transform: translateY(-2px); }
.btn-white {
  background: var(--white); color: var(--purple);
  padding: 14px 34px; border: none; border-radius: 4px;
  font-family: var(--font-head); font-size: .9rem; font-weight: 800;
  cursor: pointer; text-decoration: none; display: inline-block;
  letter-spacing: .04em; transition: all .25s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,.3); }

/* ── MARQUEE ── */
.marquee-section {
  padding: 28px 0; border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden; background: var(--light-grey);
}
.marquee-track {
  display: flex; gap: 60px;
  animation: marquee 25s linear infinite;
  white-space: nowrap; width: max-content;
}
.marquee-track span { font-family: var(--font-head); font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--grey); }
.marquee-track span.dot { color: var(--purple); font-size: 1.2rem; }

/* ── SECTIONS ── */
.section { padding: 100px 60px; }
.section-label { font-size: .75rem; letter-spacing: .15em; text-transform: uppercase; color: var(--purple); font-weight: 700; margin-bottom: 14px; }
.section-title { font-family: var(--font-head); font-size: clamp(2rem,4vw,3.2rem); font-weight: 800; letter-spacing: -.02em; line-height: 1.1; max-width: 700px; }
.section-title span { color: var(--purple); }

/* ── SERVICE CARDS (grid) ── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(280px,1fr)); gap: 2px; margin-top: 60px; }
.service-card {
  background: var(--light-grey); padding: 40px 32px;
  border: 1px solid transparent; transition: all .3s;
  position: relative; overflow: hidden; cursor: pointer;
  text-decoration: none; display: block; color: var(--white);
}
.service-card::before { content: ''; position: absolute; inset: 0; background: var(--purple-dim); opacity: 0; transition: opacity .3s; }
.service-card:hover { border-color: var(--border); transform: translateY(-4px); }
.service-card:hover::before { opacity: 1; }
.service-card .icon { font-size: 2rem; margin-bottom: 20px; }
.service-card h3 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.service-card p { font-size: .88rem; color: var(--grey); line-height: 1.6; font-weight: 300; }
.service-card .arrow { position: absolute; bottom: 24px; right: 24px; color: var(--purple); font-size: 1.2rem; opacity: 0; transition: all .3s; }
.service-card:hover .arrow { opacity: 1; transform: translate(2px,-2px); }

/* ── STATS ── */
.stats-section { padding: 80px 60px; background: var(--light-grey); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(180px,1fr)); gap: 40px; text-align: center; }
.stat-num { font-family: var(--font-head); font-size: clamp(2.5rem,5vw,4rem); font-weight: 800; color: var(--purple); line-height: 1; }
.stat-label { font-size: .82rem; color: var(--grey); margin-top: 8px; letter-spacing: .06em; text-transform: uppercase; }

/* ── WHY US ── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 60px; align-items: center; }
.why-list { display: flex; flex-direction: column; gap: 24px; }
.why-item { display: flex; gap: 20px; align-items: flex-start; padding: 24px; border: 1px solid var(--border); border-radius: 4px; transition: border-color .3s; background: var(--light-grey); }
.why-item:hover { border-color: var(--purple); }
.why-icon { font-size: 1.6rem; flex-shrink: 0; margin-top: 2px; }
.why-item h4 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.why-item p  { font-size: .85rem; color: var(--grey); line-height: 1.6; font-weight: 300; }
.why-orb {
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(161,0,255,.35) 0%, transparent 70%);
  display: flex; align-items: center; justify-content: center;
  animation: pulse 3s ease-in-out infinite;
}
.why-orb-text { font-family: var(--font-head); font-size: 1.6rem; font-weight: 800; text-align: center; line-height: 1.3; }

/* ── CTA BAND ── */
.cta-band { background: var(--purple); padding: 80px 60px; text-align: center; }
.cta-band h2 { font-family: var(--font-head); font-size: clamp(1.8rem,3.5vw,2.8rem); font-weight: 800; margin-bottom: 18px; letter-spacing: -.02em; }
.cta-band p  { color: rgba(255,255,255,.8); font-size: 1rem; margin-bottom: 34px; font-weight: 300; }

/* ── PAGE HERO ── */
.page-hero { padding: 160px 60px 80px; text-align: center; position: relative; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 50% 60% at 50% 0%, rgba(161,0,255,.15) 0%, transparent 70%); pointer-events: none; }
.page-hero h1 { font-family: var(--font-head); font-size: clamp(2.5rem,5vw,4.5rem); font-weight: 800; letter-spacing: -.03em; }
.page-hero p  { color: var(--grey); font-size: 1rem; margin-top: 16px; font-weight: 300; max-width: 560px; margin-left: auto; margin-right: auto; line-height: 1.7; }

/* ── SERVICE FULL CARDS (services page) ── */
.services-list { padding: 60px 60px 100px; }
.service-full-card { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 60px 0; border-bottom: 1px solid var(--border); }
.service-full-card:last-child { border-bottom: none; }
.service-full-card.reverse { direction: rtl; }
.service-full-card.reverse > * { direction: ltr; }
.sfc-label { font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; color: var(--purple); font-weight: 700; margin-bottom: 10px; }
.sfc-title { font-family: var(--font-head); font-size: clamp(1.5rem,3vw,2.2rem); font-weight: 800; margin-bottom: 16px; line-height: 1.15; letter-spacing: -.02em; }
.sfc-desc   { color: var(--grey); line-height: 1.75; font-size: .92rem; font-weight: 300; margin-bottom: 24px; }
.sfc-features { display: flex; flex-direction: column; gap: 8px; }
.sfc-feat { display: flex; align-items: center; gap: 10px; font-size: .85rem; color: rgba(255,255,255,.7); }
.sfc-feat::before { content: '◆'; color: var(--purple); font-size: .5rem; flex-shrink: 0; }
.sfc-visual {
  background: var(--light-grey); border: 1px solid var(--border);
  border-radius: 8px; height: 280px;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; position: relative; overflow: hidden;
}
.sfc-visual::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at center,var(--purple-dim),transparent 70%); }

/* ── ABOUT PAGE ── */
.about-hero { padding: 160px 60px 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-hero-img {
  background: var(--light-grey); border: 1px solid var(--border);
  border-radius: 8px; height: 420px;
  display: flex; align-items: center; justify-content: center;
  font-size: 6rem; position: relative; overflow: hidden;
}
.about-hero-img::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at center,rgba(161,0,255,.2),transparent 70%); }
.about-label { font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; color: var(--purple); font-weight: 700; margin-bottom: 12px; }
.about-title { font-family: var(--font-head); font-size: clamp(2rem,4vw,3.2rem); font-weight: 800; line-height: 1.1; letter-spacing: -.02em; margin-bottom: 24px; }
.about-body  { color: var(--grey); line-height: 1.8; font-size: .92rem; font-weight: 300; margin-bottom: 16px; }
.values-section { padding: 80px 60px; background: var(--light-grey); }
.values-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(240px,1fr)); gap: 24px; margin-top: 50px; }
.value-card { padding: 36px 28px; border: 1px solid var(--border); border-radius: 4px; transition: all .3s; }
.value-card:hover { border-color: var(--purple); background: var(--purple-dim); }
.value-icon  { font-size: 2.2rem; margin-bottom: 16px; }
.value-title { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.value-text  { font-size: .85rem; color: var(--grey); line-height: 1.65; font-weight: 300; }

/* ── CONTACT PAGE ── */
.contact-section { padding: 140px 60px 100px; display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.contact-info h1 { font-family: var(--font-head); font-size: clamp(2rem,4vw,3rem); font-weight: 800; line-height: 1.1; letter-spacing: -.02em; margin-bottom: 20px; }
.contact-info p  { color: var(--grey); line-height: 1.8; font-size: .92rem; font-weight: 300; margin-bottom: 40px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; padding: 20px; border: 1px solid var(--border); border-radius: 4px; transition: border-color .3s; }
.contact-item:hover { border-color: var(--purple); }
.ci-icon  { font-size: 1.4rem; flex-shrink: 0; }
.ci-label { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--purple); font-weight: 700; margin-bottom: 4px; }
.ci-val   { font-size: .9rem; font-weight: 300; }
.ci-val a { color: inherit; text-decoration: none; }
.ci-val a:hover { color: var(--purple); }
.contact-form-box { background: var(--light-grey); border: 1px solid var(--border); border-radius: 8px; padding: 48px; }
.contact-form-box h2    { font-family: var(--font-head); font-size: 1.6rem; font-weight: 800; margin-bottom: 6px; }
.contact-form-box .form-sub { font-size: .85rem; color: var(--grey); margin-bottom: 32px; font-weight: 300; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: .78rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: 8px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; background: rgba(0,0,0,.5);
  border: 1.5px solid var(--border); border-radius: 4px;
  padding: 12px 16px; color: var(--white);
  font-family: var(--font-body); font-size: .9rem;
  outline: none; transition: border-color .3s; appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--purple); }
.form-group select option { background: #111; color: var(--white); }
.form-group textarea { resize: vertical; min-height: 120px; font-weight: 300; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit {
  width: 100%; background: var(--purple); color: var(--white);
  border: none; border-radius: 4px; padding: 15px;
  font-family: var(--font-head); font-size: .95rem; font-weight: 700;
  cursor: pointer; letter-spacing: .06em; transition: all .3s; margin-top: 8px;
}
.form-submit:hover { background: #8800dd; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(161,0,255,.4); }
.success-msg { display: none; background: rgba(161,0,255,.15); border: 1px solid var(--purple); border-radius: 4px; padding: 20px; text-align: center; color: var(--purple); font-weight: 600; margin-top: 16px; }

/* ── SERVICE DETAIL PAGE ── */
.service-detail { padding: 140px 60px 100px; max-width: 960px; margin: 0 auto; }
.sd-back { display: inline-flex; align-items: center; gap: 8px; color: var(--purple); font-size: .85rem; font-weight: 600; cursor: pointer; margin-bottom: 40px; text-decoration: none; transition: gap .2s; }
.sd-back:hover { gap: 14px; }
.sd-icon-big { font-size: 5rem; margin-bottom: 24px; display: block; }
.sd-title    { font-family: var(--font-head); font-size: clamp(2.2rem,5vw,3.8rem); font-weight: 800; letter-spacing: -.03em; margin-bottom: 20px; }
.sd-desc     { color: var(--grey); line-height: 1.8; font-size: 1rem; font-weight: 300; margin-bottom: 48px; }
.sd-features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 48px; }
.sd-feature { background: var(--light-grey); border: 1px solid var(--border); border-radius: 4px; padding: 24px; transition: border-color .3s; }
.sd-feature:hover { border-color: var(--purple); }
.sd-feature h4 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.sd-feature p  { font-size: .84rem; color: var(--grey); line-height: 1.6; font-weight: 300; }

/* ── FOOTER ── */
footer { background: var(--light-grey); border-top: 1px solid var(--border); padding: 60px 60px 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer-brand p { color: var(--grey); font-size: .85rem; line-height: 1.7; margin-top: 16px; font-weight: 300; max-width: 280px; }
.footer-col h4  { font-family: var(--font-head); font-size: .85rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 18px; color: rgba(255,255,255,.5); }
.footer-col ul  { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: var(--grey); text-decoration: none; font-size: .85rem; transition: color .2s; font-weight: 300; }
.footer-col ul li a:hover { color: var(--purple); }
.footer-bottom  { border-top: 1px solid var(--border); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: .8rem; color: var(--grey); font-weight: 300; }
.footer-logo { height: 36px; }

/* ── ANIMATIONS ── */
@keyframes fadeUp   { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes marquee  { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes pulse    { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.04); opacity: .85; } }
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--black); flex-direction: column; justify-content: center; align-items: center; gap: 32px; z-index: 99; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .hero, .section { padding: 120px 24px 60px; }
  .stats-section, .cta-band { padding: 60px 24px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-orb  { display: none; }
  .about-hero { grid-template-columns: 1fr; padding: 120px 24px 60px; }
  .about-hero-img { display: none; }
  .team-section, .values-section { padding: 60px 24px; }
  .contact-section { grid-template-columns: 1fr; padding: 120px 24px 60px; }
  .contact-form-box { padding: 28px 20px; }
  .service-full-card { grid-template-columns: 1fr; }
  .service-full-card.reverse { direction: ltr; }
  .sfc-visual { display: none; }
  .services-list, .page-hero { padding-left: 24px; padding-right: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  footer { padding: 40px 24px 20px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .sd-features-grid { grid-template-columns: 1fr; }
  .service-detail { padding: 120px 24px 60px; }
  .form-row { grid-template-columns: 1fr; }
}
