/* ==========================================================================
   KNF STUDIOS — Main Stylesheet (shadcn-style dark theme)
   Brand: blue -> purple gradient following the logo
   ========================================================================== */

:root {
  /* shadcn dark base */
  --bg: hsl(240 10% 3.9%);
  --fg: hsl(0 0% 98%);
  --card: hsl(240 8% 6.5%);
  --muted-bg: hsl(240 4% 12%);
  --muted-fg: hsl(240 5% 65%);
  --border: hsl(240 4% 15%);
  --input-border: hsl(240 4% 20%);

  /* Brand (logo gradient) */
  --primary: hsl(224 84% 62%);
  --primary-hover: hsl(224 78% 56%);
  --brand-blue: hsl(217 89% 66%);
  --brand-purple: hsl(259 84% 66%);
  --gradient: linear-gradient(90deg, var(--brand-blue), var(--brand-purple));
  --gradient-br: linear-gradient(135deg, var(--primary), var(--brand-purple));

  --radius: 12px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .4);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, .45);
  --glow-primary: 0 0 34px -8px hsl(224 84% 62% / .45);
}

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

html { scroll-behavior: smooth; color-scheme: dark; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 { font-weight: 600; line-height: 1.25; letter-spacing: -.01em; }

::selection { background: hsl(224 84% 62% / .35); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section { padding: 5rem 0; }
.section-muted {
  background: hsl(240 8% 6.5% / .45);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-head { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.section-head h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin-bottom: .75rem; }
.section-head p { color: var(--muted-fg); font-size: 1.075rem; }

/* Logo-matched gradient text (blue -> purple) */
.text-gradient {
  background-image: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Icons (inline SVG) */
.icon {
  width: 24px; height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* Glow blobs + grid backdrop (shadcn-style) */
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  pointer-events: none;
}
.glow-1 { top: -120px; left: 50%; transform: translateX(-50%); width: 640px; height: 380px; background: hsl(224 84% 62% / .22); }
.glow-2 { bottom: 0; right: 8%; width: 380px; height: 280px; background: hsl(259 84% 66% / .16); }
.glow-3 { bottom: 40px; left: 5%; width: 300px; height: 240px; background: hsl(217 89% 66% / .12); }

.bg-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(hsl(0 0% 100% / .045) 1px, transparent 1px),
    linear-gradient(90deg, hsl(0 0% 100% / .045) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse at center, black 25%, transparent 75%);
  mask-image: radial-gradient(ellipse at center, black 25%, transparent 75%);
}

/* --------------------------------------------------------------------------
   Buttons (shadcn-style)
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .65rem 1.4rem;
  border-radius: 8px;
  font-family: inherit;
  font-size: .925rem;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all .25s ease;
  white-space: nowrap;
}
.btn-lg { padding: .9rem 2rem; font-size: 1.05rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--primary-hover); box-shadow: var(--glow-primary); }

.btn-outline {
  border-color: var(--input-border);
  color: var(--fg);
  background: transparent;
}
.btn-outline:hover { background: var(--muted-bg); border-color: hsl(224 84% 62% / .5); }

.btn-white {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}
.btn-white:hover { background: rgba(255, 255, 255, .9); }

.btn-ghost-white {
  border-color: rgba(255, 255, 255, .6);
  color: #fff;
  background: transparent;
}
.btn-ghost-white:hover { background: #fff; color: var(--primary); }

/* --------------------------------------------------------------------------
   Header / Navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: hsl(240 10% 3.9% / .65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  padding: 1.6rem 0;
  transition: all .3s ease;
}
.site-header.scrolled {
  background: hsl(240 10% 3.9% / .92);
  border-bottom-color: var(--border);
  padding: 1.1rem 0;
}

.nav-bar { display: flex; align-items: center; justify-content: space-between; }
.nav-logo img { height: 20px; width: auto; }

.nav-menu { display: flex; align-items: center; gap: 2rem; margin-left: auto; }
.nav-link {
  font-size: .9rem;
  font-weight: 500;
  color: var(--muted-fg);
  transition: color .2s ease;
}
.nav-link:hover, .nav-link.active { color: var(--fg); }

.nav-cta-mobile { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--fg);
  transition: all .3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 7rem 0 4rem;
}
.hero .container { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .45rem 1.1rem;
  margin-bottom: 2rem;
  border: 1px solid hsl(224 84% 62% / .4);
  background: hsl(224 84% 62% / .1);
  border-radius: 99px;
  font-size: .875rem;
  color: var(--fg);
}
.hero-badge .icon { width: 15px; height: 15px; color: var(--primary); }

.hero h1 {
  font-size: clamp(2.75rem, 7vw, 4.5rem);
  font-weight: 700;
  letter-spacing: .04em;
  margin-bottom: 1.25rem;
}
.hero .hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  letter-spacing: .25em;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 1.25rem;
}
.hero .hero-sub {
  color: var(--muted-fg);
  font-size: clamp(.95rem, 2vw, 1.1rem);
  max-width: 620px;
  margin: 0 auto 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Page header (inner pages) */
.page-header {
  position: relative;
  overflow: hidden;
  text-align: center;
  border-bottom: 1px solid var(--border);
  padding: 9rem 0 5.5rem;
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: .75rem; }
.page-header p { font-size: clamp(1rem, 2vw, 1.2rem); color: var(--muted-fg); max-width: 720px; margin: 0 auto; }
.page-header .tracking { letter-spacing: .2em; }

/* --------------------------------------------------------------------------
   Grids & Cards
   -------------------------------------------------------------------------- */
.grid { display: grid; gap: 1.75rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: all .3s ease;
}
.card:hover {
  transform: translateY(-6px);
  border-color: hsl(224 84% 62% / .5);
  box-shadow: var(--glow-primary);
}

.icon-box {
  width: 52px; height: 52px;
  border-radius: 10px;
  background: hsl(224 84% 62% / .1);
  border: 1px solid hsl(224 84% 62% / .2);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}
.icon-box .icon { width: 26px; height: 26px; }

.card h3 { font-size: 1.2rem; margin-bottom: .6rem; }
.card p { color: var(--muted-fg); font-size: .95rem; }

/* Two-column intro split */
.split { display: flex; align-items: center; gap: 3rem; }
.split > div { flex: 1; }
.split h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin-bottom: .75rem; }
.split .lead-label {
  background-image: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}
.split p { color: var(--muted-fg); font-size: 1.05rem; margin-bottom: 1.75rem; }
.split-img {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 0 50px -15px hsl(224 84% 62% / .3);
}
.split-img img { width: 100%; height: 380px; object-fit: cover; }
.split.reverse { flex-direction: row-reverse; }

/* --------------------------------------------------------------------------
   Stats band
   -------------------------------------------------------------------------- */
.stats-band {
  background: hsl(240 8% 6.5% / .45);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  background-image: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-label {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted-fg);
}

/* --------------------------------------------------------------------------
   Portfolio
   -------------------------------------------------------------------------- */
.portfolio-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}
.portfolio-card h3 { font-size: 1.25rem; margin-bottom: .25rem; }
.portfolio-card .muted { font-size: .9rem; color: var(--muted-fg); margin-bottom: 1rem; }
.portfolio-link {
  color: var(--primary);
  font-size: .9rem;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.portfolio-link:hover { text-decoration: underline; }
.portfolio-link .icon { width: 15px; height: 15px; }
.portfolio-soon { font-size: .9rem; color: var(--muted-fg); font-style: italic; }

/* --------------------------------------------------------------------------
   Quote section
   -------------------------------------------------------------------------- */
.quote-section {
  position: relative;
  overflow: hidden;
  text-align: center;
}
.quote-section h2 {
  font-size: clamp(1.4rem, 3vw, 2.25rem);
  line-height: 1.5;
  max-width: 860px;
  margin: 0 auto 1.5rem;
}
.quote-section p { color: var(--muted-fg); font-size: 1.1rem; max-width: 640px; margin: 0 auto; }
.quote-section .container { position: relative; z-index: 1; }

/* --------------------------------------------------------------------------
   Pricing
   -------------------------------------------------------------------------- */
.pricing-grid { align-items: stretch; }

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2.25rem 1.75rem;
  border-radius: 16px;
}
.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: 0 0 50px -12px hsl(224 84% 62% / .4);
}
.pricing-card.featured:hover {
  border-color: var(--primary);
  box-shadow: 0 0 60px -10px hsl(224 84% 62% / .55);
}
@media (min-width: 900px) {
  .pricing-card.featured { transform: scale(1.04); z-index: 2; }
  .pricing-card.featured:hover { transform: scale(1.04) translateY(-6px); }
}

.pricing-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-br);
  color: #fff;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  padding: .4rem 1.1rem;
  border-radius: 99px;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
}

.pricing-name {
  text-align: center;
  font-size: 1rem;
  letter-spacing: .18em;
  margin-bottom: .8rem;
}
.pricing-price {
  text-align: center;
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 1.75rem;
}
.pricing-features { flex-grow: 1; display: flex; flex-direction: column; gap: .9rem; }
.pricing-features li { display: flex; gap: .7rem; align-items: flex-start; font-size: .95rem; }
.pricing-features .icon { width: 20px; height: 20px; margin-top: 2px; }
.feat-yes .icon { color: var(--primary); }
.feat-no { color: var(--muted-fg); }
.feat-no .icon { color: hsl(240 5% 45%); }
.feat-note { color: var(--muted-fg); font-size: .875rem; }
.feat-note .icon { color: hsl(240 5% 45%); }

.pricing-suitable {
  text-align: center;
  font-style: italic;
  font-size: .9rem;
  font-weight: 500;
  margin: 1.5rem 0;
  background-image: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */
.faq-wrap { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color .25s ease;
}
.faq-item.open, .faq-item:hover { border-color: hsl(224 84% 62% / .4); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 1.4rem;
  background: none;
  border: none;
  font-family: inherit;
  font-size: .975rem;
  font-weight: 600;
  color: var(--fg);
  text-align: left;
  cursor: pointer;
  transition: background .2s ease;
}
.faq-q:hover { background: hsl(240 4% 12% / .6); }
.faq-q .icon { width: 20px; height: 20px; color: var(--primary); transition: transform .3s ease; }
.faq-item.open .faq-q .icon { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-a-inner {
  padding: 1.05rem 1.4rem;
  border-top: 1px solid var(--border);
  background: hsl(240 4% 12% / .4);
  color: var(--muted-fg);
  font-size: .95rem;
}

/* --------------------------------------------------------------------------
   CTA sections
   -------------------------------------------------------------------------- */
.cta-band {
  background: var(--gradient-br);
  color: #fff;
  text-align: center;
}
.cta-band h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 1rem; }
.cta-band p { font-size: 1.1rem; opacity: .92; max-width: 640px; margin: 0 auto 2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.contact-strip { padding: 2.25rem 0; background: var(--gradient-br); color: #fff; }
.contact-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.5rem;
  flex-wrap: wrap;
}
.contact-strip-item { display: flex; align-items: center; gap: 1rem; color: #fff; }
.contact-strip-item:hover { opacity: .85; }
.contact-strip-item .icon-circle {
  background: rgba(255, 255, 255, .15);
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-strip-item .small { font-size: .85rem; opacity: .9; }
.contact-strip-item .big { font-size: 1.1rem; font-weight: 700; }

/* --------------------------------------------------------------------------
   About page — process / values
   -------------------------------------------------------------------------- */
.intro-text { max-width: 820px; margin: 0 auto; text-align: center; }
.intro-text h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin-bottom: 1.5rem; }
.intro-text p { color: var(--muted-fg); font-size: 1.075rem; margin-bottom: 1.25rem; }

.mission-head { text-align: center; max-width: 780px; margin: 0 auto 3.5rem; position: relative; z-index: 1; }
.mission-head .mission-icon {
  width: 82px; height: 82px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: hsl(224 84% 62% / .1);
  border: 1px solid hsl(224 84% 62% / .2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mission-head .mission-icon .icon { width: 40px; height: 40px; color: var(--primary); }
.mission-head h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin-bottom: 1rem; }
.mission-head p { color: var(--muted-fg); font-size: 1.075rem; }

.value-card { text-align: center; }
.value-card .icon-box { margin: 0 auto 1.1rem; border-radius: 50%; }

.process-list { max-width: 880px; margin: 0 auto; display: flex; flex-direction: column; gap: 1.5rem; }
.process-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: all .3s ease;
}
.process-item:hover {
  transform: translateY(-4px);
  border-color: hsl(224 84% 62% / .5);
  box-shadow: var(--glow-primary);
}
.process-item .icon-box { margin-bottom: 0; }
.process-step {
  font-weight: 700;
  font-size: .85rem;
  background-image: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.process-item h3 { font-size: 1.2rem; margin: .15rem 0 .4rem; }
.process-item p { color: var(--muted-fg); font-size: .95rem; }

/* --------------------------------------------------------------------------
   Services page — alternating rows
   -------------------------------------------------------------------------- */
.service-row { display: flex; align-items: center; gap: 3rem; }
.service-row.reverse { flex-direction: row-reverse; }
.service-row > div { flex: 1; }
.service-media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 0 50px -15px hsl(224 84% 62% / .25);
}
.service-media img { width: 100%; height: 360px; object-fit: cover; }
.service-body h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); margin-bottom: 1rem; }
.service-body > p { color: var(--muted-fg); font-size: 1.05rem; margin-bottom: 1.5rem; }
.benefit-list { display: flex; flex-direction: column; gap: .8rem; margin-bottom: 2rem; }
.benefit-list li { display: flex; gap: .7rem; align-items: flex-start; }
.benefit-list .icon { width: 22px; height: 22px; color: var(--primary); margin-top: 2px; }

/* --------------------------------------------------------------------------
   Contact page
   -------------------------------------------------------------------------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  align-items: start;
}
.contact-cards { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-cards a { color: var(--muted-fg); transition: color .2s ease; word-break: break-word; }
.contact-cards a:hover { color: var(--fg); }
.contact-cards .social-links { display: flex; flex-direction: column; gap: .5rem; }
.contact-cards .social-links a { display: inline-flex; align-items: center; gap: .5rem; }
.contact-cards .social-links .icon { width: 17px; height: 17px; color: var(--primary); }

.form-card { padding: 2.25rem; }
.form-card h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); margin-bottom: 1.75rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.form-group { display: flex; flex-direction: column; gap: .45rem; margin-bottom: 1.4rem; }
.form-grid .form-group { margin-bottom: 0; }
.form-grid { margin-bottom: 1.4rem; }
label { font-size: .875rem; font-weight: 500; }
.req { color: hsl(0 72% 60%); }
input, select, textarea {
  font-family: inherit;
  font-size: .925rem;
  color: var(--fg);
  background: transparent;
  border: 1px solid var(--input-border);
  border-radius: 8px;
  padding: .6rem .9rem;
  width: 100%;
  transition: border-color .2s ease, box-shadow .2s ease;
}
input::placeholder, textarea::placeholder { color: hsl(240 5% 45%); }
select { background: var(--bg); }
select option { background: var(--card); color: var(--fg); }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px hsl(224 84% 62% / .2);
}
textarea { resize: vertical; }
.field-error { border-color: hsl(0 72% 60%) !important; }

.alert {
  padding: 1rem 1.25rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  font-size: .95rem;
}
.alert-success {
  background: hsl(152 60% 20% / .35);
  border: 1px solid hsl(152 60% 40% / .6);
  color: hsl(152 65% 72%);
}
.alert-error {
  background: hsl(0 62% 25% / .3);
  border: 1px solid hsl(0 62% 45% / .6);
  color: hsl(0 85% 78%);
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 0 50px -15px hsl(224 84% 62% / .25);
}
.map-wrap iframe { display: block; width: 100%; height: 450px; border: 0; }

.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: hsl(240 8% 6.5% / .4);
  border-top: 1px solid var(--border);
  color: var(--muted-fg);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-logo { height: 22px; width: auto; margin-bottom: 1.1rem; }
.footer-col p { font-size: .9rem; color: var(--muted-fg); }
.footer-col h4 {
  color: var(--fg);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1.1rem;
}
.footer-list { display: flex; flex-direction: column; gap: .9rem; }
.footer-list li { display: flex; gap: .7rem; align-items: flex-start; font-size: .9rem; color: var(--muted-fg); }
.footer-list .icon { width: 19px; height: 19px; color: var(--primary); margin-top: 2px; }
.footer-list a:hover { color: var(--fg); }
.footer-links { display: flex; flex-direction: column; gap: .55rem; }
.footer-links a { font-size: .9rem; color: var(--muted-fg); transition: color .2s ease; }
.footer-links a:hover { color: var(--fg); }
.footer-social { display: flex; gap: .8rem; margin-top: 1rem; }
.footer-social a {
  width: 42px; height: 42px;
  border-radius: 8px;
  background: hsl(240 4% 12% / .6);
  border: 1px solid var(--border);
  color: var(--muted-fg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s ease;
}
.footer-social a:hover {
  color: var(--fg);
  border-color: hsl(224 84% 62% / .5);
  background: hsl(224 84% 62% / .1);
}
.footer-social .icon { width: 19px; height: 19px; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
  font-size: .875rem;
  color: var(--muted-fg);
}
.footer-tagline {
  letter-spacing: .18em;
  font-weight: 500;
  background-image: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* --------------------------------------------------------------------------
   Scroll reveal
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .nav-menu {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: hsl(240 10% 3.9% / .97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0 1.25rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
  }
  .nav-menu.open { max-height: 420px; padding-bottom: 1.25rem; }
  .nav-menu .nav-link { display: block; padding: .8rem .5rem; }
  .nav-cta-mobile { display: block; padding-top: .75rem; }
  .nav-cta-desktop { display: none; }
  .nav-toggle { display: flex; }

  .split, .split.reverse,
  .service-row, .service-row.reverse { flex-direction: column; }
  .split-img img, .service-media img { height: 260px; }
  .glow { filter: blur(90px); }
}

@media (max-width: 600px) {
  .section { padding: 3.5rem 0; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }
  .process-item { flex-direction: column; }
  .page-header { padding: 7.5rem 0 4rem; }
}

/* --------------------------------------------------------------------------
   Hero background image (dark IT theme)
   -------------------------------------------------------------------------- */
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  pointer-events: none;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    hsl(240 10% 3.9% / .78),
    hsl(240 10% 3.9% / .88) 55%,
    hsl(240 10% 3.9%) 100%
  );
}

/* --------------------------------------------------------------------------
   Policies section (Refund / Privacy accordions)
   -------------------------------------------------------------------------- */
.policy-wrap {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.policy-body { color: var(--muted-fg); }
.policy-body h4 {
  margin: 1.4rem 0 .45rem;
  font-size: 1rem;
  color: var(--fg);
  letter-spacing: .02em;
}
.policy-body h4:first-child { margin-top: 0; }
.policy-body p { margin-bottom: .85rem; font-size: .925rem; }
.policy-body ul {
  list-style: disc;
  padding-left: 1.35rem;
  margin-bottom: .85rem;
  font-size: .925rem;
}
.policy-body ul li { margin-bottom: .35rem; }
.policy-body a { color: var(--primary); }
.policy-body a:hover { text-decoration: underline; }
.policy-meta {
  font-size: .85rem;
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--muted-fg);
}
.policy-contact {
  background: hsl(240 4% 12% / .5);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  margin-bottom: .85rem;
  font-size: .925rem;
}

/* Pricing price subtitle (MONTHLY / ONE-OFF) */
.pricing-cycle {
  display: block;
  text-align: center;
  font-size: .75rem;
  letter-spacing: .18em;
  color: var(--muted-fg);
  margin-top: .2rem;
}
