/* =========================================================
   Vahlave Quick Tech Solutions — mobile-first stylesheet
   Light & airy · brand gradient · shape art
   ========================================================= */

:root {
  --ink: #141B33;
  --ink-2: #2b3350;
  --slate: #5A6478;
  --slate-light: #8a93a8;
  --teal: #00E0B8;
  --blue: #2E8CFF;
  --grad: linear-gradient(135deg, #00E0B8 0%, #2E8CFF 100%);
  --grad-soft: linear-gradient(135deg, rgba(0,224,184,.14) 0%, rgba(46,140,255,.14) 100%);
  --bg: #ffffff;
  --bg-alt: #f5f8fd;
  --bg-tint: #eef4fd;
  --line: #e4e9f2;
  --white: #ffffff;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 4px 16px rgba(20,27,51,.06);
  --shadow: 0 14px 40px rgba(20,27,51,.10);
  --shadow-lg: 0 30px 60px rgba(20,27,51,.14);
  --maxw: 1140px;
  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }

h1, h2, h3, h4 { line-height: 1.18; color: var(--ink); font-weight: 800; margin: 0 0 .5em; letter-spacing: -.02em; }
h1 { font-size: clamp(2rem, 6vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 4.5vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: inherit; font-weight: 700; font-size: 1rem;
  padding: .85rem 1.6rem; border-radius: 999px; border: 0; cursor: pointer;
  background: var(--grad); color: #fff; text-decoration: none;
  box-shadow: 0 8px 22px rgba(46,140,255,.32);
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
  will-change: transform;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(46,140,255,.42); filter: brightness(1.04); }
.btn:active { transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--ink);
  border: 2px solid var(--line); box-shadow: none;
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); box-shadow: none; }
.btn-ghost { background: rgba(255,255,255,.14); color: #fff; box-shadow: none; backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255,255,255,.24); }
.btn-nav { padding: .6rem 1.15rem; font-size: .95rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s ease, border-color .3s ease, background .3s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); border-color: var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand-logo { height: 40px; width: auto; }

.nav-toggle {
  display: flex; flex-direction: column; gap: 5px; width: 44px; height: 44px;
  align-items: center; justify-content: center; background: transparent; border: 0; cursor: pointer;
}
.nav-toggle span { width: 24px; height: 2.5px; background: var(--ink); border-radius: 3px; transition: transform .3s ease, opacity .3s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.primary-nav {
  position: fixed; inset: 72px 0 auto 0;
  background: #fff; flex-direction: column; gap: 4px; padding: 16px 20px 28px;
  border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
  display: none;
}
.primary-nav.open { display: flex; animation: navDrop .3s ease; }
@keyframes navDrop { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
.primary-nav a { color: var(--ink); font-weight: 600; padding: .7rem .2rem; border-radius: 10px; }
.primary-nav a.active { color: var(--blue); }
.primary-nav a.btn { color: #fff; margin-top: 8px; }

/* ---------- Shape art / blobs ---------- */
.blob { position: absolute; border-radius: 50%; filter: blur(6px); opacity: .5; z-index: 0; pointer-events: none; }
.shape { position: absolute; z-index: 0; pointer-events: none; }

@keyframes float1 { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-26px) rotate(8deg); } }
@keyframes float2 { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(22px) rotate(-8deg); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 0%,100% { transform: scale(1); opacity: .55; } 50% { transform: scale(1.12); opacity: .8; } }
.anim-float1 { animation: float1 8s ease-in-out infinite; }
.anim-float2 { animation: float2 10s ease-in-out infinite; }
.anim-spin { animation: spin 26s linear infinite; }
.anim-pulse { animation: pulse 7s ease-in-out infinite; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  padding: 56px 0 72px;
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(46,140,255,.12), transparent 60%),
    radial-gradient(900px 500px at -10% 20%, rgba(0,224,184,.12), transparent 55%),
    var(--bg);
}
.hero-inner { position: relative; z-index: 2; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue); background: var(--grad-soft);
  padding: .45rem .9rem; border-radius: 999px; margin-bottom: 1.2rem;
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--grad); }
.hero h1 { margin-bottom: 1rem; }
.hero-lead { font-size: 1.12rem; color: var(--slate); max-width: 40ch; margin-bottom: 1.8rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 2.2rem; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 1.6rem; }
.hero-stat strong { display: block; font-size: 1.7rem; font-weight: 800; }
.hero-stat span { color: var(--slate); font-size: .88rem; }

.hero-visual { position: relative; margin-top: 2.5rem; height: 300px; }
.hero-card {
  position: absolute; background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 1rem 1.2rem; display: flex; align-items: center; gap: .8rem;
  border: 1px solid var(--line);
}
.hero-card .ic { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: var(--grad-soft); color: var(--blue); flex: none; }
.hero-card .ic svg { width: 22px; height: 22px; }
.hero-card b { font-size: .95rem; } .hero-card small { color: var(--slate); }
.hero-card-1 { top: 10px; left: 0; }
.hero-card-2 { top: 120px; right: 0; }
.hero-card-3 { bottom: 6px; left: 30px; }
.hero-orb {
  position: absolute; inset: 0; margin: auto; width: 210px; height: 210px; border-radius: 50%;
  background: var(--grad); box-shadow: 0 30px 70px rgba(46,140,255,.4); z-index: -1;
}
.hero-ring { position: absolute; inset: 0; margin: auto; width: 270px; height: 270px; border: 2px dashed rgba(46,140,255,.35); border-radius: 50%; }

/* ---------- Sections ---------- */
.section { position: relative; padding: 64px 0; }
.section-alt { background: var(--bg-alt); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 2.6rem; }
.section-head .eyebrow { margin-bottom: .8rem; }
.section-head p { color: var(--slate); font-size: 1.05rem; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

/* ---------- Service cards ---------- */
.grid { display: grid; gap: 1.1rem; }
.services-grid { grid-template-columns: 1fr; }
.service-card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem; box-shadow: var(--shadow-sm); overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.service-card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1.5px;
  background: var(--grad);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center;
  background: var(--grad); color: #fff; margin-bottom: 1rem; box-shadow: 0 10px 22px rgba(46,140,255,.3);
}
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 { font-size: 1.16rem; margin-bottom: .5rem; }
.service-card p { color: var(--slate); font-size: .96rem; margin-bottom: 1rem; }
.service-points { list-style: none; margin: 0; padding: 0; }
.service-points li { position: relative; padding-left: 1.6rem; margin-bottom: .45rem; font-size: .92rem; color: var(--ink-2); }
.service-points li::before {
  content: ""; position: absolute; left: 0; top: .45em; width: 16px; height: 16px;
  background: var(--grad-soft); border-radius: 50%;
}
.service-points li::after {
  content: ""; position: absolute; left: 5px; top: calc(.45em + 3px); width: 6px; height: 6px;
  border-right: 2px solid var(--blue); border-bottom: 2px solid var(--blue); transform: rotate(45deg);
}
.badge-soon { display: inline-block; font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--blue); background: var(--grad-soft); padding: .2rem .6rem; border-radius: 999px; margin-left: .4rem; vertical-align: middle; }

/* ---------- Feature / value strip ---------- */
.values-grid { grid-template-columns: 1fr; gap: 1rem; }
.value {
  display: flex; gap: 1rem; align-items: flex-start; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius); padding: 1.3rem;
}
.value .ic { width: 46px; height: 46px; border-radius: 13px; background: var(--grad-soft); color: var(--blue); display: grid; place-items: center; flex: none; }
.value .ic svg { width: 24px; height: 24px; }
.value h3 { font-size: 1.05rem; margin-bottom: .25rem; }
.value p { color: var(--slate); font-size: .92rem; margin: 0; }

/* ---------- Steps ---------- */
.steps { grid-template-columns: 1fr; counter-reset: step; }
.step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem 1.4rem 1.4rem; }
.step .num {
  width: 42px; height: 42px; border-radius: 12px; background: var(--grad); color: #fff;
  font-weight: 800; display: grid; place-items: center; margin-bottom: .8rem;
}
.step h3 { font-size: 1.05rem; }
.step p { color: var(--slate); font-size: .92rem; margin: 0; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: var(--ink); color: #fff; border-radius: var(--radius-lg); padding: 3rem 1.6rem; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.8); max-width: 46ch; margin: 0 auto 1.6rem; }
.cta-band .btn-outline { color: #fff; border-color: rgba(255,255,255,.4); }
.cta-band .btn-outline:hover { border-color: #fff; color: #fff; }
.cta-band .blob-1 { width: 300px; height: 300px; background: var(--teal); top: -120px; right: -80px; opacity: .35; }
.cta-band .blob-2 { width: 240px; height: 240px; background: var(--blue); bottom: -130px; left: -70px; opacity: .4; }

/* ---------- Testimonials ---------- */
.testi-grid { grid-template-columns: 1fr; }
.testi {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem;
  box-shadow: var(--shadow-sm); position: relative;
}
.testi .quote-mark { font-size: 3rem; line-height: .6; color: var(--teal); font-family: Georgia, serif; }
.testi p { color: var(--ink-2); font-style: italic; }
.testi .who { display: flex; align-items: center; gap: .8rem; margin-top: 1rem; }
.testi .avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--grad); color: #fff; display: grid; place-items: center; font-weight: 800; flex: none; }
.testi .who b { display: block; font-size: .95rem; } .testi .who span { color: var(--slate); font-size: .84rem; }
.stars { color: #ffb020; letter-spacing: 2px; margin-bottom: .5rem; }
.empty-note { text-align: center; color: var(--slate); background: var(--bg-alt); border: 1px dashed var(--line); border-radius: var(--radius); padding: 2rem; }

/* ---------- Forms ---------- */
.form-wrap { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.8rem; box-shadow: var(--shadow); }
.form-grid { display: grid; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field label { font-weight: 600; font-size: .92rem; }
.field .req { color: #e5484d; }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 1rem; color: var(--ink);
  padding: .8rem .95rem; border: 1.5px solid var(--line); border-radius: 12px; background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(46,140,255,.12);
}
.field textarea { resize: vertical; min-height: 130px; }
.field-full { grid-column: 1 / -1; }
.form-note { font-size: .82rem; color: var(--slate); }

.flash { border-radius: 12px; padding: .9rem 1.1rem; margin-bottom: 1.2rem; font-weight: 600; font-size: .95rem; }
.flash-success { background: #e6f9f3; color: #067a5b; border: 1px solid #b6ecdd; }
.flash-error { background: #fdecec; color: #c2352b; border: 1px solid #f6cdca; }

/* ---------- Contact info cards ---------- */
.contact-cards { display: grid; gap: 1rem; grid-template-columns: 1fr; margin-bottom: 1.6rem; }
.contact-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.2rem; display: flex; gap: .9rem; align-items: flex-start; }
.contact-card .ic { width: 42px; height: 42px; border-radius: 12px; background: var(--grad-soft); color: var(--blue); display: grid; place-items: center; flex: none; }
.contact-card .ic svg { width: 22px; height: 22px; }
.contact-card b { display: block; font-size: .95rem; } .contact-card a, .contact-card span { color: var(--slate); font-size: .9rem; word-break: break-word; }

/* ---------- Page hero (inner) ---------- */
.page-hero { position: relative; overflow: hidden; padding: 52px 0 40px; text-align: center;
  background: radial-gradient(900px 400px at 50% -30%, rgba(46,140,255,.12), transparent 60%), var(--bg); }
.page-hero p { color: var(--slate); max-width: 52ch; margin: 0 auto; font-size: 1.05rem; }

/* ---------- Shop coming soon ---------- */
.soon-wrap { text-align: center; position: relative; overflow: hidden; }
.soon-badge { display: inline-block; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--blue); background: var(--grad-soft); padding: .5rem 1.1rem; border-radius: 999px; margin-bottom: 1.2rem; }
.soon-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-top: 2rem; }

/* ---------- Legal / prose ---------- */
.prose { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.8rem; box-shadow: var(--shadow-sm); }
.prose h2 { font-size: 1.3rem; margin-top: 1.8rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.08rem; margin-top: 1.3rem; }
.prose p, .prose li { color: var(--ink-2); font-size: .97rem; }
.prose ul { padding-left: 1.2rem; }
.prose .updated { color: var(--slate); font-size: .9rem; }

/* ---------- Footer ---------- */
.site-footer { position: relative; overflow: hidden; background: var(--ink); color: rgba(255,255,255,.75); margin-top: 40px; }
.footer-blob { position: absolute; width: 360px; height: 360px; border-radius: 50%; background: var(--grad); opacity: .12; top: -160px; right: -120px; filter: blur(10px); }
.footer-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; gap: 2rem; padding: 3rem 20px 2rem; }
.footer-logo { height: 38px; width: auto; filter: brightness(0) invert(1); margin-bottom: .8rem; }
.footer-tagline { color: rgba(255,255,255,.6); }
.footer-col h4 { color: #fff; font-size: .95rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: .9rem; }
.footer-col a { display: block; color: rgba(255,255,255,.72); padding: .28rem 0; font-size: .93rem; }
.footer-col a:hover { color: var(--teal); }
.footer-addr { display: block; font-size: .9rem; margin-top: .3rem; }
.social-row { display: flex; gap: .6rem; margin-top: 1rem; }
.social-link { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.08); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: .85rem; }
.social-link:hover { background: var(--grad); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom-inner { display: flex; flex-direction: column; gap: .6rem; padding: 1.2rem 0; font-size: .85rem; }
.footer-legal a { color: rgba(255,255,255,.72); margin-right: 1rem; }
.footer-legal a:hover { color: var(--teal); }

/* ---------- Responsive ---------- */
@media (min-width: 620px) {
  .services-grid, .values-grid, .steps, .testi-grid, .contact-cards, .soon-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom-inner { flex-direction: row; justify-content: space-between; align-items: center; }
}
@media (min-width: 860px) {
  .nav-toggle { display: none; }
  .primary-nav { position: static; display: flex; flex-direction: row; align-items: center; gap: 4px;
    background: transparent; border: 0; box-shadow: none; padding: 0; inset: auto; }
  .primary-nav a { padding: .5rem .85rem; }
  .hero { padding: 80px 0 96px; }
  .hero-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 2rem; align-items: center; }
  .hero-visual { margin-top: 0; height: 420px; }
  .section { padding: 88px 0; }
  .services-grid, .steps { grid-template-columns: repeat(3, 1fr); }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .testi-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 2rem; align-items: start; }
  .contact-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.3fr; }
  .soon-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
