/* ─── NEOLASE SHARED STYLESHEET ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Share+Tech+Mono&family=Barlow:wght@300;400;600&display=swap');

:root {
  --amber:   #FFCC33;
  --black:   #000000;
  --white:   #FFFFFF;
  --grey:    #CCCCCC;
  --dark:    #111111;
  --mid:     #333333;
  --light:   #F5F5F5;
  --font-head: 'Bebas Neue', sans-serif;
  --font-mono: 'Share Tech Mono', monospace;
  --font-body: 'Barlow', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  background: var(--light);
  color: var(--dark);
  line-height: 1.65;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ─── HEADER ─────────────────────────────────────────────────────────────── */
#site-header {
  background: var(--amber);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px 0px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo { height: 100px; width: auto; display: block; margin-top: 0; }

.header-right {
  text-align: right;
  font-family: var(--font-mono);
  font-size: 1.3rem;
  line-height: 1.7;
}

.header-right a {
  color: var(--black);
  font-weight: 600;
}

.header-right a:hover { text-decoration: underline; }

/* ─── NAV ────────────────────────────────────────────────────────────────── */
.main-nav { background: var(--black); }

.nav-inner {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
}

.nav-link {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--amber);
  padding: 10px 18px;
  letter-spacing: 0.04em;
  transition: background 0.2s, color 0.2s;
  flex: 1;
  text-align: center;
}

.nav-link:hover, .nav-link.active {
  background: var(--amber);
  color: var(--black);
}

.nav-link.nav-cta {
  background: var(--amber);
  color: var(--black);
  font-size: 1.05rem;
}

.nav-link.nav-cta:hover { background: var(--white); }

/* ─── PAGE WRAPPER ───────────────────────────────────────────────────────── */
.page-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 60px;
}

/* ─── HERO ───────────────────────────────────────────────────────────────── */
.hero {
  background: var(--black);
  color: var(--white);
  padding: 70px 24px 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 60px,
    rgba(255,204,51,0.03) 60px,
    rgba(255,204,51,0.03) 61px
  );
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: center;
}

.hero-tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--amber);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 20px;
}

.hero h1 span { color: var(--amber); }

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 540px;
  margin-bottom: 32px;
}

.hero-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.badge {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border: 1px solid rgba(255,204,51,0.4);
  color: var(--amber);
}

.hero-cta-group { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-primary {
  font-family: var(--font-head);
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  background: var(--amber);
  color: var(--black);
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
  text-decoration: none;
}

.btn-primary:hover { background: var(--white); transform: translateY(-2px); }

.btn-outline {
  font-family: var(--font-head);
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  background: transparent;
  color: var(--white);
  padding: 13px 32px;
  border: 1px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
  text-decoration: none;
}

.btn-outline:hover { border-color: var(--amber); color: var(--amber); }

/* ─── QUOTE FORM CARD ────────────────────────────────────────────────────── */
.quote-card {
  background: var(--amber);
  padding: 28px 24px;
  position: relative;
}

.quote-card h3 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--black);
  margin-bottom: 16px;
  line-height: 1;
}

.quote-card input,
.quote-card textarea,
.quote-card select {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 10px;
  border: none;
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--dark);
  outline: none;
}

.quote-card textarea { height: 90px; resize: vertical; }

.quote-card button {
  width: 100%;
  background: var(--black);
  color: var(--amber);
  font-family: var(--font-head);
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  padding: 13px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.quote-card button:hover { background: var(--mid); }

/* ─── SECTION TITLES ─────────────────────────────────────────────────────── */
.section { padding: 60px 0; }
.section-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--amber);
  background: var(--black);
  display: inline-block;
  padding: 3px 10px;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  color: var(--black);
  margin-bottom: 8px;
}

.section-title span { color: var(--amber); background: var(--black); padding: 0 6px; }

.section-sub {
  font-size: 1rem;
  color: var(--mid);
  max-width: 600px;
  margin-bottom: 40px;
}

/* ─── STAT BAR ───────────────────────────────────────────────────────────── */
.stat-bar {
  background: var(--black);
  padding: 28px 24px;
}

.stat-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,204,51,0.2);
}

.stat {
  background: var(--black);
  padding: 24px 20px;
  text-align: center;
}

.stat-num {
  font-family: var(--font-head);
  font-size: 2.8rem;
  color: var(--amber);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.1em;
  margin-top: 4px;
  text-transform: uppercase;
}

/* ─── CARDS ──────────────────────────────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2px;
  background: var(--black);
}

.card {
  background: var(--white);
  padding: 30px 24px;
  position: relative;
  transition: transform 0.2s;
}

.card:hover { transform: translateY(-3px); }

.card-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.card h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--black);
  margin-bottom: 8px;
}

.card p {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.6;
}

.card-accent {
  background: var(--black);
  color: var(--white);
}

.card-accent h3 { color: var(--amber); }
.card-accent p { color: rgba(255,255,255,0.7); }

/* ─── SECTOR LINKS ───────────────────────────────────────────────────────── */
.sector-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2px;
  background: var(--black);
}

.sector-link {
  background: var(--dark);
  padding: 28px 20px;
  text-align: center;
  transition: background 0.2s;
  display: block;
}

.sector-link:hover { background: var(--amber); }
.sector-link:hover .sector-label { color: var(--black); }
.sector-link:hover .sector-icon { color: var(--black); }

.sector-icon {
  font-size: 2rem;
  color: var(--amber);
  align: center;
  margin-bottom: 10px;
}

.sector-label {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: 0.04em;
}

/* ─── CREDENTIALS STRIP ──────────────────────────────────────────────────── */
.credentials {
  background: var(--amber);
  padding: 36px 24px;
}

.credentials-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}

.cred-item h4 {
  font-family: var(--font-head);
  font-size: 1.8rem;
  color: var(--black);
  line-height: 1;
}

.cred-item p {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: rgba(0,0,0,0.65);
  margin-top: 4px;
}

/* ─── PROCESS STEPS ──────────────────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2px;
  background: var(--grey);
  counter-reset: steps;
}

.step {
  background: var(--white);
  padding: 32px 24px;
  counter-increment: steps;
  position: relative;
}

.step::before {
  content: counter(steps, decimal-leading-zero);
  font-family: var(--font-head);
  font-size: 4rem;
  color: var(--amber);
  line-height: 1;
  display: block;
  margin-bottom: 12px;
}

.step h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--black);
  margin-bottom: 8px;
}

.step p { font-size: 0.9rem; color: var(--mid); }

/* ─── TESTIMONIALS ───────────────────────────────────────────────────────── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  background: var(--black);
}

.testimonial {
  background: var(--mid);
  padding: 28px 24px;
}

.testimonial-text {
  font-style: italic;
  color: var(--white);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 16px;
}

.testimonial-author {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--amber);
  letter-spacing: 0.08em;
}

/* ─── HIGHLIGHT BANNER ───────────────────────────────────────────────────── */
.highlight-banner {
  background: var(--black);
  color: var(--white);
  padding: 48px 24px;
  text-align: center;
}

.highlight-banner h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--amber);
  margin-bottom: 12px;
}

.highlight-banner p {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  max-width: 700px;
  margin: 0 auto 28px;
}

/* ─── TWO-COL LAYOUT ─────────────────────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.two-col.flip { direction: rtl; }
.two-col.flip > * { direction: ltr; }

/* ─── LIST STYLED ────────────────────────────────────────────────────────── */
.check-list {
  list-style: none;
  padding: 0;
}

.check-list li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 0.95rem;
  color: var(--dark);
  border-bottom: 1px solid var(--grey);
}

.check-list li::before {
  content: '▶';
  position: absolute;
  left: 0;
  color: var(--amber);
  font-size: 0.65rem;
  top: 12px;
}

/* ─── INLINE QUOTE FORM (full width sections) ────────────────────────────── */
.quote-section {
  background: var(--black);
  padding: 60px 24px;
}

.quote-section-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 60px;
  align-items: start;
}

.quote-section h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--amber);
  line-height: 1;
  margin-bottom: 16px;
}

.quote-section p {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.quote-form {
  background: var(--white);
  padding: 28px 24px;
}

.quote-form h3 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--black);
  margin-bottom: 16px;
}

.quote-form input,
.quote-form textarea,
.quote-form select {
  width: 100%;
  padding: 11px 13px;
  margin-bottom: 10px;
  border: 1px solid var(--grey);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--dark);
  outline: none;
  transition: border-color 0.2s;
}

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

.quote-form textarea { height: 110px; resize: vertical; }

.quote-form button {
  width: 100%;
  background: var(--amber);
  color: var(--black);
  font-family: var(--font-head);
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  padding: 14px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.quote-form button:hover { background: var(--black); color: var(--amber); }

.free-sample-note {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  margin-top: 12px;
}

/* ─── FOOTER ─────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 48px 24px 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,204,51,0.2);
}

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--amber);
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.footer-col p,
.footer-col a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 2;
  display: block;
}

.footer-col a:hover { color: var(--amber); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 0;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.06em;
}

/* ─── PAGE HERO (inner pages) ────────────────────────────────────────────── */
.page-hero {
  background: var(--black);
  padding: 56px 24px 48px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 60px,
    rgba(255,204,51,0.03) 60px,
    rgba(255,204,51,0.03) 61px
  );
}

.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  color: var(--white);
  line-height: 0.95;
  margin-bottom: 16px;
}

.page-hero h1 span { color: var(--amber); }

.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 620px;
}

/* ─── BREADCRUMB ─────────────────────────────────────────────────────────── */
.breadcrumb {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 24px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.08em;
}

.breadcrumb a { color: var(--amber); }
.breadcrumb a:hover { text-decoration: underline; }

/* ─── COOKIE BANNER ──────────────────────────────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  padding: 18px 24px;
  width: 90%;
  max-width: 420px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
}

#cookie-banner p {
  font-size: 0.85rem;
  color: var(--black);
  flex: 1;
}

#cookie-banner button {
  font-family: var(--font-head);
  font-size: 1rem;
  background: var(--black);
  color: var(--amber);
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  white-space: nowrap;
}

/* ─── RESPONSIVE ─────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner,
  .two-col,
  .quote-section-inner,
  .footer-inner { grid-template-columns: 1fr; }

  .stat-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .credentials-inner { grid-template-columns: 1fr; }

  .hero-inner .quote-card { display: none; }
}

@media (max-width: 600px) {
  .stat-bar-inner { grid-template-columns: 1fr 1fr; }
  .nav-link { font-size: 0.82rem; padding: 8px 10px; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-content,
.quote-card,
.stat-bar-inner,
.credentials-inner,
.card-grid,
.sector-grid,
.steps,
.two-col,
.testimonial-grid,
.quote-section-inner {
  opacity: 0;
  animation: fadeInUp 0.7s ease forwards;
}