/* ==========================================================================
   KRESS COOPER TECHNOLOGIES - BRAND STYLING SYSTEM
   Brand Colors:
   Primary: #6420FF (Electric Violet)
   Accent:  #43FD9C (Neon Mint)
   ========================================================================== */

:root {
  /* Brand Tokens */
  --brand-violet: #6420ff;
  --brand-violet-hover: #793dff;
  --brand-violet-glow: rgba(100, 32, 255, 0.4);
  --brand-mint: #43fd9c;
  --brand-mint-glow: rgba(67, 253, 156, 0.35);

  /* Deep High-End Backgrounds */
  --bg-deep: #090714;
  --bg-dark: #0f0b21;
  --bg-card: #15102d;
  --bg-card-hover: #1a1437;
  --bg-glass: rgba(21, 16, 45, 0.75);

  /* Crisp Typography Colors */
  --text-white: #ffffff;
  --text-primary: #f3f4f6;
  --text-muted: #9ca3af;
  --text-dim: #6b7280;

  /* Specular Borders */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(100, 32, 255, 0.45);
  --border-mint: rgba(67, 253, 156, 0.4);

  /* Radius & Transitions */
  --max-w: 1200px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 9999px;
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family:
    "Plus Jakarta Sans",
    system-ui,
    -apple-system,
    sans-serif;
  background-color: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.kc-container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* Headings */
h1,
h2,
h3,
h4 {
  font-family: "Outfit", sans-serif;
  color: var(--text-white);
  font-weight: 700;
  line-height: 1.25;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

.text-center {
  text-align: center;
}

.highlight-gradient {
  background: linear-gradient(135deg, #ffffff 0%, #c4b5fd 40%, #43fd9c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Section Headings */
.section-heading {
  max-width: 680px;
  margin: 0 auto 50px;
}

.sub-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  background: rgba(100, 32, 255, 0.16);
  border: 1px solid rgba(100, 32, 255, 0.35);
  color: #c4b5fd;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title {
  font-size: 2.35rem;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--brand-violet);
  color: #ffffff;
  box-shadow: 0 4px 20px var(--brand-violet-glow);
}

.btn-primary:hover {
  background: var(--brand-violet-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(100, 32, 255, 0.6);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-white);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(67, 253, 156, 0.4);
  color: var(--brand-mint);
  transform: translateY(-2px);
}

.btn-consultation {
  background: rgba(100, 32, 255, 0.15);
  color: #c4b5fd;
  border: 1px solid rgba(100, 32, 255, 0.35);
  padding: 9px 20px;
  font-size: 0.88rem;
}

.btn-consultation:hover {
  background: var(--brand-violet);
  color: #ffffff;
  border-color: var(--brand-violet);
  box-shadow: 0 4px 18px var(--brand-violet-glow);
}

/* ==========================================================================
   1. TOPBAR
   ========================================================================== */
.kc-topbar {
  background: #06040e;
  border-bottom: 1px solid var(--border-subtle);
  padding: 8px 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.agency-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(67, 253, 156, 0.1);
  color: var(--brand-mint);
  border: 1px solid rgba(67, 253, 156, 0.25);
  padding: 2px 10px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.76rem;
}

.pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-mint);
  box-shadow: 0 0 6px var(--brand-mint);
}

.topbar-motto {
  color: var(--text-dim);
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-primary);
  font-weight: 600;
}

.topbar-link:hover {
  color: var(--brand-mint);
}

.sep {
  color: var(--text-dim);
}

.hubs-text {
  color: var(--text-muted);
}

/* ==========================================================================
   2. HEADER & NAVIGATION
   ========================================================================== */
.kc-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(9, 7, 20, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition);
}

.kc-header.scrolled {
  background: rgba(9, 7, 20, 0.96);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  border-bottom-color: rgba(100, 32, 255, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand-logo img {
  display: block;
  height: 54px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.desktop-nav .nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-white);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-mint);
  transition: width 0.25s ease;
  border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: 1px solid var(--border-subtle);
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.mobile-menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-white);
  margin: 4px 0;
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: var(--bg-dark);
  border-left: 1px solid var(--border-subtle);
  z-index: 1100;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-drawer.open {
  right: 0;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-subtle);
}

.drawer-close-btn {
  background: transparent;
  border: none;
  color: var(--text-white);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.drawer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.drawer-nav-link {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-white);
  padding: 6px 0;
  display: block;
}

.drawer-footer {
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
}

.drawer-label {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 8px;
}

.drawer-phone {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand-mint);
  margin-bottom: 4px;
}

.drawer-email {
  display: block;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.drawer-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

/* ==========================================================================
   3. HERO SECTION
   ========================================================================== */
.kc-hero {
  position: relative;
  padding: 90px 0 80px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  opacity: 0.22;
}

.glow-left {
  top: -80px;
  left: -120px;
  background: var(--brand-violet);
}

.glow-right {
  top: 100px;
  right: -100px;
  background: var(--brand-mint);
  opacity: 0.12;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(
    circle at center,
    black 40%,
    transparent 80%
  );
}

.hero-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 2;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 16px;
  border-radius: var(--radius-pill);
  background: rgba(100, 32, 255, 0.16);
  border: 1px solid rgba(100, 32, 255, 0.4);
  color: #c4b5fd;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 22px;
}

.pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-mint);
  box-shadow: 0 0 6px var(--brand-mint);
}

.hero-title {
  font-size: 3.2rem;
  letter-spacing: -0.03em;
  line-height: 1.16;
  margin-bottom: 20px;
}

.hero-lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 34px;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 46px;
}

.hero-stats-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 18px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  width: fit-content;
}

.stat-card {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: "Outfit", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.1;
}

.stat-desc {
  font-size: 0.74rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 3px;
}

.stat-divider {
  width: 1px;
  height: 32px;
  background: var(--border-subtle);
}

/* Dashboard Mockup Visual */
.dashboard-preview-card {
  background: var(--bg-dark);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-md);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(100, 32, 255, 0.18);
  overflow: hidden;
}

.preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid var(--border-subtle);
}

.window-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.d-red {
  background: #ef4444;
}
.d-yellow {
  background: #f59e0b;
}
.d-green {
  background: #10b981;
}

.preview-title {
  font-size: 0.72rem;
  font-family: monospace;
  color: var(--text-dim);
}

.preview-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--brand-mint);
  font-family: monospace;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-mint);
}

.preview-body {
  padding: 22px;
}

.preview-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.p-metric {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 12px;
  display: flex;
  flex-direction: column;
}

.p-label {
  font-size: 0.68rem;
  color: var(--text-dim);
  text-transform: uppercase;
  font-weight: 700;
}

.p-val {
  font-family: "Outfit", sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  margin: 3px 0;
}

.text-mint {
  color: var(--brand-mint);
}
.text-violet {
  color: #a78bfa;
}

.p-sub {
  font-size: 0.65rem;
  color: var(--text-dim);
}

.preview-chart-box {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 16px;
}

.chart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.74rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 8px;
}

.chart-tag {
  font-size: 0.68rem;
  color: var(--brand-mint);
  background: rgba(67, 253, 156, 0.1);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}

.chart-svg {
  width: 100%;
  height: auto;
  display: block;
}

.preview-feed {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: rgba(100, 32, 255, 0.08);
  border-left: 3px solid var(--brand-violet);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.feed-icon {
  color: var(--brand-mint);
  font-weight: 900;
  font-size: 0.95rem;
}

.feed-info {
  display: flex;
  flex-direction: column;
}

.feed-text {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-white);
}

.feed-meta {
  font-size: 0.68rem;
  color: var(--text-dim);
}

/* ==========================================================================
   4. SERVICES SECTION (THE 9 LICENSED ACTIVITIES)
   ========================================================================== */
.kc-services-section {
  padding: 90px 0;
  background: var(--bg-dark);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.services-filter-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 46px;
}

.filter-tab {
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.filter-tab:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-white);
}

.filter-tab.active {
  background: rgba(100, 32, 255, 0.2);
  border-color: var(--brand-violet);
  color: #c4b5fd;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.service-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-5px);
  border-color: var(--border-hover);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(100, 32, 255, 0.15);
}

.card-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.icon-violet {
  background: rgba(100, 32, 255, 0.16);
  color: #a78bfa;
  border: 1px solid rgba(100, 32, 255, 0.35);
}

.icon-mint {
  background: rgba(67, 253, 156, 0.12);
  color: var(--brand-mint);
  border: 1px solid rgba(67, 253, 156, 0.3);
}

.card-num {
  position: absolute;
  top: 24px;
  right: 26px;
  font-family: monospace;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.18);
  font-weight: 700;
}

.card-title {
  font-size: 1.22rem;
  margin-bottom: 12px;
  color: var(--text-white);
}

.card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.card-features {
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
  margin-bottom: 22px;
}

.card-features li {
  position: relative;
  padding-left: 18px;
  font-size: 0.82rem;
  color: var(--text-primary);
  margin-bottom: 7px;
}

.card-features li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--brand-mint);
  font-weight: 900;
  font-size: 1.1rem;
  line-height: 1;
}

.card-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.86rem;
  font-weight: 700;
  color: #c4b5fd;
  margin-top: auto;
}

.card-action:hover {
  gap: 10px;
  color: var(--brand-mint);
}

.highlight-card {
  border-color: rgba(67, 253, 156, 0.3);
  background: linear-gradient(135deg, #181134 0%, #120d27 100%);
}

.highlight-tag {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-violet);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: 0 0 6px 6px;
  text-transform: uppercase;
}

/* ==========================================================================
   5. WHY KRESS COOPER TECHNOLOGIES
   ========================================================================== */
.kc-why-section {
  padding: 90px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 28px;
}

.point-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.point-check {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(67, 253, 156, 0.12);
  color: var(--brand-mint);
  border: 1px solid rgba(67, 253, 156, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.point-title {
  font-size: 1.05rem;
  color: var(--text-white);
  margin-bottom: 3px;
}

.point-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.why-stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

.badge-accent {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--brand-mint);
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.card-header-text {
  font-size: 1.35rem;
  margin-bottom: 26px;
}

.progress-items {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 30px;
}

.prog-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.prog-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 3px;
  overflow: hidden;
}

.prog-fill {
  height: 100%;
  border-radius: 3px;
}

.fill-violet {
  background: var(--brand-violet);
}
.fill-mint {
  background: var(--brand-mint);
}

.hotline-box {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(100, 32, 255, 0.1);
  border: 1px solid rgba(100, 32, 255, 0.3);
  border-radius: var(--radius-md);
}

.hotline-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--brand-violet);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hotline-lbl {
  display: block;
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  font-weight: 700;
}

.hotline-num {
  font-family: "Outfit", sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-white);
}

.hotline-num:hover {
  color: var(--brand-mint);
}

/* ==========================================================================
   6. OUR PROCESS
   ========================================================================== */
.kc-process-section {
  padding: 80px 0;
  background: var(--bg-dark);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.process-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  transition: var(--transition);
}

.process-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.process-step {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--brand-mint);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.process-title {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.process-text {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   7. TECH STACK
   ========================================================================== */
.kc-stack-section {
  padding: 70px 0;
}

.stack-tags-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.stack-tag {
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: var(--transition);
}

.stack-tag:hover {
  background: rgba(100, 32, 255, 0.16);
  border-color: var(--border-hover);
  color: var(--text-white);
  transform: translateY(-2px);
}

/* ==========================================================================
   8. CONTACT SECTION
   ========================================================================== */
.kc-contact-section {
  padding: 90px 0 110px;
}

.contact-dual-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
}

.contact-details-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.contact-info-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.info-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(100, 32, 255, 0.16);
  color: #a78bfa;
  border: 1px solid rgba(100, 32, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-label {
  display: block;
  font-size: 0.74rem;
  color: var(--text-dim);
  text-transform: uppercase;
  font-weight: 700;
}

.info-value {
  font-family: "Outfit", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-white);
  margin: 3px 0;
  display: block;
}

.info-value:hover {
  color: var(--brand-mint);
}

.info-sub {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 22px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.25);
  margin-top: 6px;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.4);
}

/* Contact Form Card */
.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 38px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.form-title {
  font-size: 1.45rem;
  margin-bottom: 6px;
}

.form-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.input-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.input-wrap label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-primary);
}

.input-wrap input,
.input-wrap select,
.input-wrap textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(9, 7, 20, 0.7);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-white);
  font-family: inherit;
  font-size: 0.92rem;
  transition: var(--transition);
}

.input-wrap input:focus,
.input-wrap select:focus,
.input-wrap textarea:focus {
  outline: none;
  border-color: var(--brand-violet);
  box-shadow: 0 0 12px rgba(100, 32, 255, 0.3);
}

.input-wrap select {
  cursor: pointer;
}

.input-wrap select option {
  background: var(--bg-dark);
  color: var(--text-white);
}

.btn-submit {
  width: 100%;
  margin-top: 8px;
}

/* ==========================================================================
   9. FOOTER
   ========================================================================== */
.kc-footer {
  background: #05040b;
  border-top: 1px solid var(--border-subtle);
  padding: 70px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-bio {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 18px 0;
}

.footer-hub-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  background: rgba(67, 253, 156, 0.08);
  border: 1px solid rgba(67, 253, 156, 0.25);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  color: var(--brand-mint);
  font-weight: 600;
}

.hub-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-mint);
}

.footer-heading {
  font-size: 1.05rem;
  color: var(--text-white);
  margin-bottom: 18px;
}

.footer-list li {
  margin-bottom: 9px;
}

.footer-list a {
  font-size: 0.86rem;
  color: var(--text-muted);
}

.footer-list a:hover {
  color: var(--brand-mint);
  padding-left: 4px;
}

.f-item {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-bottom: 9px;
}

.f-item a {
  color: var(--text-primary);
}

.f-item a:hover {
  color: var(--brand-mint);
}

.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 26px;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.82rem;
  color: var(--text-dim);
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-legal-links a:hover {
  color: var(--brand-mint);
}

/* ==========================================================================
   10. FLOATING WHATSAPP & TOAST
   ========================================================================== */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: var(--transition);
}

.floating-whatsapp-btn:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.6);
}

.toast-box {
  position: fixed;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: #1c143b;
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-md);
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.55);
  z-index: 2000;
  transition: bottom 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast-box.show {
  bottom: 30px;
}

.t-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--brand-mint);
  color: #06040e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.85rem;
}

.t-title {
  font-weight: 700;
  color: var(--text-white);
  font-size: 0.92rem;
}

.t-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.toast-box.is-error {
  border-color: rgba(239, 68, 68, 0.5);
  box-shadow: 0 10px 30px rgba(239, 68, 68, 0.15);
}

.toast-box.is-error .t-icon {
  background: #ef4444;
  color: #ffffff;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ==========================================================================
   RESPONSIVE LAYOUT
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
  .hero-title {
    font-size: 2.3rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .contact-dual-layout {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .topbar-right {
    display: none;
  }
}

.drawer-header img {
  height: 40px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
}

.footer-brand-col img {
  height: 46px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}
