/* ═══════════════════════════════════════════════════════
   WARCLY — Global Styles
   ═══════════════════════════════════════════════════════ */

/* ── Reset & Base ──────────────────────────────────────── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%;font-size:16px}
body{font-family:'Inter',system-ui,-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,sans-serif;
  color:var(--text);background:var(--bg-white);line-height:1.6;overflow-x:hidden;
  -webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
ul{list-style:none}
button{font:inherit;border:none;background:none;cursor:pointer}
input,textarea,select{font:inherit}

/* ── Tokens ────────────────────────────────────────────── */
:root{
  /* Palette — extracted from logo's chrome blue-purple */
  --blue:        #4A7AE8;
  --blue-deep:   #2B5BC4;
  --purple:      #7B5EA7;
  --purple-deep: #5C3D8F;
  --violet:      #9B6FCF;
  --chrome:      #B8C6DB;
  --silver:      #E8ECF1;

  /* Functional */
  --primary:     var(--blue);
  --primary-dark:var(--blue-deep);
  --accent:      var(--purple);
  --accent-dark: var(--purple-deep);
  --gradient:    linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%);
  --gradient-rev:linear-gradient(135deg, var(--purple) 0%, var(--blue) 100%);
  --gradient-dark:linear-gradient(135deg, #1a2a4a 0%, #2d1f47 50%, #1a2a4a 100%);

  /* Surfaces */
  --bg-white:    #ffffff;
  --bg-light:    #f7f8fb;
  --bg-dark:     #111827;
  --bg-darker:   #0d1117;

  /* Text */
  --text:        #1f2937;
  --text-light:  #6b7280;
  --text-muted:  #9ca3af;
  --text-white:  #ffffff;
  --text-on-dark:#e5e7eb;

  /* Borders */
  --border:      #e5e7eb;
  --border-light:#f3f4f6;

  /* Sections */
  --section-dark-bg: linear-gradient(160deg, #162044 0%, #1e1640 40%, #162044 100%);
  --section-dark-text: #ffffff;

  /* Misc */
  --radius:      8px;
  --radius-lg:   16px;
  --shadow:      0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:   0 4px 16px rgba(0,0,0,.1);
  --shadow-lg:   0 10px 40px rgba(0,0,0,.12);
  --transition:  .3s cubic-bezier(.4,0,.2,1);

  /* Layout */
  --max-width:   1200px;
  --nav-height:  72px;
}

/* ── Typography ────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

h1,h2,h3,h4,h5,h6{line-height:1.15;font-weight:700;letter-spacing:-.02em}
h1{font-size:clamp(2.2rem,5vw,3.75rem)}
h2{font-size:clamp(1.75rem,3.5vw,2.75rem)}
h3{font-size:clamp(1.25rem,2vw,1.5rem)}

.accent-word{
  background:var(--gradient);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}

/* ── Container ─────────────────────────────────────────── */
.container{width:100%;max-width:var(--max-width);margin:0 auto;padding:0 1.5rem}
@media(min-width:768px){.container{padding:0 2rem}}

/* ── Section helpers ───────────────────────────────────── */
.section{padding:6rem 0}
.section-label{
  font-size:.8rem;font-weight:600;letter-spacing:.12em;text-transform:uppercase;
  color:var(--primary);margin-bottom:.75rem;
}
.section-title{margin-bottom:1rem;max-width:32ch}
.section-sub{color:var(--text-light);font-size:1.1rem;max-width:56ch;line-height:1.65}

.section-dark{
  background:var(--section-dark-bg);
  color:var(--section-dark-text);
  padding:6rem 0;position:relative;overflow:hidden;
}

/* ── Wave Dividers ─────────────────────────────────────── */
.wave-divider{width:100%;overflow:hidden;line-height:0;position:relative;z-index:2}
.wave-divider svg{display:block;width:100%;height:auto;min-height:60px}
.wave-divider.flip{transform:scaleY(-1)}

/* ── Navigation ────────────────────────────────────────── */
.nav{
  position:fixed;top:0;left:0;right:0;z-index:1000;
  background:rgba(255,255,255,.92);backdrop-filter:blur(12px);
  border-bottom:1px solid var(--border-light);
  height:var(--nav-height);
}
.nav__inner{display:flex;align-items:center;height:100%;gap:2rem}
.nav__logo{display:flex;align-items:center;gap:.6rem;flex-shrink:0}
.nav__logo-img{width:42px;height:42px;object-fit:contain}
.nav__logo-text{font-size:1rem;font-weight:700;letter-spacing:.04em;text-transform:uppercase;color:var(--text)}
.nav__links{display:none;gap:2rem;margin-left:auto}
.nav__link{font-size:.875rem;font-weight:500;color:var(--text-light);transition:color var(--transition);position:relative}
.nav__link:hover,.nav__link.active{color:var(--text)}
.nav__link::after{content:'';position:absolute;bottom:-4px;left:0;width:0;height:2px;background:var(--gradient);transition:width var(--transition)}
.nav__link:hover::after,.nav__link.active::after{width:100%}
.nav__cta-desktop{display:none;margin-left:auto}
@media(min-width:900px){
  .nav__links{display:flex}
  .nav__cta-desktop{display:flex}
}

/* Hamburger */
.nav__hamburger{display:flex;flex-direction:column;gap:5px;padding:8px;cursor:pointer}
.nav__hamburger span{width:22px;height:2px;background:var(--text);border-radius:2px;transition:var(--transition)}
.nav__hamburger.open span:nth-child(1){transform:rotate(45deg) translate(5px,5px)}
.nav__hamburger.open span:nth-child(2){opacity:0}
.nav__hamburger.open span:nth-child(3){transform:rotate(-45deg) translate(5px,-5px)}
@media(min-width:900px){.nav__hamburger{display:none}}

/* Mobile menu */
.nav__mobile{
  display:none;flex-direction:column;gap:1rem;padding:1.5rem 2rem;
  position:fixed;top:var(--nav-height);left:0;right:0;
  background:#fff;border-bottom:1px solid var(--border);
  box-shadow:var(--shadow-md);z-index:999;
}
.nav__mobile.open{display:flex}
.nav__mobile-link{font-size:1rem;font-weight:500;color:var(--text);padding:.5rem 0;border-bottom:1px solid var(--border-light)}
.nav__mobile-cta{padding-top:.5rem}

/* ── Buttons ───────────────────────────────────────────── */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.5rem;
  font-size:.9rem;font-weight:600;border-radius:var(--radius);
  padding:.75rem 1.5rem;transition:all var(--transition);cursor:pointer;border:2px solid transparent;
}
.btn-primary{
  background:var(--gradient);color:#fff;border:none;
  box-shadow:0 2px 8px rgba(74,122,232,.3);
}
.btn-primary:hover{
  box-shadow:0 4px 20px rgba(74,122,232,.45);transform:translateY(-1px);
}
.btn-ghost{
  background:transparent;color:var(--text);border:2px solid var(--border);
}
.btn-ghost:hover{border-color:var(--primary);color:var(--primary)}
.btn-outline{
  background:transparent;color:var(--primary);border:2px solid var(--primary);
}
.btn-outline:hover{background:var(--primary);color:#fff}
.btn-outline-white{
  background:transparent;color:#fff;border:2px solid rgba(255,255,255,.4);
}
.btn-outline-white:hover{background:rgba(255,255,255,.1);border-color:#fff}
.btn-lg{padding:.9rem 2rem;font-size:1rem}
.btn-sm{padding:.55rem 1.2rem;font-size:.85rem}

.link-arrow{
  font-size:.9rem;font-weight:600;color:var(--primary);
  display:inline-flex;align-items:center;gap:.35rem;transition:gap var(--transition);
}
.link-arrow::after{content:'→';transition:transform var(--transition)}
.link-arrow:hover{gap:.6rem}
.link-arrow:hover::after{transform:translateX(3px)}

/* ── Hero ──────────────────────────────────────────────── */
.hero{
  min-height:100vh;display:flex;align-items:center;
  padding:calc(var(--nav-height) + 3rem) 0 4rem;
  position:relative;overflow:hidden;background:var(--bg-white);
}
.hero__grid-bg{
  position:absolute;inset:0;
  background-image:
    linear-gradient(rgba(74,122,232,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74,122,232,.04) 1px, transparent 1px);
  background-size:60px 60px;
  pointer-events:none;
}
.hero__content{max-width:680px}
.hero__eyebrow{
  font-size:.8rem;font-weight:600;letter-spacing:.1em;text-transform:uppercase;
  color:var(--text-muted);margin-bottom:1.25rem;
  display:flex;align-items:center;gap:.75rem;
}
.hero__eyebrow::before{
  content:'';width:28px;height:2px;
  background:var(--gradient);flex-shrink:0;
}
.hero__title{margin-bottom:1.5rem;color:var(--text)}
.hero__sub{font-size:1.15rem;color:var(--text-light);line-height:1.7;margin-bottom:2rem;max-width:540px}
.hero__actions{display:flex;gap:1rem;flex-wrap:wrap}

/* ── Stats Strip ───────────────────────────────────────── */
.stats-strip{padding:4rem 0;background:var(--bg-light);border-top:1px solid var(--border-light);border-bottom:1px solid var(--border-light)}
.stats-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:2rem;text-align:center}
.stat__value{
  font-size:clamp(2rem,4vw,2.75rem);font-weight:800;
  background:var(--gradient);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;
  margin-bottom:.35rem;
}
.stat__label{font-size:.85rem;color:var(--text-light);line-height:1.5}

/* ── Process / Problem Section ─────────────────────────── */
.process-list{display:flex;flex-direction:column;gap:2.5rem;
  border-left:2px solid rgba(255,255,255,.15);padding-left:2rem;margin-top:1rem;position:relative}
.process-item{position:relative;padding-left:.5rem}
.process-item::before{
  content:'';position:absolute;left:-2.6rem;top:.5rem;
  width:10px;height:10px;border-radius:50%;
  background:var(--blue);border:2px solid rgba(255,255,255,.3);
}
.process-item__num{font-size:3.5rem;font-weight:800;color:rgba(255,255,255,.08);line-height:1;margin-bottom:.5rem}
.process-item__title{font-size:1.35rem;font-weight:700;color:#fff;margin-bottom:.75rem}
.process-item__body{color:rgba(255,255,255,.7);line-height:1.7;max-width:56ch}
.process-tags{display:flex;flex-wrap:wrap;gap:.5rem;margin-top:1rem}
.process-tag{
  font-size:.75rem;font-weight:500;padding:.35rem .85rem;
  border:1px solid rgba(255,255,255,.2);border-radius:100px;
  color:rgba(255,255,255,.7);
}

/* ── Service Cards Grid ────────────────────────────────── */
.cards-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:1.5rem}
.solution-card{
  background:#fff;border:1px solid var(--border);border-radius:var(--radius-lg);
  padding:2rem;display:flex;flex-direction:column;transition:all var(--transition);
}
.solution-card:hover{box-shadow:var(--shadow-md);transform:translateY(-3px)}
.solution-card__tag{
  font-size:.7rem;font-weight:600;letter-spacing:.1em;text-transform:uppercase;
  color:var(--primary);margin-bottom:.75rem;
}
.solution-card__title{font-size:1.2rem;margin-bottom:.75rem}
.solution-card__body{color:var(--text-light);font-size:.9rem;line-height:1.65;margin-bottom:1rem}
.solution-card__list{list-style:none;margin-bottom:1rem}
.solution-card__list li{
  font-size:.85rem;color:var(--text-light);padding:.25rem 0;
  padding-left:1.2rem;position:relative;
}
.solution-card__list li::before{
  content:'—';position:absolute;left:0;color:var(--text-muted);
}

/* ── Services Page — Expandable ────────────────────────── */
.service-block{
  background:#fff;border:1px solid var(--border);border-radius:var(--radius-lg);
  padding:3rem;margin-bottom:2rem;overflow:hidden;transition:all var(--transition);
}
.service-block:hover{box-shadow:var(--shadow-md)}
.service-block__icon{
  width:56px;height:56px;border-radius:var(--radius);
  background:var(--gradient);display:flex;align-items:center;justify-content:center;
  margin-bottom:1.5rem;font-size:1.5rem;color:#fff;
}
.service-block__title{font-size:1.75rem;margin-bottom:1rem}
.service-block__desc{color:var(--text-light);font-size:1.05rem;line-height:1.7;margin-bottom:1.5rem;max-width:56ch}
.service-block__toggle{cursor:pointer}
.service-block__details{
  max-height:0;overflow:hidden;transition:max-height .5s cubic-bezier(.4,0,.2,1);
}
.service-block__details.open{max-height:2000px}
.service-detail-grid{
  display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:1.5rem;
  padding-top:2rem;border-top:1px solid var(--border);margin-top:1.5rem;
}
.service-detail{padding:1.5rem;border-radius:var(--radius);background:var(--bg-light)}
.service-detail__title{font-size:1rem;font-weight:600;margin-bottom:.5rem}
.service-detail__desc{font-size:.875rem;color:var(--text-light);line-height:1.6}

/* ── Case / Portfolio Cards ────────────────────────────── */
.case-cards-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:1.5rem}
.case-card{
  border:1px solid var(--border);border-radius:var(--radius-lg);overflow:hidden;
  display:flex;flex-direction:column;transition:all var(--transition);
}
.case-card:hover{box-shadow:var(--shadow-md);transform:translateY(-2px)}
.case-card__stripe{height:4px;background:var(--gradient)}
.case-card__content{padding:2rem;flex:1}
.case-card__tag{font-size:.7rem;font-weight:600;letter-spacing:.1em;text-transform:uppercase;color:var(--text-muted);margin-bottom:.5rem}
.case-card__title{font-size:1.15rem;margin-bottom:.75rem;line-height:1.35}
.case-card__text{color:var(--text-light);font-size:.9rem;line-height:1.65}
.case-card__footer{padding:1.25rem 2rem;border-top:1px solid var(--border-light)}

/* ── Logos Strip ───────────────────────────────────────── */
.logos-strip{padding:3rem 0;border-top:1px solid var(--border);border-bottom:1px solid var(--border)}
.logos-strip__label{
  text-align:center;font-size:.75rem;font-weight:600;letter-spacing:.12em;
  text-transform:uppercase;color:var(--text-muted);margin-bottom:1.5rem;
}
.logos-row{display:flex;justify-content:center;gap:3rem;flex-wrap:wrap;align-items:center}
.logo-placeholder{font-size:.85rem;font-weight:600;color:var(--text-muted);letter-spacing:.08em;text-transform:uppercase;opacity:.5}

/* ── FAQ ───────────────────────────────────────────────── */
.faq-list{display:flex;flex-direction:column}
.faq-item{border-bottom:1px solid var(--border)}
.faq-trigger{
  display:flex;justify-content:space-between;align-items:center;width:100%;
  padding:1.25rem 0;font-size:1rem;font-weight:600;text-align:left;
  color:var(--text);cursor:pointer;gap:1rem;
}
.faq-trigger svg{flex-shrink:0;transition:transform var(--transition);color:var(--text-muted)}
.faq-trigger[aria-expanded="true"] svg{transform:rotate(45deg);color:var(--primary)}
.faq-body{
  max-height:0;overflow:hidden;transition:max-height .4s ease,padding .4s ease;
  font-size:.95rem;color:var(--text-light);line-height:1.7;
}
.faq-body.open{max-height:500px;padding-bottom:1.25rem}

/* ── CTA Band ──────────────────────────────────────────── */
.cta-band{
  background:var(--section-dark-bg);
  padding:5rem 0;text-align:center;position:relative;overflow:hidden;
}
.cta-band__title{
  font-size:clamp(1.75rem,4vw,2.5rem);color:#fff;margin-bottom:1rem;
}
.cta-band__sub{color:rgba(255,255,255,.65);font-size:1.05rem;margin-bottom:2rem;max-width:48ch;margin-left:auto;margin-right:auto;line-height:1.65}
.cta-band__actions{display:flex;justify-content:center;gap:1rem;flex-wrap:wrap}

/* ── Footer ────────────────────────────────────────────── */
.footer{
  background:var(--bg-dark);color:var(--text-on-dark);
  padding:4rem 0 2rem;position:relative;
}
.footer__top{
  display:grid;grid-template-columns:1fr;gap:3rem;margin-bottom:3rem;
}
@media(min-width:768px){.footer__top{grid-template-columns:1.2fr 2fr}}
.footer__logo{display:flex;align-items:center;gap:.6rem;margin-bottom:.75rem}
.footer__logo-img{width:42px;height:42px;object-fit:contain}
.footer__logo-text{font-size:1rem;font-weight:700;letter-spacing:.04em;text-transform:uppercase}
.footer__tagline{color:var(--text-muted);font-size:.9rem;line-height:1.6}
.footer__nav{display:grid;grid-template-columns:repeat(auto-fit,minmax(150px,1fr));gap:2rem}
.footer__col h4{font-size:.75rem;font-weight:600;letter-spacing:.1em;text-transform:uppercase;color:var(--text-muted);margin-bottom:1rem}
.footer__col a{display:block;font-size:.9rem;color:var(--text-on-dark);padding:.3rem 0;transition:color var(--transition)}
.footer__col a:hover{color:var(--blue)}
.footer__bottom{
  display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:1rem;
  border-top:1px solid rgba(255,255,255,.08);padding-top:1.5rem;
}
.footer__copy{font-size:.8rem;color:var(--text-muted)}
.footer__social{display:flex;gap:.75rem}
.footer__social a{color:var(--text-muted);transition:color var(--transition)}
.footer__social a:hover{color:#fff}
.back-to-top{
  font-size:.8rem;font-weight:500;color:var(--text-muted);
  display:flex;align-items:center;gap:.4rem;transition:color var(--transition);cursor:pointer;
}
.back-to-top:hover{color:#fff}

/* ── Contact Form ──────────────────────────────────────── */
.contact-grid{display:grid;grid-template-columns:1fr;gap:3rem}
@media(min-width:768px){.contact-grid{grid-template-columns:1fr 1fr}}
.form-group{margin-bottom:1.25rem}
.form-label{display:block;font-size:.85rem;font-weight:600;color:var(--text);margin-bottom:.4rem}
.form-input,.form-textarea{
  width:100%;padding:.75rem 1rem;border:1px solid var(--border);
  border-radius:var(--radius);font-size:.95rem;color:var(--text);
  transition:border-color var(--transition);background:#fff;
}
.form-input:focus,.form-textarea:focus{outline:none;border-color:var(--primary);box-shadow:0 0 0 3px rgba(74,122,232,.1)}
.form-textarea{resize:vertical;min-height:120px}
.form-select{
  width:100%;padding:.75rem 1rem;border:1px solid var(--border);
  border-radius:var(--radius);font-size:.95rem;color:var(--text);
  background:#fff;appearance:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%236b7280'/%3E%3C/svg%3E");
  background-repeat:no-repeat;background-position:right 1rem center;
}

/* ── Blog Cards ────────────────────────────────────────── */
.blog-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:1.5rem}
.blog-card{
  border:1px solid var(--border);border-radius:var(--radius-lg);
  overflow:hidden;transition:all var(--transition);
}
.blog-card:hover{box-shadow:var(--shadow-md);transform:translateY(-2px)}
.blog-card__img{width:100%;height:200px;object-fit:cover;background:var(--bg-light)}
.blog-card__content{padding:1.5rem}
.blog-card__tag{font-size:.7rem;font-weight:600;letter-spacing:.1em;text-transform:uppercase;color:var(--primary);margin-bottom:.5rem}
.blog-card__title{font-size:1.1rem;margin-bottom:.5rem;line-height:1.35}
.blog-card__excerpt{color:var(--text-light);font-size:.875rem;line-height:1.6;margin-bottom:1rem}
.blog-card__meta{font-size:.75rem;color:var(--text-muted)}

/* ── Privacy Page ──────────────────────────────────────── */
.prose{max-width:760px;margin:0 auto}
.prose h2{font-size:1.5rem;margin:2.5rem 0 1rem;color:var(--text)}
.prose h3{font-size:1.15rem;margin:2rem 0 .75rem;color:var(--text)}
.prose p{margin-bottom:1rem;color:var(--text-light);line-height:1.75}
.prose ul,.prose ol{margin-bottom:1rem;padding-left:1.5rem;color:var(--text-light)}
.prose li{margin-bottom:.5rem;line-height:1.65}
.prose ul{list-style:disc}
.prose ol{list-style:decimal}
.prose strong{color:var(--text);font-weight:600}
.prose a{color:var(--primary);text-decoration:underline}

/* ── Cookie Banner ─────────────────────────────────────── */
.cookie-banner{
  position:fixed;bottom:0;left:0;right:0;z-index:9999;
  background:var(--bg-dark);color:var(--text-on-dark);
  padding:1.25rem 2rem;
  display:none;align-items:center;justify-content:space-between;gap:1rem;flex-wrap:wrap;
  box-shadow:0 -4px 20px rgba(0,0,0,.2);
}
.cookie-banner.show{display:flex}
.cookie-banner__text{font-size:.875rem;color:var(--text-on-dark);max-width:600px;line-height:1.5}
.cookie-banner__text a{color:var(--blue);text-decoration:underline}
.cookie-banner__actions{display:flex;gap:.75rem}

/* ── GSAP reveal helpers ───────────────────────────────── */
.reveal{opacity:0;transform:translateY(30px)}
.reveal-delay-1{transition-delay:.1s}
.reveal-delay-2{transition-delay:.2s}
.reveal-delay-3{transition-delay:.3s}

/* ── Page header for inner pages ───────────────────────── */
.page-header{
  padding:calc(var(--nav-height) + 4rem) 0 3rem;
  background:var(--bg-light);border-bottom:1px solid var(--border-light);
}
.page-header__title{margin-bottom:.5rem}
.page-header__sub{color:var(--text-light);font-size:1.1rem;max-width:48ch}

/* ── Responsive ────────────────────────────────────────── */
@media(max-width:767px){
  .section{padding:4rem 0}
  .hero{padding:calc(var(--nav-height) + 2rem) 0 3rem;min-height:auto}
  .process-list{padding-left:1.25rem}
  .process-item::before{left:-1.85rem}
  .stats-grid{grid-template-columns:repeat(2,1fr)}
  .footer__bottom{flex-direction:column;align-items:flex-start}
}

/* ── Horizontal scroll section ─────────────────────────── */
.horizontal-section{overflow:hidden;position:relative}
.horizontal-wrapper{display:flex;flex-wrap:nowrap;width:max-content}
.horizontal-panel{
  width:100vw;height:100vh;display:flex;align-items:center;justify-content:center;
  flex-shrink:0;padding:2rem;
}

/* ── Magnetic / Floating elements ──────────────────────── */
.float-element{will-change:transform}

/* ── Text reveal ───────────────────────────────────────── */
.text-reveal-line{overflow:hidden;display:block}
.text-reveal-word{display:inline-block}

/* ── Parallax image ────────────────────────────────────── */
.parallax-img{overflow:hidden;border-radius:var(--radius-lg)}
.parallax-img img{width:100%;height:120%;object-fit:cover;will-change:transform}

/* ── Cursor glow (desktop only) ────────────────────────── */
.cursor-glow{
  position:fixed;width:400px;height:400px;border-radius:50%;
  background:radial-gradient(circle,rgba(74,122,232,.06) 0%,transparent 70%);
  pointer-events:none;z-index:0;transform:translate(-50%,-50%);
  transition:opacity .3s;opacity:0;
}
.cursor-glow.active{opacity:1}

/* ── Animated counter ──────────────────────────────────── */
.counter{display:inline-block}

/* ── Scroll progress bar ───────────────────────────────── */
.scroll-progress{
  position:fixed;top:0;left:0;height:3px;
  background:var(--gradient);z-index:1001;
  width:0;transition:none;
}

/* ── Contact info cards ────────────────────────────────── */
.contact-info{display:flex;flex-direction:column;gap:1.5rem}
.contact-info-card{
  padding:1.5rem;border:1px solid var(--border);border-radius:var(--radius);
  transition:all var(--transition);
}
.contact-info-card:hover{box-shadow:var(--shadow);border-color:var(--primary)}
.contact-info-card__icon{font-size:1.25rem;margin-bottom:.5rem}
.contact-info-card__title{font-size:.95rem;font-weight:600;margin-bottom:.25rem}
.contact-info-card__text{font-size:.875rem;color:var(--text-light)}
