/*
Theme Name: Ventox PM
Theme URI: https://ventox.se
Author: Michael Cristea
Author URI: https://ventox.se
Description: Award-style one-page theme for Ventox Consulting AB — qualified project management & strategic advisory. Ventox brand palette (teal #00859b, gold #E8A838), Comfortaa + Sci Fly typography, GSAP scroll animations and windy hero atmosphere.
Version: 1.2.0
Requires at least: 5.9
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ventox-pm
*/

/* WordPress logo sizing — constrain BOTH the fallback logo and the Customizer custom logo */
.site-header .logo-link,
.site-header .custom-logo-link { display: flex; align-items: center; }
.site-header .logo-link img,
.site-header img.custom-logo {
  height: 34px !important;
  width: auto !important;
  max-width: none;
}
.site-footer .footer-wrap img,
.site-footer img.custom-logo { height: 38px !important; width: auto !important; }


/* =========================================================
   VENTOX BRAND SYSTEM
   ========================================================= */
@font-face {
  font-family: 'Sci Fly';
  src: url('assets/fonts/SciFly-Sans.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --teal: #00859b;
  --teal-dark: #00697a;
  --teal-deep: #003a45;
  --teal-tint: #eef7f8;
  --white: #ffffff;
  --dark: #131313;
  --dark-soft: #3a3a3a;
  --gold: #E8A838;
  --gold-hover: #cf8f27;
  --border-soft: #e4eef0;
  --font: 'Comfortaa', sans-serif;
  --font-accent: 'Sci Fly', 'Comfortaa', sans-serif;
  --max-width: 1320px;
  --gutter: clamp(1.5rem, 5vw, 4.5rem);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
body {
  font-family: var(--font);
  color: var(--dark);
  line-height: 1.65;
  background: var(--white);
  overflow-x: hidden;
}
img, svg, canvas { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 { font-weight: 700; line-height: 1.12; }
.wrap { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--gutter); }

::selection { background: var(--gold); color: var(--dark); }

/* =========================================================
   CUSTOM CURSOR
   ========================================================= */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 4000;
  border-radius: 50%; transform: translate(-50%,-50%);
}
.cursor-dot { width: 8px; height: 8px; background: var(--gold); }
.cursor-ring {
  width: 42px; height: 42px; border: 1.5px solid rgba(232,168,56,0.75);
  transition: width .3s ease, height .3s ease, background .3s ease, border-color .3s ease;
  display: flex; align-items: center; justify-content: center;
  color: var(--dark); font-size: .58rem; font-weight: 700; letter-spacing: 1px;
}
.cursor-ring span { opacity: 0; transition: opacity .2s; }
body.cursor-hover .cursor-ring { width: 68px; height: 68px; background: rgba(232,168,56,0.9); border-color: transparent; }
body.cursor-hover .cursor-ring span { opacity: 1; }
@media (hover: none), (pointer: coarse) { .cursor-dot, .cursor-ring { display: none; } }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  transition: background-color .4s ease, box-shadow .4s ease, transform .45s ease;
}
.site-header.scrolled { background: rgba(0,105,122,0.85); backdrop-filter: blur(14px); box-shadow: 0 4px 30px rgba(0,0,0,.18); }
.nav-wrap {
  max-width: var(--max-width); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.3rem var(--gutter); transition: padding .35s ease;
}
.site-header.scrolled .nav-wrap { padding: .85rem var(--gutter); }
.logo-img { height: 34px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 2.6rem; }
.nav-links a {
  color: var(--white); font-size: .9rem; font-weight: 500; letter-spacing: .4px;
  position: relative; padding: .3rem 0; overflow: hidden; display: inline-block;
}
.nav-links a b { display: block; font-weight: inherit; transition: transform .35s cubic-bezier(.65,0,.35,1); }
.nav-links a i { position: absolute; left: 0; top: 100%; font-style: normal; color: var(--gold); transition: transform .35s cubic-bezier(.65,0,.35,1); }
.nav-links a:hover b { transform: translateY(-100%); }
.nav-links a:hover i { transform: translateY(-100%); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; z-index: 1100; }
.hamburger span { width: 26px; height: 3px; background: var(--white); border-radius: 2px; transition: transform .3s, opacity .3s; }
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
@media (max-width: 860px) {
  .nav-links {
    position: fixed; top: 0; right: 0; height: 100vh; width: min(78vw, 340px);
    background: var(--teal-dark); flex-direction: column; justify-content: center;
    gap: 2.4rem; transform: translateX(100%); transition: transform .4s cubic-bezier(.65,0,.35,1);
    box-shadow: -4px 0 24px rgba(0,0,0,.3);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.2rem; }
  .hamburger { display: flex; }
}

/* =========================================================
   HERO — original ventox.se background image
   ========================================================= */
.hero {
  height: 100svh; min-height: 640px;
  display: flex; align-items: center;
  color: var(--white); position: relative; overflow: hidden;
  background:
    linear-gradient(160deg, rgba(0,133,155,0.86) 0%, rgba(0,105,122,0.9) 100%),
    url('https://ventox.se/wp-content/themes/ventox-consulting/assets/images/hero-bg.jpg') center center / cover no-repeat;
}
#wind { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none; }
.hero-inner { position: relative; z-index: 2; max-width: 900px; padding: 0 var(--gutter); width: 100%; margin: 0 auto; max-width: var(--max-width); }
.hero-content { max-width: 860px; }
.hero-tagline { font-size: clamp(2.2rem, 5.6vw, 4.2rem); font-weight: 700; line-height: 1.12; }
.hero-tagline .h-line { display: block; overflow: hidden; padding-bottom: .08em; margin-bottom: -.08em; }
.hero-tagline .h-line > span { display: inline-block; will-change: transform; }
.hero-tagline .gold { color: var(--gold); }
.hero-subtext {
  margin-top: 1.8rem; font-size: clamp(1.02rem, 2vw, 1.22rem);
  color: rgba(255,255,255,.88); max-width: 620px;
}
.hero-ctas { display: flex; gap: 1.1rem; flex-wrap: wrap; margin-top: 2.8rem; }
.cta-btn {
  position: relative; overflow: hidden; display: inline-flex; align-items: center; gap: .6rem;
  background: var(--gold); color: var(--dark);
  font-weight: 700; font-size: 1rem; letter-spacing: .5px;
  padding: 1.05rem 2.6rem; border-radius: 60px;
  box-shadow: 0 12px 28px rgba(0,0,0,.25);
  transition: box-shadow .3s ease, color .3s ease;
}
.cta-btn .fill {
  position: absolute; inset: 0; background: var(--teal-dark); border-radius: 60px;
  transform: scaleY(0); transform-origin: bottom; transition: transform .38s cubic-bezier(.65,0,.35,1);
  z-index: 0;
}
.cta-btn span { position: relative; z-index: 1; }
.cta-btn:hover { color: var(--white); }
.cta-btn:hover .fill { transform: scaleY(1); }
.cta-btn.ghost { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.55); box-shadow: none; }
.cta-btn.ghost .fill { background: var(--gold); }
.cta-btn.ghost:hover { color: var(--dark); border-color: var(--gold); }
.scroll-indicator {
  position: absolute; bottom: 2.4rem; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: .6rem;
  color: rgba(255,255,255,.65); font-size: .68rem; letter-spacing: 4px;
}
.scroll-indicator .mouse {
  width: 24px; height: 40px; border: 2px solid rgba(255,255,255,.5); border-radius: 14px;
  display: flex; justify-content: center; padding-top: 7px;
}
.scroll-indicator .mouse b { width: 3px; height: 8px; border-radius: 3px; background: var(--gold); animation: wheel 1.8s ease infinite; }
@keyframes wheel { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(12px); opacity: 0; } 100% { opacity: 0; } }

/* =========================================================
   BIG SECTION LABELS + shared head
   ========================================================= */
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .72rem; font-weight: 700; letter-spacing: 4px;
  text-transform: uppercase; margin-bottom: 1.2rem; color: var(--teal);
}
.eyebrow::before { content: ''; width: 30px; height: 2px; background: var(--gold); }
.section-head { max-width: 780px; margin-bottom: 4rem; position: relative; z-index: 1; }
.section-head h2 { font-size: clamp(2.2rem, 4.8vw, 3.6rem); color: var(--dark); }
.section-head h2 .h-line { display: block; overflow: hidden; padding-bottom: .1em; margin-bottom: -.1em; }
.section-head h2 .h-line > span { display: inline-block; }
.section-head p { margin-top: 1.2rem; font-size: 1.05rem; color: var(--dark-soft); max-width: 640px; }
.ghost-word {
  position: absolute; top: -0.55em; right: -0.04em; z-index: 0;
  font-size: clamp(5rem, 16vw, 13rem); font-weight: 700; line-height: 1;
  color: transparent; -webkit-text-stroke: 1.5px rgba(0,133,155,.10);
  pointer-events: none; user-select: none; white-space: nowrap;
}

/* =========================================================
   EXPERTISE — 3D tilt cards
   ========================================================= */
.expertise { background: var(--white); padding: clamp(6rem, 11vw, 9rem) 0 clamp(6rem, 11vw, 9rem); position: relative; overflow: hidden; }
.expertise-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; perspective: 1400px; position: relative; z-index: 1; }
.expertise-card {
  background: var(--white); padding: 2.9rem 2.1rem 2.5rem; position: relative;
  border: 1px solid var(--border-soft); border-radius: 18px;
  transform-style: preserve-3d; will-change: transform;
  transition: box-shadow .4s ease, border-color .4s ease;
  overflow: hidden;
}
.expertise-card:hover { box-shadow: 0 30px 60px rgba(0,105,122,.18); border-color: rgba(0,133,155,.25); }
.card-glow {
  position: absolute; width: 340px; height: 340px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,133,155,.12) 0%, rgba(0,133,155,0) 65%);
  pointer-events: none; opacity: 0; transition: opacity .35s ease;
  transform: translate(-50%,-50%); left: 50%; top: 50%;
}
.expertise-card:hover .card-glow { opacity: 1; }
.expertise-card > *:not(.card-glow) { position: relative; z-index: 1; transform: translateZ(34px); }
.index-num { display: block; margin-bottom: 1.4rem; font-size: .92rem; letter-spacing: 2px; color: var(--gold); font-weight: 700; }
.card-icon {
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--teal-tint); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem; transition: background .3s, color .3s, transform .45s cubic-bezier(.34,1.56,.64,1);
}
.card-icon svg { width: 26px; height: 26px; }
.expertise-card:hover .card-icon { background: var(--gold); color: var(--dark); transform: translateZ(34px) rotate(-10deg) scale(1.1); }
.expertise-card h3 { font-size: 1.18rem; margin-bottom: .8rem; }
.expertise-card p { font-size: .93rem; color: var(--dark-soft); margin-bottom: 1.3rem; }
.tag-list { display: flex; flex-wrap: wrap; gap: .5rem; }
.tag-list span {
  font-size: .68rem; font-weight: 700; letter-spacing: .3px;
  color: var(--teal); background: var(--teal-tint);
  padding: .32rem .68rem; border-radius: 6px; transition: background .25s, color .25s;
}
.expertise-card:hover .tag-list span { background: rgba(232,168,56,.16); color: var(--gold-hover); }
@media (max-width: 1020px) { .expertise-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .expertise-grid { grid-template-columns: 1fr; } }

/* =========================================================
   ABOUT THE FIRM
   ========================================================= */
.about { background: var(--white); padding: clamp(6rem, 11vw, 9rem) 0; position: relative; overflow: hidden; border-top: 1px solid var(--border-soft); }
.about-grid {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem); align-items: start; position: relative; z-index: 1;
  perspective: 1400px;
}
.about-copy p { font-size: 1.05rem; color: var(--dark-soft); margin-bottom: 1.3rem; max-width: 640px; }
.about-copy p:last-child { margin-bottom: 0; }
.facts-panel {
  border: 1px solid var(--border-soft); border-radius: 14px; padding: 2.4rem;
  background: var(--teal-tint); position: relative; overflow: hidden;
  transform-style: preserve-3d; will-change: transform;
  transition: box-shadow .4s ease, border-color .4s ease;
}
.facts-panel:hover { box-shadow: 0 30px 60px rgba(0,105,122,.18); border-color: rgba(0,133,155,.25); }
.facts-panel:hover .card-glow { opacity: 1; }
.facts-panel dl { position: relative; z-index: 1; transform: translateZ(34px); }
.facts-panel dl { display: grid; grid-template-columns: auto 1fr; gap: 1rem 1.5rem; }
.facts-panel dt {
  font-size: .7rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--teal); align-self: start; padding-top: .2rem; white-space: nowrap;
}
.facts-panel dd { font-size: 1rem; color: var(--dark); font-weight: 700; }
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; } }

/* =========================================================
   PROCESS — pinned wave journey
   ========================================================= */
.process {
  background: linear-gradient(168deg, var(--teal) 0%, var(--teal-dark) 55%, var(--teal-deep) 100%);
  color: var(--white); position: relative; overflow: hidden;
}
.process-pin { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; padding: clamp(5rem, 9vw, 7rem) 0; position: relative; z-index: 1; }
.process .eyebrow { color: var(--gold); }
.process .eyebrow::before { background: var(--white); }
.process .section-head h2 { color: var(--white); }
.process .section-head p { color: rgba(255,255,255,.85); }
.process .ghost-word { -webkit-text-stroke-color: rgba(255,255,255,.08); }
#processParticles { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.process-track { position: relative; margin-top: 2rem; }
#journeyPath { position: absolute; top: 36px; left: 0; width: 100%; height: 90px; overflow: visible; }
#journeyPath .base { fill: none; stroke: rgba(255,255,255,.22); stroke-width: 2; stroke-dasharray: 5 9; }
#journeyPath .progress { fill: none; stroke: var(--gold); stroke-width: 2.5; }
#journeyDot { filter: drop-shadow(0 0 8px rgba(232,168,56,.9)); }
.process-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.4rem; position: relative; }
.step { text-align: center; padding: 0 .4rem; }
.step-dot {
  width: 74px; height: 74px; margin: 0 auto 1.4rem; border-radius: 50%;
  background: rgba(255,255,255,.08); border: 2px solid rgba(255,255,255,.35);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.15rem; position: relative;
  transition: background .4s, border-color .4s, color .4s;
}
.step.active .step-dot { background: var(--gold); border-color: var(--gold); color: var(--dark); }
.step.active .step-dot::before { content: ''; position: absolute; inset: -2px; border-radius: 50%; border: 2px solid rgba(232,168,56,.6); animation: sonar 1.6s ease-out infinite; }
@keyframes sonar { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(2); opacity: 0; } }
.step h4 { font-size: 1.05rem; margin-bottom: .5rem; }
.step p { font-size: .84rem; color: rgba(255,255,255,.75); }
@media (max-width: 900px) {
  .process-steps { grid-template-columns: 1fr; gap: 2.2rem; max-width: 400px; margin: 0 auto; }
  #journeyPath { display: none; }
}

/* Wave dividers */
.wave-divider { display: block; width: 100%; height: clamp(60px, 9vw, 130px); position: absolute; left: 0; z-index: 3; pointer-events: none; }
.wave-divider.bottom { bottom: -1px; }
.wave-divider.top { top: -1px; transform: rotate(180deg); }

/* =========================================================
   STATS
   ========================================================= */
.stats { background: var(--white); padding: clamp(6rem, 10vw, 8rem) 0; position: relative; overflow: hidden; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; position: relative; z-index: 1; }
.stat b { display: block; font-size: clamp(2.6rem, 5.4vw, 4rem); font-weight: 700; color: var(--teal); line-height: 1.1; }
.stat b i { font-style: normal; color: var(--gold); }
.stat span { display: block; margin-top: .6rem; font-size: .85rem; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase; color: var(--dark-soft); }
@media (max-width: 700px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

/* =========================================================
   QUOTE — scroll-lit words
   ========================================================= */
.quote-section { position: relative; overflow: hidden; background: var(--teal-tint); padding: clamp(7rem, 12vw, 10rem) 0; }
.quote-rings { position: absolute; inset: 0; pointer-events: none; }
.quote-rings span { position: absolute; border-radius: 50%; border: 1.5px solid rgba(0,133,155,.13); }
.quote-rings span:nth-child(1) { width: 420px; height: 420px; top: -150px; left: -130px; }
.quote-rings span:nth-child(2) { width: 640px; height: 640px; top: -260px; left: -240px; }
.quote-rings span:nth-child(3) { width: 360px; height: 360px; bottom: -140px; right: -100px; border-color: rgba(232,168,56,.2); }
.quote-rings span:nth-child(4) { width: 560px; height: 560px; bottom: -240px; right: -200px; border-color: rgba(232,168,56,.12); }
.quote-inner { position: relative; max-width: 920px; margin: 0 auto; text-align: center; z-index: 1; }
.quote-mark { font-family: Georgia, serif; font-size: 5.4rem; color: var(--gold); line-height: 1; opacity: .75; }
.quote-inner blockquote { font-size: clamp(1.3rem, 2.8vw, 1.85rem); font-weight: 500; line-height: 1.55; color: var(--dark); }
.quote-inner blockquote .w { opacity: .13; display: inline-block; }
.quote-inner blockquote .gold-w { color: var(--teal); font-weight: 700; }
.quote-attr { margin-top: 2rem; font-size: .82rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--teal); }

/* =========================================================
   CONTACT
   ========================================================= */
.contact { background: var(--white); padding: clamp(6rem, 11vw, 9rem) 0; position: relative; overflow: hidden; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2.5rem, 6vw, 5.5rem); align-items: start; position: relative; z-index: 1; }
.contact-info h2 { font-size: clamp(2rem, 4.6vw, 3rem); margin-bottom: 1.3rem; }
.contact-info p { font-size: 1.02rem; color: var(--dark-soft); max-width: 470px; margin-bottom: 2.3rem; }
.contact-list a { display: flex; align-items: center; gap: .9rem; font-weight: 700; font-size: 1rem; width: fit-content; }
.contact-list a:hover { color: var(--teal); }
.contact-list .pin {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: var(--teal-tint); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  transition: background .3s, color .3s;
}
.contact-list a:hover .pin { background: var(--gold); color: var(--dark); }
.contact-list .pin svg { width: 18px; height: 18px; }
.contact-form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-group { position: relative; }
.form-group input, .form-group textarea {
  font-family: var(--font); width: 100%;
  padding: 1.1rem 0 .8rem; border: none; border-bottom: 2px solid var(--border-soft);
  font-size: 1rem; color: var(--dark); background: transparent;
  transition: border-color .3s ease;
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group label {
  position: absolute; left: 0; top: 1.05rem; font-size: 1rem; color: #9ab4b9;
  pointer-events: none; transition: transform .3s ease, font-size .3s ease, color .3s ease;
  transform-origin: left top;
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--teal); }
.form-group input:focus ~ label, .form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label, .form-group textarea:not(:placeholder-shown) ~ label {
  transform: translateY(-1.5rem); font-size: .74rem; color: var(--teal); font-weight: 700; letter-spacing: 1px;
}
.form-group .focus-line { position: absolute; bottom: 0; left: 0; width: 100%; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .4s cubic-bezier(.65,0,.35,1); }
.form-group input:focus ~ .focus-line, .form-group textarea:focus ~ .focus-line { transform: scaleX(1); }
.submit-btn {
  position: relative; overflow: hidden; align-self: flex-start; margin-top: .5rem;
  background: var(--gold); color: var(--dark);
  font-weight: 700; font-size: 1rem; letter-spacing: .5px;
  padding: 1.05rem 2.8rem; border-radius: 60px;
  box-shadow: 0 10px 24px rgba(0,0,0,.14);
  transition: color .3s ease, box-shadow .3s ease;
}
.submit-btn .fill { position: absolute; inset: 0; background: var(--teal-dark); border-radius: 60px; transform: scaleY(0); transform-origin: bottom; transition: transform .38s cubic-bezier(.65,0,.35,1); }
.submit-btn span { position: relative; z-index: 1; }
.submit-btn:hover { color: var(--white); }
.submit-btn:hover .fill { transform: scaleY(1); }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--teal-dark); color: var(--white); padding: 4rem 0 2rem; position: relative; overflow: hidden; }
.footer-wrap { display: flex; flex-direction: column; align-items: center; gap: 1.9rem; text-align: center; position: relative; z-index: 1; }
.footer-logo-img { height: 38px; width: auto; }
.footer-copy { font-size: .8rem; opacity: .7; border-top: 1px solid rgba(255,255,255,.14); padding-top: 1.6rem; width: 100%; }
.back-top {
  position: absolute; right: var(--gutter); top: 3.4rem; z-index: 2;
  width: 52px; height: 52px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.4); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: background .3s, color .3s, border-color .3s, transform .3s;
}
.back-top:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); transform: translateY(-4px); }

/* Ripple burst for clicks */
.click-burst { position: fixed; border-radius: 50%; border: 2px solid var(--gold); pointer-events: none; z-index: 3999; transform: translate(-50%,-50%); }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* Brand accent font — Sci Fly for kickers, numerals, labels (per brand guidelines) */
.eyebrow, .index-num, .facts-panel dt, .quote-attr, .scroll-indicator { font-family: var(--font-accent); font-weight: 400; }

/* =========================================================
   PROVEN DELIVERY (track record)
   ========================================================= */
.proven { background: var(--white); padding: clamp(6rem, 11vw, 9rem) 0; position: relative; overflow: hidden; border-top: 1px solid var(--border-soft); }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; perspective: 1400px; position: relative; z-index: 1; }
.proof-item {
  background: var(--white); border: 1px solid var(--border-soft); border-radius: 18px;
  padding: 2.6rem 2.1rem; position: relative; overflow: hidden;
  transform-style: preserve-3d; will-change: transform;
  transition: box-shadow .4s ease, border-color .4s ease;
}
.proof-item:hover { box-shadow: 0 30px 60px rgba(0,105,122,.18); border-color: rgba(0,133,155,.25); }
.proof-item:hover .card-glow { opacity: 1; }
.proof-item > *:not(.card-glow) { position: relative; z-index: 1; transform: translateZ(30px); }
.proof-item .index-num { margin-bottom: .9rem; }
.proof-item h3 { font-size: 1.15rem; margin-bottom: .8rem; }
.proof-item p { font-size: .93rem; color: var(--dark-soft); }
@media (max-width: 900px) { .proof-grid { grid-template-columns: 1fr; } }

/* Contact form confirmation + footer trust line */
.form-status { font-size: .95rem; font-weight: 700; color: var(--teal); }
.footer-trust { font-size: .85rem; opacity: .85; }
.footer-trust a { text-decoration: underline; }
