/*
Theme Name: Neverly
Theme URI: https://neverly.in
Author: Neverly
Author URI: https://neverly.in
Description: Custom WordPress theme for Neverly — a web & design studio. Dark/white alternating sections with sharp diagonal dividers, glassmorphism cards, blue gradient accent sections, video hero in a rounded frame, laptop-mockup portfolio, and scroll parallax. Elementor-compatible.
Version: 1.3.0
Requires at least: 6.0
Requires PHP: 7.4
Tested up to: 6.6
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: neverly
Tags: dark, one-page, agency, custom-menu, featured-images, translation-ready, elementor
*/

/* ==========================================================================
   NEVERLY — Digital Marketing Agency
   Theme reference: Orvian (Gradia Themes) — black canvas, orange accent,
   Clash Display headings, Archivo body, numbered sections.
   ========================================================================== */

:root{
  --bg: #050505;
  --bg-alt: #0b0b0b;
  --card: #131313;
  --card-border: rgba(255,255,255,.08);
  --text: rgba(255,255,255,.62);
  --text-strong: #f5f5f5;
  --white: #ffffff;
  --accent: #1fb8ff;
  --accent-2: #5cf0ff;
  --accent-deep: #0a7cff;
  --accent-soft: rgba(31,184,255,.12);
  --accent-grad: linear-gradient(135deg, #5cf0ff 0%, #22c7ff 45%, #0a7cff 100%);
  --font-display: "Clash Display", "Archivo", sans-serif;
  --font-body: "Archivo", sans-serif;
  --container: 1200px;
  --radius: 18px;
  --ease: cubic-bezier(.16,.84,.44,1);
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }
ul{ list-style:none; margin:0; padding:0; }
button{ font-family: inherit; cursor:pointer; }
input,textarea,select,button{ font-family: inherit; font-size: inherit; }

h1,h2,h3,h4,h5{
  font-family: var(--font-display);
  color: var(--text-strong);
  font-weight: 600;
  line-height: 1.05;
  margin: 0;
  letter-spacing: -0.01em;
}

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.accent-dot{ color: var(--accent); }

/* ---------- texture / noise ---------- */
.noise{
  position: fixed; inset:0; z-index: 2; pointer-events:none;
  opacity:.035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.cursor-glow{
  position: fixed; top:0; left:0; width: 480px; height: 480px; z-index:1;
  pointer-events:none; border-radius:50%;
  background: radial-gradient(circle, rgba(31,184,255,.12), transparent 70%);
  transform: translate(-50%,-50%);
  transition: opacity .3s ease;
  opacity: 0;
}

/* ---------- loader ---------- */
.loader{
  position: fixed; inset:0; z-index: 999;
  background: var(--bg);
  display:flex; align-items:center; justify-content:center;
  transition: opacity .6s var(--ease), visibility .6s;
}
.loader-mark{
  width: 90px; height:90px;
  filter: drop-shadow(0 0 30px rgba(31,184,255,.5));
  animation: loader-spin 1.4s linear infinite;
}
.loader.hidden{ opacity:0; visibility:hidden; }
@keyframes loader-spin{ from{ transform: rotate(0deg); } to{ transform: rotate(360deg); } }

/* ---------- buttons ---------- */
.btn{
  display:inline-flex; align-items:center; gap:10px;
  font-family: var(--font-body); font-weight:600; font-size:14px;
  text-transform: uppercase; letter-spacing:.04em;
  white-space: nowrap;
  transition: transform .35s var(--ease), background .3s ease, color .3s ease, border-color .3s ease;
}
.btn svg{ width:16px; height:16px; transition: transform .3s var(--ease); }
.btn:hover svg{ transform: translate(2px,-2px); }
.btn:hover{ transform: translateY(-2px); }

.btn-pill{
  background: var(--accent-grad);
  color: #04141f;
  padding: 14px 22px;
  border-radius: 999px;
  box-shadow: 0 8px 24px -8px rgba(31,184,255,.55);
}
.btn-pill:hover{ box-shadow: 0 10px 30px -6px rgba(31,184,255,.75); }
.btn-sm{ padding: 10px 18px; font-size:12px; }
.btn-lg{ padding: 20px 34px; font-size: 15px; }

.btn-outline{
  border:1px solid var(--card-border);
  color: var(--text-strong);
  padding: 14px 22px;
  border-radius: 999px;
  background: transparent;
}
.btn-outline:hover{ border-color: var(--accent); color: var(--accent); }

.btn-solid{
  background: var(--text-strong);
  color: #0a0a0a;
  padding: 14px 22px;
  border-radius: 999px;
  border: none;
}
.btn-solid:hover{ background: var(--accent-grad); color:#04141f; }

.btn-block{ width:100%; justify-content:center; }

.btn-whatsapp{
  background:#25D366; color:#04140a;
  padding: 14px 22px; border-radius: 999px;
  box-shadow: 0 8px 24px -8px rgba(37,211,102,.55);
  margin-top: 22px;
}
.btn-whatsapp:hover{ box-shadow: 0 10px 30px -6px rgba(37,211,102,.75); }
.btn-whatsapp svg{ width:18px; height:18px; }

/* ---------- section label ---------- */
.section-label{
  display:flex; align-items:center; gap:10px;
  font-size: 13px; font-weight: 600; text-transform: uppercase;
  letter-spacing: .12em; color: var(--text);
  margin-bottom: 28px;
}
.section-label .idx{ color: var(--accent); }

/* ---------- reveal animation ---------- */
.reveal{
  opacity:0; transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in-view{ opacity:1; transform: translateY(0); }

/* ---------- title reveal: blur + scale entrance for big headings ---------- */
h1.reveal, h2.reveal{
  opacity:0;
  transform: translateY(46px) scale(.94);
  filter: blur(10px);
  transition: opacity 1.1s var(--ease), transform 1.1s var(--ease), filter 1.1s var(--ease);
  will-change: opacity, transform, filter;
}
h1.reveal.in-view, h2.reveal.in-view{
  opacity:1; transform: translateY(0) scale(1); filter: blur(0);
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header{
  position: fixed; top:0; left:0; right:0; z-index: 100;
  padding: 20px 0;
  transition: background .4s ease, padding .4s ease, border-color .4s ease, transform .4s var(--ease), opacity .4s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled{
  background: rgba(5,5,5,.78);
  backdrop-filter: blur(14px);
  padding: 14px 0;
  border-bottom-color: var(--card-border);
}
.site-header.nav-hidden{
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}
.header-inner{ display:flex; align-items:center; justify-content:space-between; gap: 24px; }

.logo{
  display:flex; align-items:center; gap:10px;
  font-family: var(--font-display);
  font-size: 25px; font-weight:600; color: var(--white);
  letter-spacing: -0.02em;
}
.logo .dot{ color: var(--accent); }
.footer-brand .logo{ margin-bottom: 0; }

.main-nav{ display:flex; gap: 34px; }
.main-nav a{
  font-size: 14px; font-weight:500; color: var(--text);
  position:relative; padding: 4px 0;
  transition: color .3s ease;
}
.main-nav a::after{
  content:""; position:absolute; left:0; bottom:0; height:1px; width:0;
  background: var(--accent); transition: width .3s var(--ease);
}
.main-nav a:hover{ color: var(--text-strong); }
.main-nav a:hover::after{ width:100%; }

.header-right{ display:flex; align-items:center; gap:18px; }

.nav-toggle{
  display:none; flex-direction:column; gap:5px; background:none; border:none; padding:6px;
}
.nav-toggle span{ width:22px; height:2px; background: var(--white); transition: transform .3s ease, opacity .3s ease; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero{
  position: relative;
  padding: 108px 20px 20px;
}
.hero-frame{
  position: relative;
  z-index: 0;
  overflow: hidden;
  border-radius: 36px;
  min-height: 660px;
  display: flex;
  align-items: flex-end;
  background: var(--bg);
  box-shadow: 0 40px 90px -30px rgba(0,0,0,.65);
}
.hero-glow{
  position:absolute; top:-120px; left:50%; transform: translateX(-50%);
  width: 700px; height: 500px; border-radius:50%;
  background: radial-gradient(circle, rgba(31,184,255,.20), transparent 65%);
  filter: blur(40px);
  z-index:-1;
  pointer-events:none;
  mix-blend-mode: screen;
}
.hero-video{
  position:absolute; inset:0; width:100%; height:100%;
  object-fit:cover; z-index:-3; pointer-events:none;
}
.hero-video-overlay{
  position:absolute; inset:0; z-index:-2; pointer-events:none;
  background: linear-gradient(180deg, rgba(5,5,5,.5) 0%, rgba(5,5,5,.8) 75%, var(--bg) 100%);
}
.hero-inner{
  width:100%;
  padding: 60px clamp(20px,4vw,56px) 56px;
}
.hero-title{
  font-size: clamp(34px, 5.6vw, 76px);
  text-transform: uppercase;
  margin: 22px 0 56px;
  max-width: 18ch;
}
.text-outline{
  color: transparent;
  -webkit-text-stroke: 1.5px var(--accent);
}
.hero-bottom{
  display:flex; justify-content:space-between; align-items:flex-end; gap: 40px;
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 34px;
  flex-wrap: wrap;
}
.hero-sub{ max-width: 460px; font-size: 16px; margin:0; }

/* ==========================================================================
   MARQUEE
   ========================================================================== */
.marquee-section{
  position: relative; z-index: 2;
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  padding: 26px 0;
  overflow: hidden;
  background: var(--bg-alt);
}
.marquee{ width:100%; overflow:hidden; }
.marquee-track{
  display:inline-flex; align-items:center; gap: 22px;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
  font-family: var(--font-display);
  font-size: clamp(20px,3vw,34px);
  text-transform: uppercase;
  color: var(--text-strong);
}
.marquee-track span{ opacity:.85; }
.marquee-track .sep{ color: var(--accent); font-size: 16px; }
@keyframes marquee{
  0%{ transform: translateX(0); }
  100%{ transform: translateX(-50%); }
}

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about{
  padding: 130px 0 90px; position:relative; overflow:hidden;
  background:
    radial-gradient(ellipse at 25% 15%, rgba(10,124,255,.32), transparent 55%),
    radial-gradient(ellipse at 85% 85%, rgba(92,240,255,.22), transparent 55%),
    linear-gradient(160deg, var(--bg) 0%, #06182c 55%, #071f38 100%);
}
.about-grid{
  display:grid; grid-template-columns: 1.2fr 1fr; gap: 60px;
  padding-bottom: 70px; border-bottom: 1px solid var(--card-border);
}
.about-heading{
  font-size: clamp(28px,3.6vw,42px);
  text-transform: uppercase;
  max-width: 14ch;
}
.about-copy p{ font-size:16px; margin: 0 0 26px; }
.about-badges{ display:flex; flex-wrap:wrap; gap:12px; }
.badge{
  border:1px solid var(--card-border); border-radius:999px;
  padding: 10px 18px; font-size: 13px; color: var(--text-strong);
}

/* ---- roadmap: ascending phase path, replaces the old timeline grid ---- */
.roadmap{
  position: relative; overflow:visible;
  margin-top: 80px; min-height: 400px;
}
.roadmap-line{ position:absolute; inset:0; width:100%; height:100%; }
.roadmap-line path{
  stroke-dasharray: 1700;
  stroke-dashoffset: 1700;
  transition: stroke-dashoffset 1.8s var(--ease);
}
.roadmap.in-view .roadmap-line path{ stroke-dashoffset: 0; }
.roadmap-node{
  position:absolute; transform: translate(-50%, -50%);
  display:flex; flex-direction:column; align-items:flex-start; gap:8px;
  max-width: 210px; z-index:1;
}
.roadmap-node:first-child{ transform: translate(-6%, -50%); }
.roadmap-node:last-child{ transform: translate(-92%, -50%); align-items:flex-end; text-align:right; }
.roadmap-dot{
  width:14px; height:14px; border-radius:50%; flex-shrink:0;
  background: var(--accent-grad);
  box-shadow: 0 0 0 5px rgba(31,184,255,.18), 0 0 18px rgba(92,240,255,.85);
  transition: transform .35s var(--ease), box-shadow .35s ease;
}
.roadmap-label{
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 14px 18px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform .35s var(--ease), background .3s ease, border-color .3s ease;
  cursor: default;
}
.roadmap-node:hover .roadmap-label{
  transform: scale(1.1);
  background: rgba(31,184,255,.14);
  border-color: rgba(31,184,255,.45);
}
.roadmap-node:hover .roadmap-dot{
  transform: scale(1.35);
  box-shadow: 0 0 0 7px rgba(31,184,255,.28), 0 0 26px rgba(92,240,255,1);
}
.roadmap-phase{ font-size:11px; text-transform:uppercase; letter-spacing:.1em; color: var(--accent-2); }
.roadmap-node h4{ font-family: var(--font-display); font-size:17px; color:#fff; font-weight:600; margin:2px 0 4px; }
.roadmap-node p{ font-size:12.5px; color: rgba(255,255,255,.55); margin:0; }
.roadmap-title{
  position:absolute; right:8px; bottom:6px; z-index:2;
  font-family: var(--font-display); font-size: clamp(22px,2.6vw,34px); font-weight:600; color:#fff;
  text-transform:uppercase; text-align:right; line-height:1.05; pointer-events:none;
}

/* ==========================================================================
   SERVICES
   ========================================================================== */
.services{ padding: 90px 0; position:relative; overflow:hidden; }
.services-head{
  display:flex; justify-content:space-between; align-items:flex-end; gap: 40px;
  margin-bottom: 60px; flex-wrap: wrap;
}
.services-head h2{ font-size: clamp(30px,4.2vw,50px); text-transform:uppercase; }
.services-head p{ max-width: 340px; font-size:15px; margin:0; }

.service-item{
  border-top: 1px solid var(--card-border);
}
.service-item:last-child{ border-bottom: 1px solid var(--card-border); }
.service-head{
  width:100%; display:flex; align-items:center; gap: 22px;
  background:none; border:none; padding: 30px 0; text-align:left;
  color: var(--text-strong);
}
.service-icon{
  --icon-glow: #1fb8ff;
  position:relative; width:64px; height:64px; border-radius:18px; flex-shrink:0;
  background: linear-gradient(155deg, #171d29 0%, #0a0d13 100%);
  border:1px solid rgba(255,255,255,.1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), inset 0 -6px 14px rgba(0,0,0,.5);
  display:flex; align-items:center; justify-content:center;
}
.service-icon::before{
  content:""; position:absolute; inset:-20px; border-radius:50%; z-index:-1;
  background: radial-gradient(circle, var(--icon-glow), transparent 72%);
  filter: blur(16px); opacity:.55; transition: opacity .35s ease;
}
.service-icon svg{ width:28px; height:28px; color: var(--icon-glow); filter: drop-shadow(0 0 6px var(--icon-glow)); }
.service-item:hover .service-icon::before{ opacity:.9; }

.service-item:nth-child(1) .service-icon{ --icon-glow: #1fb8ff; }
.service-item:nth-child(2) .service-icon{ --icon-glow: #2f7dfb; }
.service-item:nth-child(3) .service-icon{ --icon-glow: #3ddc84; }
.service-item:nth-child(4) .service-icon{ --icon-glow: #d946ef; }
.service-item:nth-child(5) .service-icon{ --icon-glow: #fb7c3c; }
.service-item:nth-child(6) .service-icon{ --icon-glow: #2ee6b8; }
.service-num{
  font-family: var(--font-display); color: var(--accent); font-size:16px; width: 30px;
}
.service-name{
  font-family: var(--font-display); font-size: clamp(20px,2.6vw,30px);
  font-weight:600; flex:1; transition: color .3s ease, transform .3s var(--ease);
}
.service-item:hover .service-name{ color: var(--accent); transform: translateX(6px); }
.service-toggle{
  width: 38px; height: 38px; border-radius:50%; border:1px solid var(--card-border);
  display:flex; align-items:center; justify-content:center;
  transition: transform .4s var(--ease), background .3s ease, border-color .3s ease;
  flex-shrink:0;
}
.service-toggle svg{ width:16px; height:16px; transition: color .3s ease; }
.service-item.is-open .service-toggle{ background: var(--accent-grad); border-color: var(--accent); color:#04141f; transform: rotate(45deg); }

.service-body{
  max-height:0; overflow:hidden;
  transition: max-height .5s var(--ease), padding .5s var(--ease);
}
.service-item.is-open .service-body{ max-height: 200px; padding-bottom: 34px; }
.service-body p{ margin: 0 0 16px; max-width: 620px; padding-left: 138px; }
.service-tags{ display:flex; gap:10px; flex-wrap:wrap; padding-left: 138px; }
.service-tags span{
  font-size:12px; text-transform:uppercase; letter-spacing:.04em;
  border:1px solid var(--card-border); border-radius:999px; padding:6px 14px;
  color: var(--text);
}

/* ==========================================================================
   PROCESS
   ========================================================================== */
.process{
  padding: 90px 0; border-top:1px solid var(--card-border); border-bottom:1px solid var(--card-border);
  background:
    radial-gradient(ellipse at 80% 10%, rgba(31,184,255,.28), transparent 50%),
    radial-gradient(ellipse at 10% 90%, rgba(10,124,255,.22), transparent 55%),
    linear-gradient(160deg, var(--bg) 0%, #071a30 100%);
}
.process-head{ display:flex; justify-content:space-between; align-items:center; gap: 40px; margin-bottom: 60px; }
.process-heading{ font-size: clamp(28px,3.8vw,44px); text-transform:uppercase; }
.process-visual{
  width: 320px; flex-shrink:0; border-radius: var(--radius);
  border:1px solid var(--card-border); object-fit:cover; aspect-ratio: 4/5;
}
.process-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap: 26px; }
.process-card{
  background: var(--card); border:1px solid var(--card-border); border-radius: var(--radius);
  padding: 32px 26px; transition: border-color .3s ease, transform .35s var(--ease);
}
.process-card:hover{ border-color: var(--accent); transform: translateY(-6px); }
.process-num{ display:block; font-family: var(--font-display); color: var(--accent); font-size:15px; margin-bottom:22px; }
.process-card h4{ font-size: 19px; margin-bottom: 12px; font-family: var(--font-display); font-weight:600; }
.process-card p{ font-size: 14px; margin:0; }

/* ==========================================================================
   WORK — laptop mockups of real Neverly projects
   ========================================================================== */
.work{ padding: 110px 0; }
.work-head{ display:flex; justify-content:space-between; align-items:center; margin-bottom: 50px; flex-wrap:wrap; gap:20px; }
.work-grid{ display:grid; grid-template-columns: repeat(2,1fr); gap: 60px 40px; }

.work-card{ display:block; }
.work-card:hover .laptop-screen{ border-color:#2a2a2a; box-shadow: 0 34px 70px -18px rgba(31,184,255,.28), 0 0 0 1px rgba(255,255,255,.05); }
.work-card:hover .work-card-info h3{ color: var(--accent); }

.laptop-frame{ margin-bottom: 22px; }
.laptop-screen{
  position: relative;
  aspect-ratio: 16/10.4;
  background: #060606;
  border: 9px solid #1a1a1a;
  border-bottom: none;
  border-radius: 14px 14px 4px 4px;
  overflow: hidden;
  transition: border-color .4s ease, box-shadow .4s ease;
  box-shadow: 0 24px 50px -20px rgba(0,0,0,.6);
}
.laptop-cam{
  position:absolute; top:2px; left:50%; transform:translateX(-50%);
  width:5px; height:5px; border-radius:50%; background:#333; z-index:6;
}
.laptop-viewport{ position:absolute; inset:0; overflow:hidden; background:#fff; }
.laptop-viewport img{
  position:absolute; top:0; left:0; width:100%; height:100%;
  object-fit: cover; object-position: top center;
  transition: transform .5s var(--ease);
}
.work-card:hover .laptop-viewport img{ transform: scale(1.04); }
.laptop-base{
  height: 12px; margin: 0 -8px;
  background: linear-gradient(180deg, #232323, #121212);
  border-radius: 0 0 8px 8px;
  position: relative;
}
.laptop-base::after{
  content:""; position:absolute; left:50%; top:0; transform:translateX(-50%);
  width: 15%; height: 5px; background: #050505; border-radius: 0 0 5px 5px;
}

.work-card-info{ padding: 0 4px; }
.work-card-info h3{ font-size:19px; margin-bottom:10px; font-weight:600; transition: color .3s ease; }
.work-card-info .work-url{ font-size:13px; color: var(--accent-2); margin: 0 0 12px; word-break: break-word; }
.work-tags{ display:flex; gap:8px; flex-wrap:wrap; }
.work-tags span{
  font-size:11px; text-transform:uppercase; letter-spacing:.04em;
  border:1px solid var(--card-border); border-radius:999px; padding:5px 12px; color: var(--text);
}

/* ==========================================================================
   STATS
   ========================================================================== */
.stats{
  padding: 90px 0; position:relative; overflow:hidden;
  background:
    radial-gradient(ellipse at 25% 15%, rgba(10,124,255,.32), transparent 55%),
    radial-gradient(ellipse at 85% 85%, rgba(92,240,255,.22), transparent 55%),
    linear-gradient(160deg, var(--bg) 0%, #06182c 55%, #071f38 100%);
}
.stats-head{ display:flex; justify-content:space-between; align-items:center; margin-bottom: 60px; flex-wrap:wrap; gap:24px; }
.stats-head h2{ font-size: clamp(28px,3.8vw,44px); text-transform:uppercase; }
.stats-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap: 26px; }
.stats-grid-3{ grid-template-columns: repeat(3,1fr); }
.stat-card{ text-align:left; }
.stat-num{
  font-family: var(--font-display); font-size: clamp(44px,5.4vw,72px);
  color: var(--white); font-weight:600;
}
.stat-suffix{
  font-family: var(--font-display); font-size: clamp(30px,3.6vw,44px); color: var(--accent);
}
.stat-card p{ margin-top: 10px; font-size:14px; }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials{ padding: 110px 0; position:relative; overflow:hidden; }
.testimonials-heading{ font-size: clamp(28px,3.8vw,44px); text-transform:uppercase; margin-bottom: 60px; }
.testimonial-slider{ position:relative; overflow:hidden; }
.testimonial-track{ display:flex; transition: transform .6s var(--ease); }
.testimonial-card{
  min-width:100%; background: var(--card); border:1px solid var(--card-border);
  border-radius: var(--radius); padding: 60px; box-sizing:border-box;
}
.testimonial-card p{
  font-family: var(--font-display); font-weight:500; color: var(--text-strong);
  font-size: clamp(20px,2.6vw,30px); line-height:1.35; margin:0 0 34px;
}
.testi-author strong{ display:block; font-size:16px; color: var(--text-strong); margin-bottom:4px; }
.testi-author span{ font-size:13px; color: var(--text); }

.testimonial-nav{ display:flex; align-items:center; justify-content:center; gap:24px; margin-top: 34px; }
.testimonial-nav button{
  width:44px; height:44px; border-radius:50%; border:1px solid var(--card-border);
  background:none; color: var(--text-strong); display:flex; align-items:center; justify-content:center;
  transition: border-color .3s ease, background .3s ease;
}
.testimonial-nav button:hover{ border-color: var(--accent); background: var(--accent-soft); }
.testimonial-nav button svg{ width:18px; height:18px; }
.testimonial-dots{ display:flex; gap:8px; }
.testimonial-dots span{
  width:8px; height:8px; border-radius:50%; background: var(--card-border);
  transition: background .3s ease, transform .3s ease;
}
.testimonial-dots span.active{ background: var(--accent); transform: scale(1.3); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq{
  padding: 110px 0; position:relative; overflow:hidden;
  background:
    radial-gradient(ellipse at 80% 10%, rgba(31,184,255,.28), transparent 50%),
    radial-gradient(ellipse at 10% 90%, rgba(10,124,255,.22), transparent 55%),
    linear-gradient(160deg, var(--bg) 0%, #071a30 100%);
}
.faq-heading{ font-size: clamp(28px,3.8vw,44px); text-transform:uppercase; margin-bottom: 50px; }
.faq-list{ max-width: 820px; }
.faq-item{ border-top: 1px solid var(--card-border); }
.faq-item:last-child{ border-bottom: 1px solid var(--card-border); }
.faq-q{
  width:100%; display:flex; justify-content:space-between; align-items:center; gap:20px;
  background:none; border:none; padding: 26px 0; text-align:left;
  font-family: var(--font-display); font-size: clamp(17px,2vw,20px); color: var(--text-strong); font-weight:500;
}
.faq-icon{
  width:34px; height:34px; border-radius:50%; border:1px solid var(--card-border);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
  transition: transform .4s var(--ease), background .3s ease, border-color .3s ease;
}
.faq-item.is-open .faq-icon{ transform: rotate(45deg); background: var(--accent-grad); border-color: var(--accent); color:#04141f; }
.faq-a{ max-height:0; overflow:hidden; transition: max-height .45s var(--ease); }
.faq-item.is-open .faq-a{ max-height: 160px; }
.faq-a p{ margin:0 0 28px; font-size:15px; max-width: 640px; }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact{ padding: 110px 0; }
.contact-grid{ display:grid; grid-template-columns: .85fr 1.15fr; gap: 70px; }
.contact-info h2{ font-size: clamp(28px,3.8vw,44px); text-transform:uppercase; margin-bottom: 22px; }
.contact-info p{ font-size:16px; max-width: 380px; margin: 0 0 36px; }
.contact-details{ display:flex; flex-direction:column; gap:12px; margin-bottom: 40px; }
.contact-details a, .contact-details span{ font-size: 16px; color: var(--text-strong); }
.contact-details a:hover{ color: var(--accent); }
.social-links{ display:flex; gap: 22px; }
.social-links a{ font-size:13px; text-transform:uppercase; letter-spacing:.03em; color: var(--text); }
.social-links a:hover{ color: var(--accent); }

.contact-form{
  background: var(--card); border:1px solid var(--card-border); border-radius: var(--radius);
  padding: 40px; display:flex; flex-direction:column; gap: 20px;
}
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap: 20px; }
.form-field{ display:flex; flex-direction:column; gap:8px; }
.form-field label{ font-size:12px; text-transform:uppercase; letter-spacing:.04em; color: var(--text); }
.form-field input, .form-field select, .form-field textarea{
  background: var(--bg-alt); border:1px solid var(--card-border); border-radius: 10px;
  padding: 13px 16px; color: var(--text-strong); resize: vertical;
  transition: border-color .3s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus{
  outline:none; border-color: var(--accent);
}
.form-field select{ appearance:none; -webkit-appearance:none; }
.form-note{ font-size: 13px; color: var(--accent); min-height: 18px; margin:0; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer{
  position:relative; overflow:hidden;
  padding-top: 100px;
  border-top:1px solid var(--card-border);
  background: linear-gradient(180deg, var(--bg) 0%, #071a30 55%, #0a2a4a 100%);
}
.footer-cta{
  position:relative; z-index:1;
  text-align:center; padding-bottom: 90px; border-bottom: 1px solid var(--card-border);
  display:flex; flex-direction:column; align-items:center; gap: 26px;
}
.footer-eyebrow{ font-size:13px; text-transform:uppercase; letter-spacing:.14em; color: var(--text); }
.footer-cta h2{ font-size: clamp(38px,7vw,92px); text-transform:uppercase; line-height:1; }

/* ---- giant moving wordmark backdrop ---- */
.footer-bg-marquee{
  position:absolute; inset:0; z-index:0;
  display:flex; align-items:center; overflow:hidden; pointer-events:none; opacity:.5;
}
.footer-bg-track{
  display:inline-flex; white-space:nowrap; gap:70px; padding-right:70px;
  font-family: var(--font-display); font-weight:600; text-transform:uppercase;
  font-size: clamp(120px,18vw,260px); line-height:1;
  color:transparent; -webkit-text-stroke: 1.5px rgba(92,240,255,.3);
  animation: footer-marquee 26s linear infinite;
}
@keyframes footer-marquee{ 0%{ transform: translateX(0); } 100%{ transform: translateX(-50%); } }

/* ---- glass footer card ---- */
.footer-glass-wrap{ position:relative; z-index:1; padding: 60px 0 0; }
.footer-glass-card{
  background: rgba(8,20,38,.55);
  backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px);
  border:1px solid rgba(255,255,255,.14);
  border-radius: 32px;
  padding: clamp(28px,4vw,50px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 40px 80px -30px rgba(0,0,0,.6);
}
.footer-glass-top{
  display:flex; justify-content:space-between; align-items:flex-start; gap: 30px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.12); margin-bottom: 40px;
}
.footer-glass-brand .logo{ font-size:26px; margin-bottom:14px; }
.footer-glass-brand p{ font-size:14px; max-width: 320px; margin:0; color: var(--text); }
.footer-glass-social{ display:flex; gap:12px; flex-shrink:0; }
.footer-glass-social a{
  width:44px; height:44px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  background: rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.16); color:#fff;
  transition: background .3s ease, transform .3s ease, color .3s ease;
}
.footer-glass-social a:hover{ background: var(--accent-grad); color:#04141f; transform: translateY(-3px); }
.footer-glass-social a svg{ width:18px; height:18px; }

.footer-glass-bottom{ display:flex; justify-content:space-between; align-items:flex-end; gap: 40px; flex-wrap:wrap; }
.footer-glass-bottom-solo{ justify-content:flex-end; }
.footer-glass-newsletter-label{ display:flex; align-items:center; gap:10px; font-size:14px; font-weight:600; color: var(--text-strong); margin-bottom:16px; }
.footer-glass-newsletter-label svg{ width:18px; height:18px; color: var(--accent); }
.footer-glass-note{ font-size:12px; color: var(--text); margin: 10px 0 0; }
.footer-glass-note a{ color: var(--accent-2); text-decoration: underline; }

.footer-glass-links{ display:flex; flex-wrap:wrap; gap:10px; justify-content:flex-end; }
.footer-glass-links a{
  padding: 12px 22px; border-radius:999px; font-size:13px; font-weight:600;
  background: rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.16); color:#fff;
  transition: background .3s ease, transform .3s ease, color .3s ease;
}
.footer-glass-links a:hover{ background: var(--accent-grad); color:#04141f; transform: translateY(-2px); }

.newsletter-form{ display:flex; border:1px solid rgba(255,255,255,.18); border-radius:999px; padding:5px; max-width: 320px; }
.newsletter-form input{
  flex:1; background:none; border:none; padding: 10px 16px; color: var(--text-strong);
}
.newsletter-form input:focus{ outline:none; }
.newsletter-form button{
  width: 38px; height:38px; border-radius:50%; background: var(--accent-grad); border:none;
  display:flex; align-items:center; justify-content:center; color:#04141f; flex-shrink:0;
}
.newsletter-form button svg{ width:16px; height:16px; }

.footer-bottom{
  position:relative; z-index:1;
  display:flex; justify-content:space-between; align-items:center; padding: 28px 0; font-size:13px;
  flex-wrap:wrap; gap:16px;
}
.footer-bottom .social-links a:hover{ color: var(--accent); }

/* ==========================================================================
   BACK TO TOP
   ========================================================================== */
.back-to-top{
  position: fixed; bottom: 28px; right: 28px; z-index: 90;
  width: 58px; height:58px; border-radius:50%; background: var(--accent-grad); border:none;
  display:flex; align-items:center; justify-content:center; color:#04141f;
  opacity:0; visibility:hidden; transform: translateY(10px);
  transition: opacity .3s ease, transform .3s ease, visibility .3s;
}
.back-to-top.visible{ opacity:1; visibility:visible; transform: translateY(0); }
.back-to-top svg{ width:24px; height:24px; }

.whatsapp-float{
  position: fixed; bottom: 28px; left: 28px; z-index: 90;
  width: 66px; height:66px; border-radius:50%; background:#25D366;
  display:flex; align-items:center; justify-content:center; color:#fff;
  box-shadow: 0 10px 26px -8px rgba(37,211,102,.6);
  transition: transform .3s var(--ease), box-shadow .3s ease;
}
.whatsapp-float:hover{ transform: translateY(-3px) scale(1.05); box-shadow: 0 14px 32px -8px rgba(37,211,102,.75); }
.whatsapp-float svg{ width:32px; height:32px; }

/* ==========================================================================
   SECTION BACKGROUND VIDEOS — blended into the blue-gradient sections
   ========================================================================== */
.section-bg-video{
  position:absolute; inset:0; width:100%; height:100%;
  object-fit:cover; opacity:.6; z-index:0; pointer-events:none;
}
.stats .section-bg-video{ opacity:.3; }
.faq .section-bg-video{ opacity:.4; object-position: right center; }
.stats .container{ position:relative; z-index:1; }
.faq .container{ position:relative; z-index:1; }

/* ==========================================================================
   FLOATING 3D ELEMENTS — decorative, scroll-parallax
   ========================================================================== */
.float-elem{
  position:absolute; z-index:-1; pointer-events:none;
  will-change: transform;
}
.float-elem img{
  width:100%; display:block;
  animation: float-bob 9s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(31,184,255,.25));
}
@keyframes float-bob{
  0%,100%{ transform: translateY(0) rotate(0deg); }
  50%{ transform: translateY(-16px) rotate(6deg); }
}


/* ==========================================================================
   LIGHT SECTIONS — alternating white sections between the dark ones
   ========================================================================== */
.section-light{
  background-color: #ffffff;
  color: rgba(10,10,10,.65);
}
.section-light h1, .section-light h2, .section-light h3, .section-light h4, .section-light h5{
  color: #0a0a0a;
}
.section-light .section-label{ color: rgba(10,10,10,.55); }

.section-light .marquee-track{ color: #0a0a0a; }

.section-light .services-head p{ color: rgba(10,10,10,.6); }
.section-light .service-head{ color: #0a0a0a; }
.section-light .service-item{ border-color: rgba(10,10,10,.1); }
.section-light .service-toggle{ border-color: rgba(10,10,10,.15); }
.section-light .service-body p{ color: rgba(10,10,10,.65); }
.section-light .service-tags span{ border-color: rgba(10,10,10,.15); color: rgba(10,10,10,.6); }

.section-light .work-card-info h3{ color: #0a0a0a; }
.section-light .work-card-info .work-url{ color: var(--accent-deep); }
.section-light .work-tags span{ border-color: rgba(10,10,10,.15); color: rgba(10,10,10,.6); }
.section-light .btn-outline{ border-color: rgba(10,10,10,.2); color: #0a0a0a; }
.section-light .btn-outline:hover{ border-color: var(--accent-deep); color: var(--accent-deep); }

.section-light .testimonial-nav button{ border-color: rgba(10,10,10,.15); color: #0a0a0a; }
.section-light .testimonial-nav button:hover{ border-color: var(--accent); background: var(--accent-soft); }
.section-light .testimonial-dots span{ background: rgba(10,10,10,.15); }
.section-light .testimonial-dots span.active{ background: var(--accent); }

.section-light .contact-info p{ color: rgba(10,10,10,.65); }
.section-light .contact-details a, .section-light .contact-details span{ color: #0a0a0a; }
.section-light .contact-details a:hover{ color: var(--accent-deep); }

/* ==========================================================================
   SECTION DIVIDERS — sharp diagonal cuts between black and white sections
   ========================================================================== */
.angle-top{
  clip-path: polygon(0 64px, 100% 0, 100% 100%, 0 100%);
  margin-top: -64px;
}
.angle-top-sm{
  clip-path: polygon(0 20px, 100% 0, 100% 100%, 0 100%);
  margin-top: -20px;
}

/* ==========================================================================
   GLASSMORPHISM — frosted-glass cards throughout the site
   ========================================================================== */
.badge{
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
}
.process-card{
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 20px 40px -24px rgba(0,0,0,.5);
}
.stat-card{
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--card-border);
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.testimonial-card, .contact-form{
  background: rgba(10,10,10,.72);
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 24px 50px -24px rgba(0,0,0,.5);
}
.service-icon{
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
}

/* ==========================================================================
   CREATIVE SERVICES HUB
   ========================================================================== */
.creative-hub{ padding: 110px 0; position:relative; overflow:hidden; }
.creative-hub-grid{ display:grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items:start; }
.creative-hub-visual{
  position: sticky; top: 120px;
  border-radius: 24px; overflow:hidden;
  aspect-ratio: 4/5;
  border: 1px solid rgba(10,10,10,.1);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.35);
}
.creative-hub-visual img{ width:100%; height:100%; object-fit:cover; }

.chub-slider{ position:relative; width:100%; height:100%; }
.chub-slider-track{
  display:flex; width:100%; height:100%;
  transition: transform .5s var(--ease);
}
.chub-slider-track img{ width:100%; height:100%; object-fit:cover; flex-shrink:0; }
.chub-slider-fade{ transition: opacity .4s ease; }

.chub-slider-nav{
  position:absolute; left:0; right:0; bottom:0; z-index:2;
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  padding: 18px;
  background: linear-gradient(0deg, rgba(0,0,0,.55), transparent);
}
.chub-slider-nav button{
  width:38px; height:38px; border-radius:50%; flex-shrink:0;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.3);
  color:#fff; display:flex; align-items:center; justify-content:center;
  transition: background .3s ease, transform .3s var(--ease);
}
.chub-slider-nav button:hover{ background: var(--accent-grad); color:#04141f; }
.chub-slider-nav button svg{ width:16px; height:16px; }
.chub-slider-dots{ display:flex; gap:7px; }
.chub-slider-dots span{
  width:7px; height:7px; border-radius:50%; background: rgba(255,255,255,.4);
  transition: background .3s ease, transform .3s ease; cursor:pointer;
}
.chub-slider-dots span.active{ background:#fff; transform: scale(1.3); }
.creative-hub-heading{
  font-size: clamp(34px,5vw,60px); text-transform:uppercase;
  margin-bottom: 44px; max-width: 14ch;
}
.chub-item{ border-top: 1px solid rgba(10,10,10,.1); }
.chub-item:last-child{ border-bottom: 1px solid rgba(10,10,10,.1); }
.chub-head{
  width:100%; display:flex; align-items:center; gap: 20px;
  background:none; border:none; padding: 24px 0; text-align:left;
}
.chub-num{
  width:36px; height:36px; border-radius:50%; flex-shrink:0;
  background: var(--accent-grad); color:#04141f;
  display:flex; align-items:center; justify-content:center;
  font-family: var(--font-display); font-size:13px; font-weight:600;
  opacity:.35; transition: opacity .3s ease;
}
.chub-item.is-open .chub-num{ opacity:1; }
.chub-name{
  font-family: var(--font-display); font-size: clamp(19px,2.2vw,26px);
  font-weight:600; flex:1; color: rgba(10,10,10,.35);
  transition: color .3s ease, transform .3s var(--ease);
}
.chub-item.is-open .chub-name, .chub-item:hover .chub-name{ color: #0a0a0a; }
.chub-toggle{
  width:36px; height:36px; border-radius:50%; border:1px solid rgba(10,10,10,.15);
  display:flex; align-items:center; justify-content:center; color:#0a0a0a;
  transition: transform .4s var(--ease), background .3s ease, border-color .3s ease;
  flex-shrink:0;
}
.chub-toggle svg{ width:15px; height:15px; }
.chub-item.is-open .chub-toggle{ background: var(--accent-grad); border-color: var(--accent); color:#04141f; transform: rotate(45deg); }
.chub-body{ max-height:0; overflow:hidden; transition: max-height .5s var(--ease), padding .5s var(--ease); }
.chub-item.is-open .chub-body{ max-height: 140px; padding-bottom: 28px; }
.chub-body p{ margin:0; max-width: 520px; padding-left: 56px; font-size:15px; color: rgba(10,10,10,.6); }

/* ==========================================================================
   FLOATING BOTTOM NAV DOCK
   ========================================================================== */
.floating-dock{
  position: fixed; left:50%; bottom: 26px;
  transform: translateX(-50%) translateY(20px);
  z-index: 95;
  display:flex; align-items:center; gap: 4px;
  background: rgba(10,10,10,.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  padding: 6px;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,.6);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .4s ease, transform .4s var(--ease), visibility .4s;
}
.floating-dock.visible{
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dock-link{
  font-size: 13px; font-weight:600; color: rgba(255,255,255,.6);
  padding: 12px 20px; border-radius: 999px;
  transition: background .3s ease, color .3s ease;
  white-space: nowrap;
}
.dock-link:hover{ color: #fff; }
.dock-link.active{ background: var(--accent-grad); color: #04141f; }

/* ==========================================================================
   BLOG — Tech Insights listing + article pages
   ========================================================================== */
.blog-hero{ padding: 152px 0 70px; }
.blog-hero h1{ font-size: clamp(38px,6vw,72px); text-transform:uppercase; max-width:16ch; margin: 22px 0 20px; }
.blog-hero p{ max-width: 520px; font-size:16px; margin:0; }

.blog-listing{ padding: 30px 0 130px; }
.blog-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap: 40px; }
.blog-card{
  display:block; border-radius: var(--radius); overflow:hidden;
  border:1px solid var(--card-border); background: var(--card);
  transition: transform .35s var(--ease), border-color .3s ease;
}
.blog-card:hover{ transform: translateY(-6px); border-color: var(--accent); }
.blog-card-img{ aspect-ratio: 4/3; overflow:hidden; }
.blog-card-img img{ width:100%; height:100%; object-fit:cover; transition: transform .5s var(--ease); }
.blog-card:hover .blog-card-img img{ transform: scale(1.06); }
.blog-card-body{ padding: 26px; }
.blog-card-meta{ display:flex; gap:12px; font-size:12px; text-transform:uppercase; letter-spacing:.04em; color: var(--accent-2); margin-bottom: 14px; }
.blog-card-body h3{ font-size: 20px; margin-bottom: 12px; font-weight:600; }
.blog-card-body p{ font-size: 14px; margin:0; }

.post-hero{ padding: 152px 0 40px; }
.post-hero h1{ font-size: clamp(30px,5vw,54px); text-transform:uppercase; max-width: 20ch; margin: 22px 0 24px; }
.post-meta{ display:flex; gap:16px; font-size:13px; color: var(--text); flex-wrap:wrap; }
.post-cover{ margin: 46px 0 10px; border-radius: 24px; overflow:hidden; aspect-ratio: 16/8; border:1px solid var(--card-border); }
.post-cover img{ width:100%; height:100%; object-fit:cover; }
.post-body{ max-width: 760px; margin: 0 auto; padding: 50px 0 20px; }
.post-body h2{ font-size: clamp(22px,3vw,28px); text-transform:uppercase; margin: 44px 0 18px; color: var(--text-strong); }
.post-body p{ font-size:16px; margin: 0 0 20px; }
.post-body ul{ margin: 0 0 24px; padding-left: 22px; list-style:disc; }
.post-body li{ margin-bottom: 10px; font-size:16px; }
.post-cta{
  background: var(--card); border:1px solid var(--card-border); border-radius: var(--radius);
  padding: 44px; text-align:center; margin-top: 30px;
}
.post-cta h3{ font-size: clamp(22px,3vw,30px); text-transform:uppercase; margin-bottom:16px; }
.post-cta p{ max-width: 480px; margin: 0 auto 26px; }
.post-related{ padding: 90px 0 130px; }
.post-related h4{ font-size:13px; text-transform:uppercase; letter-spacing:.1em; margin-bottom: 30px; color: var(--text); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px){
  .about-grid{ grid-template-columns: 1fr; gap: 30px; }
  .roadmap-node{ max-width: 170px; }
  .process-grid{ grid-template-columns: repeat(2,1fr); }
  .work-grid{ grid-template-columns: repeat(2,1fr); }
  .stats-grid{ grid-template-columns: repeat(2,1fr); }
  .contact-grid{ grid-template-columns: 1fr; gap: 50px; }
  .creative-hub-grid{ grid-template-columns: 1fr; gap: 40px; }
  .creative-hub-visual{ position:static; aspect-ratio: 16/9; }
  .dock-link{ padding: 11px 16px; font-size:12px; }
  .blog-grid{ grid-template-columns: repeat(2,1fr); }
  .footer-glass-top{ flex-direction:column; gap:20px; }
  .footer-glass-bottom{ flex-direction:column; align-items:flex-start; }
  .footer-glass-links{ justify-content:flex-start; }
}

@media (max-width: 760px){
  .float-elem{ display:none; }
  .section-bg-video{ display:none; }
  .angle-top{ clip-path: polygon(0 28px, 100% 0, 100% 100%, 0 100%); margin-top: -28px; }
  .angle-top-sm{ margin-top: -10px; }
  .container{ padding: 0 20px; }
  .main-nav{
    position: fixed; top: 0; right: 0; height: 100vh; width: min(320px,80vw);
    background: var(--bg-alt); border-left: 1px solid var(--card-border);
    flex-direction: column; justify-content:center; align-items:flex-start; gap: 26px;
    padding: 40px; transform: translateX(100%); transition: transform .4s var(--ease);
    z-index: 99;
  }
  .main-nav.open{ transform: translateX(0); }
  .main-nav a{ font-size: 20px; }
  .nav-toggle{ display:flex; }
  .header-right .btn-sm{ display:none; }

  .hero{ padding: 96px 12px 12px; }
  .hero-frame{ border-radius: 24px; min-height: 560px; }
  .hero-inner{ padding: 40px 22px 40px; }
  .hero-video{ display:none; }
  .hero-bottom{ flex-direction:column; align-items:flex-start; }

  .roadmap{ min-height:auto; }
  .roadmap-line{ display:none; }
  .roadmap-node, .roadmap-node:first-child, .roadmap-node:last-child{
    position:static; transform:none; max-width:100%;
    flex-direction:row; align-items:center; text-align:left; gap:14px;
    margin-bottom: 16px;
  }
  .roadmap-node:hover .roadmap-label{ transform:none; }
  .roadmap-title{ position:static; text-align:left; margin-top: 16px; }
  .process-head{ flex-direction:column-reverse; align-items:flex-start; gap: 24px; }
  .process-visual{ width:100%; aspect-ratio: 16/9; }
  .process-grid{ grid-template-columns: 1fr; }
  .work-grid{ grid-template-columns: 1fr; }
  .stats-grid{ grid-template-columns: 1fr 1fr; }
  .services-head{ flex-direction:column; align-items:flex-start; }
  .service-body p, .service-tags{ padding-left: 0; }
  .service-head{ gap: 14px; }
  .service-icon{ width:46px; height:46px; border-radius:12px; }
  .service-icon svg{ width:20px; height:20px; }
  .service-num{ display:none; }
  .stats-grid-3{ grid-template-columns: 1fr; }
  .form-row{ grid-template-columns: 1fr; }
  .stats-head{ flex-direction:column; align-items:flex-start; }
  .work-head{ flex-direction:column; align-items:flex-start; }
  .testimonial-card{ padding: 34px 26px; }
  .footer-bottom{ flex-direction:column; align-items:flex-start; }

  .chub-body p{ padding-left:0; }

  .floating-dock{
    left: 12px; right: 12px; bottom: 16px; transform:none;
    width: auto; overflow-x:auto; justify-content:flex-start;
    -ms-overflow-style:none; scrollbar-width:none;
  }
  .floating-dock.visible{ transform:none; }
  .floating-dock::-webkit-scrollbar{ display:none; }
  .whatsapp-float, .back-to-top{ bottom: 92px; }

  .blog-grid{ grid-template-columns: 1fr; }
  .blog-hero{ padding: 120px 0 40px; }
  .post-hero{ padding: 120px 0 30px; }

  .footer-glass-card{ padding: 26px; border-radius: 24px; }
  .footer-bg-track{ font-size: 90px; }
  .footer-glass-social{ flex-wrap:wrap; }
  .footer-glass-links{ width:100%; }
  .footer-glass-links a{ padding: 10px 16px; font-size:12px; }
  .newsletter-form{ max-width:100%; }
}
/* ==========================================================================
   WORDPRESS-SPECIFIC — nav menu, editor content, alignment
   ========================================================================== */
.main-nav-list{ display:flex; gap: 34px; list-style:none; margin:0; padding:0; align-items:center; }
.main-nav-list li{ list-style:none; margin:0; }

.site-content{ padding: 170px 0 100px; }
.site-content .page-title{
  font-size: clamp(32px,4.5vw,56px); text-transform:uppercase; margin-bottom: 30px;
}
.page-content{ max-width: 780px; font-size:16px; }
.page-content p{ margin: 0 0 20px; }
.page-content a{ color: var(--accent); text-decoration: underline; }
.page-content img{ border-radius: var(--radius); margin: 20px 0; }
.page-content ul, .page-content ol{ margin: 0 0 20px 20px; padding: 0; }
.page-content li{ list-style: disc; margin-bottom: 8px; }
.page-content ol li{ list-style: decimal; }

.alignwide{ max-width: 1000px; margin-left: auto; margin-right: auto; }
.alignfull{ max-width: none; }

@media (max-width: 760px){
  .main-nav-list{ flex-direction:column; align-items:flex-start; gap:26px; }
}

/* ---- WP blog listing / single post ---- */
.site-content .blog-hero{ padding: 0 0 40px; }
.site-content .post-hero{ padding: 0 0 30px; }
