@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:ital,wght@0,300;0,400;0,600;0,700;1,300&display=swap');

:root {
  --orange: #FF6B00;
  --orange-bright: #FF8C00;
  --orange-glow: rgba(255,107,0,0.12);
  --black: #080808;
  --black-2: #111111;
  --black-3: #1a1a1a;
  --white: #F5F5F5;
  --gray: #888888;
  --gray-light: #2a2a2a;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  overflow-x: hidden;
  cursor: none;
}

/* ── CURSOR ── */
/* CROSSHAIR CURSOR */
.cursor {
  width:24px; height:24px;
  position:fixed; pointer-events:none; z-index:9999;
  transform:translate(-50%,-50%);
  transition:transform .15s ease, opacity .2s ease;
}
.cursor::before,
.cursor::after {
  content:'';
  position:absolute;
  background:var(--orange);
}
/* Horizontal line */
.cursor::before {
  width:100%; height:1px;
  top:50%; left:0;
  transform:translateY(-50%);
  box-shadow:0 0 6px rgba(255,107,0,0.6);
}
/* Vertical line */
.cursor::after {
  width:1px; height:100%;
  left:50%; top:0;
  transform:translateX(-50%);
  box-shadow:0 0 6px rgba(255,107,0,0.6);
}
/* Center dot */
.cursor-dot {
  width:4px; height:4px;
  background:var(--orange);
  border-radius:50%;
  position:fixed;
  pointer-events:none;
  z-index:10000;
  transform:translate(-50%,-50%);
  box-shadow:0 0 8px rgba(255,107,0,0.8);
  transition:transform .1s ease;
}
.cursor-ring { display:none; }

/* ── NAV ── */
nav {
  position: fixed; top:0; left:0; right:0; z-index:1000;
  display:flex; align-items:center; justify-content:space-between;
  padding: 24px 60px;
  transition: all .4s ease;
}
nav.scrolled {
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(12px);
  padding: 16px 60px;
  border-bottom: 1px solid var(--gray-light);
}
.nav-logo { display:inline-flex; align-items:center; gap:10px; text-decoration:none; flex-shrink:0; }
.nav-logo-mark { width:30px; height:30px; flex-shrink:0; display:block; }
.nav-logo-mark svg { width:30px; height:30px; display:block; }
.nav-logo-words { display:flex; flex-direction:column; justify-content:center; }
.nav-logo-top { font-family:'Bebas Neue',sans-serif; font-size:1.3rem; letter-spacing:3px; color:#ffffff; line-height:1; display:block; }
.nav-logo-top .r { color:#FF6B00; }
.nav-logo-bot { font-family:'Barlow',sans-serif; font-size:0.42rem; letter-spacing:4px; text-transform:uppercase; color:rgba(255,255,255,0.4); font-weight:400; line-height:1; display:block; margin-top:2px; }
.nav-links { display:flex; gap:36px; list-style:none; align-items:center; }
.nav-links a { color:var(--gray); text-decoration:none; font-size:.75rem; letter-spacing:2px; text-transform:uppercase; font-weight:600; transition:color .3s; position:relative; }
.nav-links a::after { content:''; position:absolute; bottom:-4px; left:0; right:0; height:1px; background:var(--orange); transform:scaleX(0); transition:transform .3s; }
.nav-links a:hover, .nav-links a.active { color:var(--orange); }
.nav-links a:hover::after, .nav-links a.active::after { transform:scaleX(1); }
.nav-cta { background:var(--orange) !important; color:var(--black) !important; padding:10px 24px; font-weight:700 !important; clip-path:polygon(0 0,calc(100% - 8px) 0,100% 8px,100% 100%,8px 100%,0 calc(100% - 8px)); transition:background .3s,transform .2s !important; }
.nav-cta::after { display:none !important; }
.nav-cta:hover { background:var(--orange-bright) !important; transform:translateY(-1px) !important; }

/* ── FLOATING CTA ── */
.float-cta {
  position: fixed; bottom:36px; right:36px; z-index:900;
  background: var(--orange); color: var(--black);
  padding: 14px 28px;
  font-family:'Barlow',sans-serif; font-weight:700; font-size:.75rem; letter-spacing:2px; text-transform:uppercase;
  text-decoration:none;
  clip-path:polygon(0 0,calc(100% - 10px) 0,100% 10px,100% 100%,10px 100%,0 calc(100% - 10px));
  box-shadow: 0 8px 32px rgba(255,107,0,0.4);
  transition: all .3s;
  animation: floatPulse 3s ease-in-out infinite;
}
.float-cta:hover { background:var(--orange-bright); transform:translateY(-3px); box-shadow:0 16px 40px rgba(255,107,0,0.5); }
@keyframes floatPulse { 0%,100%{box-shadow:0 8px 32px rgba(255,107,0,0.4)} 50%{box-shadow:0 8px 48px rgba(255,107,0,0.7)} }

/* ── PAGE HERO ── */
.page-hero {
  min-height: 50vh;
  display:flex; align-items:flex-end;
  padding: 120px 60px 80px;
  position:relative; overflow:hidden;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='32'%3E%3Cpath d='M14 2 L26 9 L26 23 L14 30 L2 23 L2 9 Z' fill='none' stroke='%23ffffff' stroke-width='0.4' stroke-opacity='0.04'/%3E%3C/svg%3E");
  background-size:28px 32px;
}
.page-hero-bg {
  position:absolute; inset:0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(255,107,0,0.07) 0%, transparent 70%);
}
.page-hero-grid {
  position:absolute; inset:0;
  background-image: linear-gradient(rgba(255,107,0,0.025) 1px,transparent 1px), linear-gradient(90deg,rgba(255,107,0,0.025) 1px,transparent 1px);
  background-size:60px 60px;
  mask-image:radial-gradient(ellipse 100% 100% at 50% 50%,black 0%,transparent 100%);
}
.page-hero-ghost {
  position:absolute; right:40px; bottom:-40px;
  font-family:'Bebas Neue',sans-serif; font-size:22vw;
  color:transparent; -webkit-text-stroke:1px rgba(255,107,0,0.04);
  pointer-events:none; user-select:none; line-height:1;
}
.page-hero-content { position:relative; z-index:2; }
.page-eyebrow { display:flex; align-items:center; gap:12px; margin-bottom:20px; }
.page-eyebrow-line { width:40px; height:1px; background:var(--orange); }
.page-eyebrow span { font-size:.7rem; letter-spacing:3px; text-transform:uppercase; color:var(--orange); font-weight:600; }
.page-title { font-family:'Bebas Neue',sans-serif; font-size:clamp(4rem,10vw,9rem); line-height:.9; letter-spacing:2px; }
.page-title .accent { color:var(--orange); }
.page-title .outline { color:transparent; -webkit-text-stroke:2px var(--white); }
.page-sub { font-size:1rem; color:var(--gray); font-weight:300; line-height:1.7; max-width:500px; margin-top:20px; }

/* ── SECTIONS ── */
section { padding:100px 60px; }
.section-label { display:flex; align-items:center; gap:16px; margin-bottom:20px; }
.section-label span { font-size:.7rem; letter-spacing:3px; text-transform:uppercase; color:var(--orange); font-weight:600; }
.section-label-line { width:30px; height:1px; background:var(--orange); }
.section-title { font-family:'Bebas Neue',sans-serif; font-size:clamp(3rem,5.5vw,5rem); line-height:.95; letter-spacing:1px; margin-bottom:20px; }

/* ── BUTTONS ── */
.btn-primary { background:var(--orange); color:var(--black); padding:16px 40px; font-family:'Barlow',sans-serif; font-weight:700; font-size:.85rem; letter-spacing:2px; text-transform:uppercase; text-decoration:none; display:inline-block; transition:all .3s; clip-path:polygon(0 0,calc(100% - 12px) 0,100% 12px,100% 100%,12px 100%,0 calc(100% - 12px)); }
.btn-primary:hover { background:var(--orange-bright); transform:translateY(-2px); box-shadow:0 20px 40px rgba(255,107,0,0.3); }
.btn-ghost { color:var(--white); font-size:.85rem; letter-spacing:2px; text-transform:uppercase; text-decoration:none; font-weight:600; display:inline-flex; align-items:center; gap:8px; transition:color .3s; }
.btn-ghost:hover { color:var(--orange); }
.btn-ghost::after { content:'→'; transition:transform .3s; }
.btn-ghost:hover::after { transform:translateX(4px); }
.btn-outline { background:transparent; color:var(--orange); border:1px solid var(--orange); padding:14px 36px; font-family:'Barlow',sans-serif; font-weight:700; font-size:.8rem; letter-spacing:2px; text-transform:uppercase; text-decoration:none; display:inline-block; transition:all .3s; }
.btn-outline:hover { background:var(--orange); color:var(--black); transform:translateY(-2px); }

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, #0f0800 0%, #1a0d00 50%, #0f0800 100%);
  border-top:1px solid rgba(255,107,0,0.2); border-bottom:1px solid rgba(255,107,0,0.2);
  padding:80px 60px;
  display:flex; align-items:center; justify-content:space-between; gap:40px;
  position:relative; overflow:hidden;
}
.cta-band::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse 50% 100% at 50% 50%,rgba(255,107,0,0.06) 0%,transparent 70%); }
.cta-band-text { position:relative; z-index:1; }
.cta-band-title { font-family:'Bebas Neue',sans-serif; font-size:clamp(2.5rem,5vw,4.5rem); line-height:.95; margin-bottom:12px; }
.cta-band-title span { color:var(--orange); }
.cta-band-sub { font-size:1rem; color:var(--gray); font-weight:300; max-width:480px; line-height:1.7; }
.cta-band-action { position:relative; z-index:1; flex-shrink:0; }

/* ── TESTIMONIALS ── */
.testimonials-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:60px; }
.testimonial-card { background:var(--black-3); padding:40px 32px; border:1px solid var(--gray-light); position:relative; transition:all .4s; }
.testimonial-card::before { content:''; position:absolute; top:0; left:0; right:0; height:2px; background:var(--orange); transform:scaleX(0); transform-origin:left; transition:transform .4s; }
.testimonial-card:hover { border-color:rgba(255,107,0,0.3); transform:translateY(-4px); }
.testimonial-card:hover::before { transform:scaleX(1); }
.testimonial-stars { color:var(--orange); font-size:1rem; letter-spacing:2px; margin-bottom:20px; }
.testimonial-text { font-size:.95rem; color:var(--gray); line-height:1.8; font-weight:300; font-style:italic; margin-bottom:28px; }
.testimonial-author { display:flex; align-items:center; gap:14px; }
.testimonial-avatar { width:44px; height:44px; background:var(--orange-glow); border:1px solid rgba(255,107,0,0.3); display:flex; align-items:center; justify-content:center; font-family:'Bebas Neue',sans-serif; font-size:1.2rem; color:var(--orange); flex-shrink:0; }
.testimonial-name { font-weight:700; font-size:.9rem; margin-bottom:2px; }
.testimonial-biz { font-size:.75rem; color:var(--orange); letter-spacing:1px; text-transform:uppercase; }

/* ── FAQ ── */
.faq-list { max-width:800px; margin-top:60px; }
.faq-item { border-bottom:1px solid var(--gray-light); }
.faq-question { width:100%; background:none; border:none; color:var(--white); font-family:'Barlow',sans-serif; font-size:1rem; font-weight:600; padding:28px 0; display:flex; justify-content:space-between; align-items:center; cursor:pointer; text-align:left; transition:color .3s; }
.faq-question:hover { color:var(--orange); }
.faq-icon { color:var(--orange); font-size:1.4rem; transition:transform .3s; flex-shrink:0; }
.faq-item.open .faq-icon { transform:rotate(45deg); }
.faq-answer { max-height:0; overflow:hidden; transition:max-height .4s ease, padding .4s ease; }
.faq-answer p { font-size:.95rem; color:var(--gray); line-height:1.8; font-weight:300; padding-bottom:28px; }

/* ── FOOTER ── */
footer {
  background:var(--black-2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='32'%3E%3Cpath d='M14 2 L26 9 L26 23 L14 30 L2 23 L2 9 Z' fill='none' stroke='%23ffffff' stroke-width='0.4' stroke-opacity='0.04'/%3E%3C/svg%3E");
  background-size: 28px 32px;
  border-top:1px solid var(--gray-light);
  padding:80px 60px 40px;
}
.footer-top { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:60px; margin-bottom:60px; }
.footer-brand-logo { font-family:'Bebas Neue',sans-serif; font-size:2rem; letter-spacing:4px; margin-bottom:16px; }
.footer-brand-logo span { color:var(--orange); }
.footer-brand-desc { font-size:.9rem; color:var(--gray); line-height:1.7; font-weight:300; max-width:280px; margin-bottom:24px; }
.footer-brand-email { color:var(--orange); text-decoration:none; font-size:.85rem; font-weight:600; letter-spacing:1px; transition:opacity .3s; }
.footer-brand-email:hover { opacity:.7; }
.footer-col-title { font-family:'Bebas Neue',sans-serif; font-size:1rem; letter-spacing:3px; color:var(--white); margin-bottom:24px; }
.footer-col-links { list-style:none; display:flex; flex-direction:column; gap:12px; }
.footer-col-links a { color:var(--gray); text-decoration:none; font-size:.85rem; font-weight:300; transition:color .3s; }
.footer-col-links a:hover { color:var(--orange); }
.footer-bottom { display:flex; justify-content:space-between; align-items:center; padding-top:40px; border-top:1px solid var(--gray-light); }
.footer-copy { font-size:.75rem; color:var(--gray); }
.footer-tagline { font-size:.75rem; letter-spacing:2px; text-transform:uppercase; color:var(--gray); }
.footer-tagline span { color:var(--orange); }
.footer-est { font-size:.75rem; color:var(--gray); letter-spacing:1px; }

/* ── REVEAL ── */
.reveal { opacity:0; transform:translateY(40px); transition:opacity .7s ease,transform .7s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-left { opacity:0; transform:translateX(-40px); transition:opacity .7s ease,transform .7s ease; }
.reveal-left.visible { opacity:1; transform:translateX(0); }
.reveal-right { opacity:0; transform:translateX(40px); transition:opacity .7s ease,transform .7s ease; }
.reveal-right.visible { opacity:1; transform:translateX(0); }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width:3px; }
::-webkit-scrollbar-track { background:var(--black); }
::-webkit-scrollbar-thumb { background:var(--orange); }

/* ── MOBILE NAV HAMBURGER ── */
.nav-hamburger {
  display:none;
  background:none;
  border:none;
  cursor:pointer;
  width:40px;
  height:40px;
  position:relative;
  z-index:1001;
  flex-shrink:0;
}
.nav-hamburger .bar {
  position:absolute;
  left:6px;
  width:28px; height:2px;
  background:var(--white);
  border-radius:1px;
  transition:all .36s cubic-bezier(.23,1,.32,1);
}
.nav-hamburger .bar1 { top:11px; }
.nav-hamburger .bar2 { top:19px; }
.nav-hamburger .bar3 { top:27px; }
.nav-hamburger.open .bar1 { top:19px; transform:rotate(45deg); background:var(--orange); }
.nav-hamburger.open .bar2 { opacity:0; transform:scaleX(0); }
.nav-hamburger.open .bar3 { top:19px; transform:rotate(-45deg); background:var(--orange); }

.nav-mobile-menu {
  display:none;
  position:fixed;
  top:0; left:0; right:0; bottom:0;
  background:linear-gradient(160deg, #0a0a0a 0%, #111111 60%, #0d0d0d 100%);
  z-index:999;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:0;
}
.nav-mobile-menu::before {
  content:'';
  position:absolute;
  inset:0;
  background:radial-gradient(ellipse at 70% 30%, rgba(255,107,0,0.06) 0%, transparent 65%);
  pointer-events:none;
}
.nav-mobile-menu.open { display:flex; }
.nav-mobile-menu a {
  font-family:'Bebas Neue',sans-serif;
  font-size:2.8rem;
  letter-spacing:4px;
  color:rgba(255,255,255,.8);
  text-decoration:none;
  transition:color .3s, background .3s;
  padding:16px 48px;
  width:100%;
  text-align:center;
  border-bottom:1px solid rgba(255,255,255,.05);
}
.nav-mobile-menu a:first-child { border-top:1px solid rgba(255,255,255,.05); }
.nav-mobile-menu a:hover { color:var(--orange); background:rgba(255,107,0,.04); }
.nav-mobile-menu a.mobile-cta {
  background:var(--orange);
  color:var(--black);
  padding:18px 48px;
  font-size:1.6rem;
  margin-top:32px;
  border:none;
  letter-spacing:3px;
}

/* ── MOBILE RESPONSIVE ── */
@media(max-width:768px){
  body { cursor:auto; }
  .cursor, .cursor-dot { display:none; }

  nav { padding:18px 24px; }
  nav.scrolled { padding:14px 24px; }
  .nav-links { display:none; }
  .nav-hamburger { display:flex; align-items:center; justify-content:center; }

  section { padding:60px 24px; }
  .page-hero { padding:100px 24px 60px; min-height:40vh; }
  .page-hero-ghost { display:none; }
  .page-title { font-size:clamp(3rem,14vw,5rem); }

  .float-cta { bottom:16px; right:16px; padding:12px 18px; font-size:.68rem; }

  /* CTA BAND */
  .cta-band { flex-direction:column; text-align:center; padding:50px 24px; gap:28px; }
  .cta-band-title { font-size:clamp(2rem,8vw,3.5rem); }

  /* TESTIMONIALS GRID */
  .testimonials-grid { grid-template-columns:1fr; }

  /* FOOTER */
  .footer-top { grid-template-columns:1fr 1fr; gap:32px; }
  .footer-bottom { flex-direction:column; gap:10px; text-align:center; }
  .footer-brand-desc { display:none; }

  /* SECTION TITLES */
  .section-title { font-size:clamp(2.5rem,10vw,4rem); }

  /* BUTTONS */
  .btn-primary { padding:14px 28px; font-size:.78rem; }
  .hero-actions { flex-direction:column; align-items:flex-start; gap:16px; }
}
