/* ============================================
   VisiblePK — dark premium agency UI
   Accent: #2bdde3
   ============================================ */

:root {
  color-scheme: dark;
  --bg: #050607;
  --surface: #0c0d10;
  --surface-2: #111318;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --accent: #2bdde3;
  --accent-soft: rgba(43, 221, 227, 0.15);
  --border: rgba(255, 255, 255, 0.09);
  --stat-gradient-start: #ffffff;
  /* Softer, more premium shadows (less harsh) */
  --shadow: 0 14px 44px rgba(0, 0, 0, 0.42);
  --shadow-hover: 0 18px 56px rgba(0, 0, 0, 0.48);
  --glow-soft: 0 0 0 1px rgba(43, 221, 227, 0.12), 0 10px 30px rgba(43, 221, 227, 0.14);
  --glow-hover: 0 0 0 1px rgba(43, 221, 227, 0.22), 0 14px 38px rgba(43, 221, 227, 0.18);
  --radius: 20px;
  --radius-pill: 999px;
  --font-display: "Manrope", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --header-h: 74px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  /* Consistent spacing scale */
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.25rem;
  --space-5: 1.6rem;
  --space-6: 2rem;
  --space-7: 2.6rem;
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

/* Better focus styles for keyboard users */
:focus-visible {
  outline: 3px solid rgba(43, 221, 227, 0.35);
  outline-offset: 3px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--text);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.accent {
  color: var(--accent);
  font-weight: 700;
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: #000;
  font-weight: 600;
  border-radius: 8px;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.container {
  width: min(1120px, 92vw);
  margin-left: auto;
  margin-right: auto;
}

/* ========== Header ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 300;
  background: rgba(8, 9, 11, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(8, 9, 11, 0.95);
  border-color: rgba(43, 221, 227, 0.2);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  padding: 0.15rem 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.2s var(--ease);
}

.theme-toggle:hover {
  background: rgba(43, 221, 227, 0.12);
  border-color: rgba(43, 221, 227, 0.35);
}

.theme-toggle:focus-visible {
  outline: 3px solid rgba(43, 221, 227, 0.45);
  outline-offset: 2px;
}

.theme-toggle svg {
  width: 20px;
  height: 20px;
  display: block;
}

.theme-toggle .theme-toggle-icon--moon {
  display: none;
}

html[data-theme="light"] .theme-toggle .theme-toggle-icon--sun {
  display: none;
}

html[data-theme="light"] .theme-toggle .theme-toggle-icon--moon {
  display: block;
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
  transition: transform 0.25s var(--ease);
}
.logo:hover .logo-img {
  transform: scale(1.08);
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  position: relative;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
  opacity: 0.78;
  padding: 0.55rem 0.9rem;
  transition: opacity 0.25s var(--ease);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.15rem;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav-link:hover,
.nav-link:focus-visible {
  opacity: 1;
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
  transform: scaleX(1);
}

/* Nav CTA: pill, secondary fill, white text */
.nav-cta {
  margin-left: 0.65rem;
  padding: 0.6rem 1.35rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: #ffffff !important;
  border-radius: var(--radius-pill);
  background: var(--accent);
  color: #061215 !important;
  box-shadow: 0 8px 22px rgba(43, 221, 227, 0.28);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(43, 221, 227, 0.34);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle-bar {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
  .nav-menu {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    gap: 0;
    padding: 1rem 0 1.25rem;
    background: rgba(8, 9, 11, 0.98);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), visibility 0.3s;
  }
  .nav-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .nav-menu li {
    width: 100%;
    justify-content: center;
  }
  .nav-link {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.85rem 1rem;
    opacity: 1;
  }
  .nav-link::after {
    left: 30%;
    right: 30%;
    bottom: 0.4rem;
  }
  .nav-cta {
    margin: 0.65rem 1.25rem 0;
    width: calc(100% - 2.5rem);
    text-align: center;
  }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  min-height: 50px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}

.btn-primary {
  color: #071316;
  background: var(--accent);
  box-shadow: 0 10px 26px rgba(43, 221, 227, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(43, 221, 227, 0.36);
}

.btn-primary:active {
  transform: scale(0.98);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.btn-ghost:hover {
  border-color: rgba(43, 221, 227, 0.4);
  background: rgba(255, 255, 255, 0.03);
  transform: translateY(-1px);
}

.btn-block {
  width: 100%;
}

/* ========== Hero ========== */
.hero {
  position: relative;
  padding: clamp(4.2rem, 9vw, 6.8rem) 0 clamp(4.8rem, 9vw, 7.4rem);
  background: var(--bg);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 35% at 75% 30%, rgba(255, 255, 255, 0.1), transparent 65%),
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(43, 221, 227, 0.08), transparent 75%);
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2.6rem, 6vw, 4.6rem);
  align-items: center;
}

.hero-content {
  max-width: 40rem;
}

.hero-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 800;
  margin: 0 0 0.85rem;
  line-height: 0.98;
  color: var(--text);
}

.hero-sub {
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
  color: var(--muted);
  margin: 0 0 2rem;
  max-width: 44rem;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-panel {
  width: min(440px, 100%);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.hero-panel-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

.hero-panel-row strong {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.75s var(--ease) forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .hero-layout {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .hero-content {
    max-width: none;
  }
  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-visual {
    max-width: 100%;
  }
}

/* ========== Sections ========== */
.section {
  padding: clamp(4.5rem, 9vw, 7rem) 0;
  background: var(--bg);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.section-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.25rem;
  align-items: start;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.section-label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1rem;
}

.section-title {
  font-size: clamp(2.1rem, 4.8vw, 4.1rem);
  font-weight: 800;
  margin: 0 0 0.85rem;
  color: var(--text);
  line-height: 1.2;
}

.section-desc {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.6;
  max-width: 34rem;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== Services (glass cards) ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  background: transparent;
}

.service-card {
  padding: 2.35rem 2.1rem 2.2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.015) 100%);
  border: 1px solid var(--border);
  min-height: 340px;
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(43, 221, 227, 0.18), 0 0 28px rgba(43, 221, 227, 0.14);
  background: linear-gradient(180deg, rgba(43, 221, 227, 0.06) 0%, rgba(255, 255, 255, 0.015) 100%);
}

.service-card--featured {
  background: linear-gradient(180deg, rgba(43, 221, 227, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.service-card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.15rem;
  border-radius: 10px;
  background: rgba(43, 221, 227, 0.09);
  color: var(--accent);
  border: 1px solid rgba(43, 221, 227, 0.15);
  transition: transform 0.25s var(--ease);
}

.service-card-icon svg {
  width: 22px;
  height: 22px;
}

.service-card:hover .service-card-icon {
  transform: scale(1.05);
}

.service-card-icon--solid {
  background: rgba(43, 221, 227, 0.18);
}

.service-card-title {
  font-size: 1.55rem;
  font-weight: 800;
  margin: 0 0 0.5rem;
  color: var(--text);
}

.service-card-desc {
  display: none;
}

.service-sublist {
  margin: 0;
  font-size: 0.98rem;
  color: var(--muted);
}

.service-sublist li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.7rem;
}

.service-sublist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

@media (max-width: 640px) {
  .section-header {
    grid-template-columns: 1fr;
  }
  .section-desc {
    font-size: 1.05rem;
    line-height: 1.6;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }
}

/* ========== Why us ========== */
.why-layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 2.2rem;
}

.why-intro .section-title {
  font-size: clamp(2.3rem, 6vw, 4.8rem);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  background: transparent;
}

.why-item {
  padding: 2.1rem 1.95rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.015) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.why-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(43, 221, 227, 0.18), 0 0 28px rgba(43, 221, 227, 0.12);
  background: rgba(43, 221, 227, 0.06);
}

.why-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 0 0.45rem;
  color: var(--text);
}

.why-text {
  margin: 0;
  font-size: 0.98rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ========== Why Choose Us Section ========== */
.why-choose-us .services-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 1024px) {
  .why-choose-us .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .why-choose-us .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== Reviews ========== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.review-card {
  padding: 2rem 1.85rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.review-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(43, 221, 227, 0.18), 0 0 28px rgba(43, 221, 227, 0.12);
  border-color: rgba(43, 221, 227, 0.18);
}

.review-stars {
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
}

.review-text {
  margin: 0 0 1.15rem;
  color: var(--text);
  font-style: italic;
  font-weight: 600;
  line-height: 1.45;
}

.review-author {
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.review-role {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* Reviewer identity row: avatar + name/role */
.review-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(43, 221, 227, 0.35);
  box-shadow: 0 0 0 3px rgba(43, 221, 227, 0.08);
  flex-shrink: 0;
}

/* ========== Contact ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
  align-items: start;
}

.contact-title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 0.94;
  letter-spacing: -0.02em;
  color: var(--text);
  max-width: 13ch;
}

.contact-lead {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 30rem;
  line-height: 1.6;
}

.contact-meta p {
  margin: 0 0 0.85rem;
  color: var(--text);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.meta-icon {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-right: 0.65rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--accent);
}

.contact-form-wrap {
  padding: 2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.contact-form-wrap:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(43, 221, 227, 0.18), 0 0 28px rgba(43, 221, 227, 0.12);
  border-color: rgba(43, 221, 227, 0.18);
}

/* ========== About Page (legacy layout removed) ========== */

/* ========== Motive Section ========== */
.motive-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 2.25rem;
}

.motive-desc {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.motive-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.motive-card {
  padding: 2rem 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.015) 100%);
  transition: all 0.3s ease;
}

.motive-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  border-color: rgba(43, 221, 227, 0.18);
}

.motive-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  border-radius: 12px;
  border: 1px solid rgba(43, 221, 227, 0.18);
  background: rgba(43, 221, 227, 0.08);
  color: var(--accent);
  font-weight: 800;
}

.motive-title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--text);
}

.motive-text {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .motive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .motive-grid {
    grid-template-columns: 1fr;
  }
}

.contact-form .form-row {
  margin-bottom: 1.1rem;
}

.contact-form label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  margin-bottom: 0.4rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(4, 5, 7, 0.5);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(43, 221, 227, 0.55);
  box-shadow: 0 0 0 3px rgba(43, 221, 227, 0.15);
}

.form-note {
  margin: 0.85rem 0 0;
  font-size: 0.875rem;
  min-height: 1.35em;
  color: var(--muted);
}

.form-note.success {
  color: var(--accent);
  font-weight: 600;
}

@media (max-width: 900px) {
  .why-layout {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-copy {
    text-align: left;
  }
  .contact-lead {
    margin-right: 0;
  }
}

/* ========== Footer ========== */
.site-footer {
  position: relative;
  padding: 2.2rem 0 4.2rem;
  background: #090a0c;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-copy {
  margin: 0.45rem 0 0;
  text-align: left;
  font-size: 0.82rem;
  color: var(--muted);
  max-width: 22ch;
}

.footer-links {
  display: flex;
  gap: 1.6rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--muted);
  text-transform: uppercase;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: color 0.25s var(--ease);
}

.footer-links a:hover {
  color: var(--accent);
}

/* Footer social icons row */
.footer-social {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.28s var(--ease);
}

.social-link svg {
  width: 17px;
  height: 17px;
}

.social-link:hover {
  color: var(--accent);
  border-color: rgba(43, 221, 227, 0.45);
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 8px 24px rgba(43, 221, 227, 0.16);
}

.floating-chat {
  position: fixed;
  right: 1.3rem;
  bottom: 1.1rem;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: #18df70;
  color: #043317;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.3rem;
  box-shadow: 0 8px 24px rgba(24, 223, 112, 0.35);
  z-index: 400;
}

@media (max-width: 680px) {
  .services-grid,
  .why-grid,
  .reviews-grid {
    gap: 1rem;
  }
  .service-card,
  .why-item,
  .review-card,
  .contact-form-wrap {
    padding: 1.5rem;
  }
  .footer-links {
    gap: 1rem;
  }
  .footer-social {
    order: 3;
  }
  .review-avatar {
    width: 38px;
    height: 38px;
  }
  .hero-title {
    font-size: clamp(2.4rem, 14vw, 3.6rem);
  }
  .contact-title {
    font-size: clamp(2rem, 12vw, 3rem);
  }
}

/* Footer tagline */
.footer-tagline {
  margin: 0.35rem 0 0;
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
  max-width: 30ch;
}

/* HERO: animated dot grid background */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(43,221,227,0.07) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}
.hero > * {
  position: relative;
  z-index: 1;
}

/* Keep hero background layer full-bleed (overrides .hero > * on .hero-bg) */
.hero > .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* HERO: larger title on desktop */
@media (min-width: 769px) {
  .hero-title {
    font-size: clamp(3.2rem, 5.5vw, 5rem);
  }
}

/* HERO PANEL: glass morphism */
.hero-panel {
  background: rgba(255, 255, 255, 0.04) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  border: 1px solid rgba(43, 221, 227, 0.18) !important;
  box-shadow: 0 0 0 1px rgba(43,221,227,0.08), 0 20px 60px rgba(0,0,0,0.5) !important;
  animation: heroFloat 4s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* SECTION LABEL: premium pill style */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  background: rgba(43, 221, 227, 0.08);
  border: 1px solid rgba(43, 221, 227, 0.2);
  color: var(--accent) !important;
  font-size: 0.72rem !important;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

/* SERVICE CARDS: top glow border on hover */
.service-card {
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.service-card:hover::before {
  opacity: 1;
}
.service-card--featured::before {
  opacity: 0.6;
}
.service-card--featured:hover::before {
  opacity: 1;
}

/* REVIEW CARDS: decorative quote mark */
.review-card {
  position: relative;
  overflow: hidden;
}
.review-card::before {
  content: "\201C";
  position: absolute;
  top: -0.5rem;
  right: 1rem;
  font-size: 7rem;
  font-family: Georgia, serif;
  color: rgba(43, 221, 227, 0.07);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}
.review-card > * {
  position: relative;
  z-index: 1;
}

/* FORM: bottom-line glow focus */
.contact-form input,
.contact-form textarea {
  border: none !important;
  border-bottom: 2px solid rgba(255,255,255,0.12) !important;
  border-radius: 8px 8px 0 0 !important;
  background: rgba(255,255,255,0.03) !important;
  padding: 0.8rem 0.85rem !important;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-bottom-color: var(--accent) !important;
  box-shadow: 0 4px 12px rgba(43,221,227,0.12) !important;
  outline: none !important;
}

/* SUBMIT BUTTON: shimmer sweep on hover */
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}
.btn-primary:hover::after {
  left: 160%;
}

/* HEADINGS: tighter kerning for premium feel */
h1, h2, h3 {
  letter-spacing: -0.03em;
}

/* ALL TRANSITIONS: premium spring easing */
.service-card, .review-card, .why-item, .motive-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* REVEAL animation: scale + fade for premium feel */
.reveal {
  opacity: 0;
  transform: translateY(22px) scale(0.97);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* NAV CTA: gentle pulse animation */
@keyframes navPulse {
  0%, 100% { box-shadow: 0 8px 22px rgba(43,221,227,0.28); }
  50% { box-shadow: 0 8px 32px rgba(43,221,227,0.48); transform: translateY(-1px) scale(1.03); }
}
.nav-cta {
  animation: navPulse 2.8s ease-in-out infinite;
}
.nav-cta:hover {
  animation: none;
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(43,221,227,0.45);
}

/* FOOTER: accent top border */
.site-footer {
  border-top: 1px solid rgba(43,221,227,0.18) !important;
}

/* SECTIONS: more breathing room */
.section {
  padding-top: clamp(4rem, 8vw, 6.5rem) !important;
  padding-bottom: clamp(4rem, 8vw, 6.5rem) !important;
}

/* Hero dot grid */
.hero-dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(43,221,227,0.07) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
  z-index: 0;
}

/* Hero panel label */
.hero-panel-label {
  font-size: 0.68rem;
  color: rgba(43,221,227,0.7);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  margin: 0 0 1rem;
}

/* Hero bar chart */
.hero-chart {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 55px;
  margin-top: 1.2rem;
}
.hero-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: rgba(43,221,227,0.2);
  display: block;
}
.hero-bar--active {
  background: #2bdde3;
}
.hero-chart-months {
  display: flex;
  gap: 5px;
  margin-top: 5px;
}
.hero-chart-months span {
  flex: 1;
  font-size: 0.6rem;
  color: rgba(255,255,255,0.25);
  text-align: center;
}

/* Stats strip */
.stats-strip {
  padding: 3rem 0;
  background: rgba(255,255,255,0.018);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.stats-strip-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.strip-card {
  text-align: center;
  padding: 1rem;
}
.strip-num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--stat-gradient-start) 30%, #2bdde3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin: 0 0 0.3rem;
}
.strip-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin: 0;
}

/* Service featured tag */
.service-featured-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(43,221,227,0.1);
  color: #2bdde3;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(43,221,227,0.22);
}

/* Service card icon — SVG color fix */
.service-card-icon {
  color: var(--accent);
  margin-bottom: 1.1rem;
}
.service-card-icon svg {
  display: block;
}

/* Footer 3-column layout */
.footer-inner {
  display: grid !important;
  grid-template-columns: 1.6fr 1fr 1fr !important;
  gap: 2.5rem !important;
  align-items: start !important;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-wrap: unset !important;
}
.footer-tagline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.65;
  max-width: 30ch;
  margin: 0.35rem 0 0.7rem;
}
.footer-col-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin: 0 0 0.9rem;
}
.footer-col-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.footer-col-links a {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.52);
  transition: color 0.25s ease;
}
.footer-col-links a:hover {
  color: var(--accent);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  .stats-strip-inner {
    grid-template-columns: 1fr;
  }
}

/* ========== Light theme ========== */
html[data-theme="light"] {
  color-scheme: light;
  --bg: #ffffff;
  --text: #000000;
  --muted: rgba(0, 0, 0, 0.62);
  --surface: #f3f4f6;
  --surface-2: #e8eaee;
  --border: rgba(0, 0, 0, 0.12);
  --accent-soft: rgba(43, 221, 227, 0.2);
  --shadow: 0 14px 44px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 18px 56px rgba(0, 0, 0, 0.12);
  --stat-gradient-start: #000000;
}

html[data-theme="light"] .site-header {
  background: rgba(255, 255, 255, 0.88);
  border-bottom-color: var(--border);
}

html[data-theme="light"] .site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(43, 221, 227, 0.28);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.06);
}

html[data-theme="light"] .theme-toggle {
  background: rgba(0, 0, 0, 0.04);
}

html[data-theme="light"] .theme-toggle:hover {
  background: rgba(43, 221, 227, 0.14);
}

@media (max-width: 768px) {
  html[data-theme="light"] .nav-menu {
    background: rgba(255, 255, 255, 0.98);
  }
}

html[data-theme="light"] .btn-ghost {
  border-color: rgba(0, 0, 0, 0.14);
}

html[data-theme="light"] .btn-ghost:hover {
  border-color: rgba(43, 221, 227, 0.4);
  background: rgba(0, 0, 0, 0.04);
}

html[data-theme="light"] .hero-bg {
  background:
    radial-gradient(ellipse 60% 35% at 75% 30%, rgba(0, 0, 0, 0.06), transparent 65%),
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(43, 221, 227, 0.12), transparent 75%);
}

html[data-theme="light"] .section {
  border-top-color: rgba(0, 0, 0, 0.08);
}

html[data-theme="light"] .hero-panel-row {
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

html[data-theme="light"] .site-footer {
  background: #f5f5f7;
}

html[data-theme="light"] .footer-tagline {
  color: rgba(0, 0, 0, 0.52);
}

html[data-theme="light"] .footer-inner {
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

html[data-theme="light"] .footer-col-title {
  color: rgba(0, 0, 0, 0.45);
}

html[data-theme="light"] .footer-col-links a {
  color: rgba(0, 0, 0, 0.58);
}

html[data-theme="light"] .social-link {
  border-color: rgba(0, 0, 0, 0.12);
  background: rgba(0, 0, 0, 0.03);
}

html[data-theme="light"] .hero-panel {
  background: rgba(255, 255, 255, 0.78) !important;
  border-color: rgba(43, 221, 227, 0.28) !important;
  box-shadow: 0 0 0 1px rgba(43, 221, 227, 0.12), 0 20px 50px rgba(0, 0, 0, 0.08) !important;
}

html[data-theme="light"] .contact-form-wrap {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0.01) 100%);
}

html[data-theme="light"] .contact-form input,
html[data-theme="light"] .contact-form textarea {
  border: 1px solid rgba(0, 0, 0, 0.14) !important;
  border-bottom: 2px solid rgba(0, 0, 0, 0.12) !important;
  border-radius: 10px !important;
  background: rgba(255, 255, 255, 0.98) !important;
  color: var(--text) !important;
}

html[data-theme="light"] .stats-strip {
  background: rgba(0, 0, 0, 0.03);
  border-top-color: rgba(0, 0, 0, 0.08);
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

html[data-theme="light"] .hero-chart-months span {
  color: rgba(0, 0, 0, 0.4);
}

html[data-theme="light"] .strip-desc {
  color: rgba(0, 0, 0, 0.5);
}

html[data-theme="light"] .service-card,
html[data-theme="light"] .review-card,
html[data-theme="light"] .why-item,
html[data-theme="light"] .motive-card {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.025) 0%, rgba(0, 0, 0, 0.01) 100%);
}

/* About Hero */
.about-lead {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--muted);
  line-height: 1.8;
  max-width: 600px;
  margin-top: 0.5rem;
}

.about-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2.6rem, 6vw, 4.6rem);
  align-items: center;
}

.about-hero-content {
  max-width: 40rem;
}

@media (max-width: 960px) {
  .about-hero-layout {
    grid-template-columns: 1fr;
  }
  .about-hero-content {
    max-width: none;
  }
}

/* Stats Band */
.about-stats-band {
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.018);
}
.about-stats-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  divide-x: 1px solid rgba(255,255,255,0.06);
}
.about-stat-item {
  padding: 32px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.about-stat-item:last-child { border-right: none; }
.about-stat-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  background: linear-gradient(135deg, #fff 30%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin: 0 0 6px;
}
.about-stat-lbl {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0;
}

html[data-theme="light"] .about-stats-band {
  background: rgba(0,0,0,0.03);
  border-color: rgba(0,0,0,0.08);
}
html[data-theme="light"] .about-stat-item {
  border-right-color: rgba(0,0,0,0.08);
}
html[data-theme="light"] .about-stat-lbl {
  color: rgba(0,0,0,0.45);
}

@media (max-width: 640px) {
  .about-stats-inner { grid-template-columns: 1fr; }
  .about-stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
}
