/*
Theme Name: K5C Holding
Theme URI: https://k5cholding.com.au
Author: K5C Holding
Author URI: https://k5cholding.com.au
Description: A professional technology and trading solutions theme for K5C Holding — an Australian MSP specialising in cloud VPS, trading systems, AI automation, and digital infrastructure.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
Text Domain: k5c-theme
Tags: technology, business, one-page, custom-colors, custom-logo, full-width-template
*/

/* =========================================================
   DESIGN TOKENS
   ========================================================= */
:root {
  /* Core Palette */
  --ink:        #0A0F1E;   /* deep navy-black */
  --ink-80:     #1A2240;
  --ink-60:     #2D3A60;
  --sky:        #0D84FF;   /* electric blue */
  --sky-dim:    #0A65C8;
  --pulse:      #00D4AA;   /* teal-green accent */
  --pulse-dim:  #00AA87;
  --steel:      #8A9BBF;   /* mid-tone blue-grey */
  --ghost:      #F0F4FF;   /* near-white with blue tint */
  --white:      #FFFFFF;

  /* Typography */
  --font-display: 'Syne', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  /* Scale */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.375rem;
  --text-2xl:  1.75rem;
  --text-3xl:  2.25rem;
  --text-4xl:  3rem;
  --text-5xl:  4rem;
  --text-6xl:  5.5rem;

  /* Spacing */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  /* Geometry */
  --radius-sm: 4px;
  --radius:    8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-card: 0 2px 24px rgba(10,15,30,0.18);
  --shadow-glow: 0 0 40px rgba(13,132,255,0.25);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --duration: 200ms;
}

/* =========================================================
   RESET & BASE
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--ghost);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* =========================================================
   TYPOGRAPHY
   ========================================================= */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
}

h1 { font-size: clamp(var(--text-4xl), 7vw, var(--text-6xl)); }
h2 { font-size: clamp(var(--text-3xl), 4vw, var(--text-4xl)); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }

p { color: var(--steel); font-size: var(--text-base); max-width: 65ch; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pulse);
  margin-bottom: var(--sp-4);
}

/* =========================================================
   LAYOUT UTILITIES
   ========================================================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--sp-6);
}

.container--wide { max-width: 1440px; }

.section {
  padding-block: var(--sp-24);
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-8); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-8); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-6); }

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section { padding-block: var(--sp-16); }
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-8);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all var(--duration) var(--ease);
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--sky), #0056D6);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(13,132,255,0.35);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(13,132,255,0.5);
}

.btn--outline {
  border: 1.5px solid rgba(255,255,255,0.2);
  color: var(--white);
  background: transparent;
}
.btn--outline:hover {
  border-color: var(--pulse);
  color: var(--pulse);
  background: rgba(0,212,170,0.06);
}

.btn--pulse {
  background: linear-gradient(135deg, var(--pulse), var(--pulse-dim));
  color: var(--ink);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0,212,170,0.3);
}
.btn--pulse:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,212,170,0.45);
}

/* =========================================================
   HEADER / NAVIGATION
   ========================================================= */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

#site-header.scrolled {
  background: rgba(10,15,30,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: var(--sp-8);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  text-decoration: none;
  flex-shrink: 0;
}

.header__logo-mark {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--sky), var(--pulse));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.05em;
}

.header__logo-text {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}

.header__logo-text span {
  display: block;
  font-size: var(--text-xs);
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--steel);
  letter-spacing: 0.05em;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}

.nav__item { position: relative; }

.nav__link {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  padding: var(--sp-2) var(--sp-3);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--steel);
  border-radius: var(--radius);
  transition: color var(--duration) var(--ease);
}

.nav__link:hover, .nav__link.active {
  color: var(--white);
}

.nav__dropdown {
  position: absolute;
  top: calc(100% + var(--sp-2));
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 260px;
  background: var(--ink-80);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: var(--sp-2);
  opacity: 0;
  pointer-events: none;
  transition: all 200ms var(--ease);
  box-shadow: var(--shadow-card);
}

.nav__item:hover .nav__dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown-item a {
  display: block;
  padding: var(--sp-3) var(--sp-4);
  font-size: var(--text-sm);
  color: var(--steel);
  border-radius: var(--radius);
  transition: all 180ms var(--ease);
}

.nav__dropdown-item a:hover {
  color: var(--white);
  background: rgba(13,132,255,0.1);
}

.nav__cta {
  margin-left: var(--sp-4);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 200ms var(--ease);
}

@media (max-width: 1024px) {
  .nav__list, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 999;
  padding: var(--sp-24) var(--sp-6) var(--sp-8);
  flex-direction: column;
  gap: var(--sp-4);
  overflow-y: auto;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--white);
  padding: var(--sp-3) 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mobile-nav a:hover { color: var(--pulse); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-block: 120px var(--sp-24);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(13,132,255,0.15) 0%, transparent 60%),
              radial-gradient(ellipse 60% 80% at 10% 80%, rgba(0,212,170,0.08) 0%, transparent 60%),
              var(--ink);
}

.hero__grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4);
  background: rgba(0,212,170,0.1);
  border: 1px solid rgba(0,212,170,0.25);
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--pulse);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--sp-6);
}

.hero__badge-dot {
  width: 6px; height: 6px;
  background: var(--pulse);
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero__title {
  margin-bottom: var(--sp-6);
}

.hero__title .line--accent {
  background: linear-gradient(90deg, var(--sky), var(--pulse));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: var(--text-lg);
  color: var(--steel);
  margin-bottom: var(--sp-8);
  max-width: 48ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  align-items: center;
}

.hero__phone {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  color: var(--ghost);
  font-weight: 500;
}

.hero__phone svg { color: var(--pulse); }

.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Animated circuit/globe visual */
.hero__orb {
  width: 460px;
  height: 460px;
  position: relative;
}

.orb__core {
  width: 200px; height: 200px;
  background: linear-gradient(135deg, rgba(13,132,255,0.3), rgba(0,212,170,0.2));
  border-radius: 50%;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 80px rgba(13,132,255,0.4), inset 0 0 40px rgba(0,212,170,0.1);
  border: 1px solid rgba(13,132,255,0.3);
}

.orb__ring {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(13,132,255,0.2);
  transform: translate(-50%, -50%);
  animation: spin-ring 20s linear infinite;
}

.orb__ring--1 { width: 280px; height: 280px; animation-duration: 15s; }
.orb__ring--2 { width: 360px; height: 360px; animation-duration: 25s; animation-direction: reverse; border-color: rgba(0,212,170,0.15); }
.orb__ring--3 { width: 440px; height: 440px; animation-duration: 35s; }

.orb__ring::before {
  content: '';
  position: absolute;
  width: 8px; height: 8px;
  background: var(--sky);
  border-radius: 50%;
  top: -4px; left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 12px var(--sky);
}

.orb__ring--2::before { background: var(--pulse); box-shadow: 0 0 12px var(--pulse); top: auto; bottom: -4px; }

@keyframes spin-ring {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Floating data cards */
.orb__card {
  position: absolute;
  background: rgba(26,34,64,0.9);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: var(--sp-3) var(--sp-4);
  backdrop-filter: blur(12px);
  animation: float-card 6s ease-in-out infinite;
}

.orb__card--1 { top: 10%; left: -10%; animation-delay: 0s; }
.orb__card--2 { bottom: 15%; right: -8%; animation-delay: 2s; }
.orb__card--3 { top: 55%; left: -15%; animation-delay: 4s; }

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

.orb__card-label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--steel);
  margin-bottom: var(--sp-1);
}

.orb__card-value {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--white);
}

.orb__card-value.up { color: var(--pulse); }
.orb__card-value.info { color: var(--sky); }

@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__subtitle { max-width: none; }
  .hero__actions { justify-content: center; }
  .hero__visual { display: none; }
}

/* =========================================================
   STATS STRIP
   ========================================================= */
.stats-strip {
  background: var(--ink-80);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding-block: var(--sp-8);
}

.stats-strip__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-8);
}

.stat-item {
  text-align: center;
  flex: 1;
}

.stat-item + .stat-item {
  border-left: 1px solid rgba(255,255,255,0.08);
  padding-left: var(--sp-8);
}

.stat-item__number {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 800;
  background: linear-gradient(135deg, var(--white), var(--sky));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.stat-item__label {
  font-size: var(--text-sm);
  color: var(--steel);
  margin-top: var(--sp-1);
}

@media (max-width: 768px) {
  .stats-strip__inner { flex-wrap: wrap; justify-content: center; }
  .stat-item + .stat-item { border-left: none; padding-left: 0; }
  .stat-item { flex: 0 0 45%; }
}

/* =========================================================
   SOLUTIONS / SERVICES
   ========================================================= */
.solutions { background: var(--ink); }

.section__header {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: var(--sp-16);
}

.section__header p { margin-inline: auto; }

.service-card {
  background: var(--ink-80);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  position: relative;
  overflow: hidden;
  transition: all 250ms var(--ease);
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,132,255,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 250ms var(--ease);
}

.service-card:hover {
  border-color: rgba(13,132,255,0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), 0 0 0 1px rgba(13,132,255,0.15);
}

.service-card:hover::before { opacity: 1; }

.service-card__icon {
  width: 52px; height: 52px;
  background: rgba(13,132,255,0.12);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-6);
  color: var(--sky);
  font-size: 1.5rem;
  transition: background 250ms var(--ease);
}

.service-card:hover .service-card__icon {
  background: rgba(13,132,255,0.2);
}

.service-card__icon svg { width: 26px; height: 26px; }

.service-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--sp-3);
}

.service-card p {
  font-size: var(--text-sm);
  line-height: 1.7;
  color: var(--steel);
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--sky);
  margin-top: var(--sp-6);
  transition: gap 200ms var(--ease);
}

.service-card:hover .service-card__link { gap: var(--sp-3); }

/* =========================================================
   ABOUT / APPROACH
   ========================================================= */
.about { background: linear-gradient(180deg, var(--ink) 0%, var(--ink-80) 100%); }

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.about__list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.about__item {
  display: flex;
  gap: var(--sp-4);
  padding: var(--sp-4) var(--sp-6);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  transition: all 200ms var(--ease);
}

.about__item:hover {
  background: rgba(13,132,255,0.06);
  border-color: rgba(13,132,255,0.2);
}

.about__item-num {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--pulse);
  font-weight: 700;
  min-width: 28px;
  margin-top: 2px;
}

.about__item h4 {
  font-size: var(--text-base);
  margin-bottom: var(--sp-1);
}

.about__item p {
  font-size: var(--text-sm);
  color: var(--steel);
}

.about__visual {
  position: relative;
  height: 480px;
}

.about__terminal {
  background: rgba(26,34,64,0.95);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 100%;
  box-shadow: var(--shadow-card);
}

.terminal__header {
  padding: var(--sp-3) var(--sp-4);
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.terminal__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.terminal__dot--red { background: #FF5F56; }
.terminal__dot--yellow { background: #FFBD2E; }
.terminal__dot--green { background: #27C93F; }

.terminal__title {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--steel);
  margin-left: var(--sp-2);
}

.terminal__body {
  padding: var(--sp-6);
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  line-height: 2;
}

.terminal__line { display: flex; gap: var(--sp-3); }
.terminal__prompt { color: var(--pulse); }
.terminal__cmd { color: var(--white); }
.terminal__output { color: var(--steel); padding-left: var(--sp-6); }
.terminal__output.ok { color: var(--pulse); }
.terminal__output.info { color: var(--sky); }
.terminal__cursor {
  display: inline-block;
  width: 8px; height: 1.2em;
  background: var(--sky);
  vertical-align: middle;
  animation: blink 1.2s step-end infinite;
}
@keyframes blink { 50% { opacity: 0; } }

@media (max-width: 768px) {
  .about__inner { grid-template-columns: 1fr; }
  .about__visual { height: 320px; }
}

/* =========================================================
   PROCESS
   ========================================================= */
.process { background: var(--ink); }

.process__track {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
  margin-inline: auto;
}

.process__track::before {
  content: '';
  position: absolute;
  left: 23px; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--sky) 20%, var(--pulse) 80%, transparent);
}

.process__step {
  display: flex;
  gap: var(--sp-6);
  padding: var(--sp-6) 0;
  position: relative;
}

.process__step-num {
  flex-shrink: 0;
  width: 46px; height: 46px;
  background: var(--ink-80);
  border: 2px solid rgba(13,132,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--sky);
  position: relative;
  z-index: 1;
  transition: all 250ms var(--ease);
}

.process__step:hover .process__step-num {
  background: rgba(13,132,255,0.2);
  border-color: var(--sky);
  box-shadow: 0 0 20px rgba(13,132,255,0.3);
}

.process__content { padding-top: var(--sp-2); }
.process__content h4 { margin-bottom: var(--sp-2); }
.process__content p { font-size: var(--text-sm); }

/* =========================================================
   TECHNOLOGIES
   ========================================================= */
.technologies {
  background: var(--ink-80);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.tech-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  justify-content: center;
}

.tech-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--steel);
  letter-spacing: 0.05em;
  transition: all 200ms var(--ease);
}

.tech-badge:hover {
  background: rgba(13,132,255,0.1);
  border-color: rgba(13,132,255,0.3);
  color: var(--white);
}

.tech-badge__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sky);
}

/* =========================================================
   FAQ
   ========================================================= */
.faq { background: var(--ink); }

.faq__list {
  max-width: 780px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.faq__item {
  background: var(--ink-80);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 200ms var(--ease);
}

.faq__item.open { border-color: rgba(13,132,255,0.25); }

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-6);
  text-align: left;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  transition: color 200ms var(--ease);
}

.faq__question:hover { color: var(--sky); }

.faq__icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--steel);
  font-size: var(--text-lg);
  transition: all 200ms var(--ease);
  line-height: 1;
}

.faq__item.open .faq__icon {
  background: rgba(13,132,255,0.15);
  border-color: var(--sky);
  color: var(--sky);
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms var(--ease);
}

.faq__item.open .faq__answer { max-height: 500px; }

.faq__answer-inner {
  padding: 0 var(--sp-6) var(--sp-6);
  color: var(--steel);
  font-size: var(--text-sm);
  line-height: 1.8;
}

/* =========================================================
   CTA BAND
   ========================================================= */
.cta-band {
  background: linear-gradient(135deg, rgba(13,132,255,0.15), rgba(0,212,170,0.1));
  border-top: 1px solid rgba(13,132,255,0.2);
  border-bottom: 1px solid rgba(13,132,255,0.2);
  padding-block: var(--sp-16);
  text-align: center;
}

.cta-band h2 { margin-bottom: var(--sp-4); }
.cta-band p { margin-inline: auto; margin-bottom: var(--sp-8); font-size: var(--text-lg); }

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  justify-content: center;
  align-items: center;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--ink-80);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: var(--sp-16);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--sp-8);
  margin-bottom: var(--sp-12);
}

.footer__brand p {
  margin-top: var(--sp-4);
  font-size: var(--text-sm);
  line-height: 1.8;
  max-width: 32ch;
}

.footer__col h5 {
  font-size: var(--text-sm);
  color: var(--ghost);
  margin-bottom: var(--sp-4);
  letter-spacing: 0.05em;
}

.footer__links { display: flex; flex-direction: column; gap: var(--sp-2); }

.footer__links a {
  font-size: var(--text-sm);
  color: var(--steel);
  transition: color 180ms var(--ease);
}
.footer__links a:hover { color: var(--white); }

.footer__newsletter p {
  font-size: var(--text-sm);
  margin-bottom: var(--sp-4);
}

.footer__form {
  display: flex;
  gap: var(--sp-2);
}

.footer__input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-full);
  padding: var(--sp-3) var(--sp-4);
  font-size: var(--text-sm);
  color: var(--white);
  outline: none;
  transition: border-color 200ms var(--ease);
}

.footer__input:focus { border-color: var(--sky); }
.footer__input::placeholder { color: var(--steel); }

.footer__bar {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-block: var(--sp-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.footer__bar-left, .footer__bar-right {
  font-size: var(--text-xs);
  color: var(--steel);
}

.footer__bar-right a { color: var(--steel); }
.footer__bar-right a:hover { color: var(--white); }

@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bar { flex-direction: column; text-align: center; }
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-hero {
  padding-top: 120px;
  padding-bottom: var(--sp-16);
  background: var(--ink);
}

.contact-section { background: var(--ink); }

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--sp-12);
  align-items: start;
}

.contact__info-item {
  display: flex;
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
}

.contact__info-icon {
  width: 44px; height: 44px;
  background: rgba(13,132,255,0.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sky);
  flex-shrink: 0;
}

.contact__info-item h4 { font-size: var(--text-base); margin-bottom: 2px; }
.contact__info-item a, .contact__info-item span {
  font-size: var(--text-sm);
  color: var(--steel);
}

.contact-form {
  background: var(--ink-80);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
}

.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
.form__group { display: flex; flex-direction: column; gap: var(--sp-2); margin-bottom: var(--sp-4); }
.form__label { font-size: var(--text-sm); font-weight: 500; color: var(--ghost); }

.form__input,
.form__select,
.form__textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: var(--sp-3) var(--sp-4);
  font-size: var(--text-sm);
  font-family: var(--font-body);
  color: var(--white);
  outline: none;
  transition: border-color 200ms var(--ease);
  width: 100%;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(13,132,255,0.15);
}

.form__input::placeholder,
.form__textarea::placeholder { color: var(--steel); }

.form__select option { background: var(--ink-80); }

.form__textarea { min-height: 120px; resize: vertical; }

@media (max-width: 768px) {
  .contact__inner { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
}

/* =========================================================
   PAGE HERO (inner pages)
   ========================================================= */
.page-hero {
  padding-top: 120px;
  padding-bottom: var(--sp-16);
  background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(13,132,255,0.12) 0%, transparent 70%), var(--ink);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.page-hero .eyebrow { display: block; text-align: center; }
.page-hero h1 { text-align: center; margin-bottom: var(--sp-4); }
.page-hero p { text-align: center; margin-inline: auto; font-size: var(--text-lg); }

/* =========================================================
   SERVICE SINGLE PAGE
   ========================================================= */
.service-detail { background: var(--ink); }

.service-detail__inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--sp-12);
  align-items: start;
}

.service-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: var(--ink-80);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-xl);
  padding: var(--sp-6);
  margin-bottom: var(--sp-6);
}

.sidebar-card h4 { margin-bottom: var(--sp-4); font-size: var(--text-base); }

.sidebar-nav { display: flex; flex-direction: column; gap: var(--sp-2); }
.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-3);
  font-size: var(--text-sm);
  color: var(--steel);
  border-radius: var(--radius);
  transition: all 180ms var(--ease);
}
.sidebar-nav a:hover, .sidebar-nav a.active {
  color: var(--white);
  background: rgba(13,132,255,0.1);
}

@media (max-width: 768px) {
  .service-detail__inner { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
}

/* =========================================================
   UTILITY CLASSES
   ========================================================= */
.text-center { text-align: center; }
.text-sky { color: var(--sky); }
.text-pulse { color: var(--pulse); }
.mt-2 { margin-top: var(--sp-2); }
.mt-4 { margin-top: var(--sp-4); }
.mt-8 { margin-top: var(--sp-8); }
.mb-4 { margin-bottom: var(--sp-4); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* =========================================================
   SCROLL ANIMATIONS
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* =========================================================
   WORDPRESS CORE STYLES
   ========================================================= */
.alignleft { float: left; margin-right: var(--sp-4); }
.alignright { float: right; margin-left: var(--sp-4); }
.aligncenter { display: block; margin-inline: auto; }
.wp-block-image img { border-radius: var(--radius); }
.entry-content { color: var(--ghost); line-height: 1.8; }
.entry-content h2, .entry-content h3 { margin-top: var(--sp-8); margin-bottom: var(--sp-4); }
.entry-content p { color: var(--steel); margin-bottom: var(--sp-4); max-width: none; }
.entry-content ul, .entry-content ol { list-style: disc; padding-left: var(--sp-6); color: var(--steel); margin-bottom: var(--sp-4); }
.entry-content a { color: var(--sky); text-decoration: underline; }
