/*
Theme Name: Somykida Enterprise
Theme URI: https://somykida.com
Description: Performance-first Hello Elementor child theme for the Somykida enterprise marketing site. Brand tokens, a11y, SEO hooks, and fluid responsive type. UI is built primarily in Elementor.
Author: Somykida
Author URI: https://somykida.com
Template: hello-elementor
Version: 1.6.2
Requires at least: 6.4
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: somykida-enterprise
Tags: custom-logo, custom-menu, featured-images, translation-ready, accessibility-ready
*/

/* Brand + layout tokens (Elementor globals should mirror these). */
:root {
  --sk-color-primary: #0c0f66;
  --sk-color-primary-contrast: #ffffff;
  --sk-color-text: #2b2b2b;
  --sk-color-muted: #6b7280;
  --sk-color-surface: #f4f6fb;
  --sk-color-light-blu: #e8eefc;
  --sk-radius-pill: 30px;
  --sk-container-max: 1200px;
  --sk-font-sans: "NeurialGrotesk", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --sk-space-section: clamp(2.5rem, 5vw, 5rem);
  --sk-text-h1: clamp(1.75rem, 4.5vw, 3.5rem);
  --sk-text-h2: clamp(1.35rem, 3vw, 2.25rem);
  --sk-text-body: 1rem;
  --sk-line-body: 1.65;
  --sk-touch-min: 44px;
}

/* Base a11y + performance-friendly defaults */
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 {
  font-family: var(--sk-font-sans);
  color: var(--sk-color-text);
  line-height: var(--sk-line-body);
  overflow-x: hidden;
}

img,
svg,
video {
  max-width: 100%;
  height: auto;
}

/* Skip link */
.sk-skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 100000;
  padding: 0.75rem 1rem;
  background: var(--sk-color-primary);
  color: var(--sk-color-primary-contrast);
  text-decoration: none;
  border-radius: 0 0 4px 0;
}

.sk-skip-link:focus {
  left: 0;
}

/* Fluid headings when not overridden by Elementor */
.sk-prose h1,
h1.sk-fluid {
  font-size: var(--sk-text-h1);
  line-height: 1.15;
  color: var(--sk-color-primary);
}

.sk-prose h2,
h2.sk-fluid {
  font-size: var(--sk-text-h2);
  line-height: 1.25;
  color: var(--sk-color-primary);
}

/* Brand buttons — high-contrast variants (never white-on-white) */
.sk-btn,
.theme_btn_fill,
a.sk-btn,
button.sk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--sk-touch-min);
  padding: 0.5rem 1.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--sk-radius-pill);
  border: 2px solid var(--sk-color-primary);
  background: #fff;
  color: var(--sk-color-primary) !important;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
}

.sk-btn:hover,
.theme_btn_fill:hover,
a.sk-btn:hover,
button.sk-btn:hover {
  background: var(--sk-color-primary);
  color: #fff !important;
  border-color: var(--sk-color-primary);
}

/* Solid primary (forms, light surfaces that need filled CTA) */
.sk-btn--solid,
.sk-form .sk-btn,
.sk-form button[type="submit"],
.last_btn {
  background: var(--sk-color-primary);
  color: #fff !important;
  border-color: var(--sk-color-primary);
  border-radius: var(--sk-radius-pill);
  font-weight: 700;
  min-height: var(--sk-touch-min);
}

.sk-btn--solid:hover,
.sk-form .sk-btn:hover,
.sk-form button[type="submit"]:hover,
.last_btn:hover {
  background: #080a4a;
  color: #fff !important;
  border-color: #080a4a;
}

/* White pill on dark navy (hero, convert, header, footer) */
.sk-btn--header,
.sk-btn--on-dark,
a.sk-btn--on-dark,
.sk-convert--primary a.sk-btn,
.sk-convert--primary a.sk-btn--on-dark,
.sk-hero a.sk-btn--on-dark,
.sk-site-footer a.sk-btn,
.sk-site-header a.sk-btn--header {
  background: #fff !important;
  color: var(--sk-color-primary) !important;
  border-color: #fff !important;
}

.sk-btn--header:hover,
.sk-btn--on-dark:hover,
a.sk-btn--on-dark:hover,
.sk-convert--primary a.sk-btn:hover,
.sk-convert--primary a.sk-btn--on-dark:hover,
.sk-hero a.sk-btn--on-dark:hover,
.sk-site-footer a.sk-btn:hover,
.sk-site-header a.sk-btn--header:hover {
  background: var(--sk-color-light-blu) !important;
  color: var(--sk-color-primary) !important;
  border-color: var(--sk-color-light-blu) !important;
}

/* Ghost outline on dark backgrounds */
.sk-btn--ghost,
a.sk-btn--ghost,
.sk-convert--primary a.sk-btn--ghost,
.sk-hero a.sk-btn--ghost {
  background: transparent !important;
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.85) !important;
}

.sk-btn--ghost:hover,
a.sk-btn--ghost:hover,
.sk-convert--primary a.sk-btn--ghost:hover,
.sk-hero a.sk-btn--ghost:hover {
  background: #fff !important;
  color: var(--sk-color-primary) !important;
  border-color: #fff !important;
}

/* Focus visibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--sk-color-primary);
  outline-offset: 2px;
}

/* Forms — full width on small screens (not checkboxes/radios) */
.sk-form input:not([type="checkbox"]):not([type="radio"]),
.sk-form select,
.sk-form textarea,
.elementor-form input:not([type="checkbox"]):not([type="radio"]),
.elementor-form select,
.elementor-form textarea {
  width: 100%;
  max-width: 100%;
}

.sk-form button,
.elementor-form button[type="submit"] {
  min-height: var(--sk-touch-min);
  min-width: var(--sk-touch-min);
}

/* Mobile sticky CTA bar (enabled via body class or Elementor HTML) */
.sk-mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom, 0px));
  background: var(--sk-color-primary);
  box-shadow: 0 -4px 20px rgba(12, 15, 102, 0.2);
}

.sk-mobile-cta-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: var(--sk-touch-min);
  width: 100%;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
}

@media (max-width: 767px) {
  body.has-sk-mobile-cta .sk-mobile-cta-bar {
    display: block;
  }

  body.has-sk-mobile-cta {
    padding-bottom: calc(4.5rem + env(safe-area-inset-bottom, 0px));
  }
}

/* Container helper */
.sk-container {
  width: min(100% - 2rem, var(--sk-container-max));
  margin-inline: auto;
}

/* Surface sections */
.sk-surface {
  background: var(--sk-color-surface);
}

.sk-surface-blu {
  background: var(--sk-color-light-blu);
}
/* Layout shell (header/footer/hero/cards) — mobile-first */
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.sk-site-header {
  background: var(--sk-color-primary);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.sk-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  width: min(100% - 2rem, var(--sk-container-max));
  margin-inline: auto;
}

.sk-logo,
.sk-logo-text {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.15rem;
  display: inline-flex;
  align-items: center;
}

.sk-logo img,
.sk-logo-img,
.sk-site-header .custom-logo {
  max-height: 40px;
  width: auto;
  height: auto;
  display: block;
}

/* Custom logo often ships dark; keep readable on navy header */
.sk-site-header .custom-logo-link,
.sk-site-header .sk-logo {
  filter: none;
}

.sk-nav-toggle {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  min-width: var(--sk-touch-min);
  min-height: var(--sk-touch-min);
  border-radius: 8px;
  font-size: 1.25rem;
  cursor: pointer;
}

.sk-primary-nav {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--sk-color-primary);
  padding: 1rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.sk-primary-nav.is-open {
  display: flex;
}

.sk-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sk-menu a {
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  min-height: var(--sk-touch-min);
  align-items: center;
  padding: 0.25rem 0.5rem;
}

/* (header/on-dark/ghost rules defined with brand buttons block above) */

.sk-hero {
  background: linear-gradient(135deg, #0c0f66 0%, #1a237e 55%, #283593 100%);
  color: #fff;
  padding: var(--sk-space-section) 0;
  position: relative;
  overflow: hidden;
}

.sk-hero-inner,
.sk-hero-grid {
  width: min(100% - 2rem, var(--sk-container-max));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.sk-hero-grid {
  display: grid;
  gap: 2.25rem;
  align-items: center;
}

.sk-hero-copy {
  max-width: 38rem;
  position: relative;
  z-index: 2;
}

/* Hero C2 / AI stack graphic — impactful, no vanity portrait */
.sk-hero-visual {
  position: relative;
  width: 100%;
  margin: 0;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.sk-hero-c2 {
  width: 100%;
  max-width: 520px;
  min-height: 380px;
  border-radius: 24px;
  background:
    radial-gradient(ellipse 80% 50% at 70% 20%, rgba(99, 120, 255, 0.22), transparent 55%),
    radial-gradient(ellipse 60% 40% at 20% 90%, rgba(56, 189, 248, 0.12), transparent 50%),
    linear-gradient(165deg, rgba(8, 10, 40, 0.55) 0%, rgba(12, 15, 102, 0.35) 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.sk-c2-chrome {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.18);
}

.sk-c2-dots {
  display: flex;
  gap: 0.35rem;
}

.sk-c2-dots i {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}

.sk-c2-dots i:nth-child(1) { background: #f87171; }
.sk-c2-dots i:nth-child(2) { background: #fbbf24; }
.sk-c2-dots i:nth-child(3) { background: #34d399; }

.sk-c2-title {
  flex: 1;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.sk-c2-status {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #86efac;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.sk-c2-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6);
  animation: sk-c2-pulse 2s ease-out infinite;
}

.sk-c2-body {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  padding: 1rem;
  align-content: start;
}

.sk-c2-label {
  margin: 0 0 0.55rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.sk-c2-nodes {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.sk-c2-nodes li {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 0.65rem;
  row-gap: 0.3rem;
  align-items: center;
  padding: 0.65rem 0.75rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.sk-c2-node-ico {
  width: 2rem;
  height: 2rem;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: #c7d2fe;
  grid-row: 1 / 3;
}

.sk-c2-node-ico .sk-icon {
  width: 1.15rem;
  height: 1.15rem;
}

.sk-c2-bar {
  grid-column: 2;
  height: 4px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.12);
  position: relative;
  overflow: hidden;
}

.sk-c2-bar::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--p, 50%);
  border-radius: inherit;
  background: linear-gradient(90deg, #60a5fa, #a78bfa);
}

.sk-c2-col--flow {
  display: none;
}

.sk-c2-llm {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 168px;
  margin-bottom: 0.75rem;
}

.sk-c2-llm-ring {
  position: absolute;
  width: 158px;
  height: 158px;
  border-radius: 50%;
  border: 1px solid rgba(167, 139, 250, 0.45);
  box-shadow:
    0 0 40px rgba(129, 140, 248, 0.35),
    inset 0 0 30px rgba(99, 102, 241, 0.2);
  animation: sk-c2-spin 12s linear infinite;
}

.sk-c2-llm-ring::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.2);
}

.sk-c2-llm-core {
  position: relative;
  z-index: 1;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  text-align: center;
  background: radial-gradient(circle at 35% 30%, #4f46e5, #1e1b4b 70%);
  border: 1px solid rgba(199, 210, 254, 0.35);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
  color: #fff;
  padding: 0.55rem;
}

.sk-c2-llm-icon {
  width: 1.55rem;
  height: 1.55rem;
  color: #e0e7ff;
}

.sk-c2-llm-core strong {
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  line-height: 1.1;
}

.sk-c2-llm-core span {
  font-size: 0.7rem;
  line-height: 1.25;
  color: rgba(224, 231, 255, 0.8);
  font-weight: 600;
  max-width: 6.5rem;
}

.sk-c2-agg {
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
}

.sk-c2-metrics {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 44px;
  margin-top: 0.6rem;
}

.sk-c2-metrics span {
  flex: 1;
  height: var(--h, 50%);
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, #93c5fd, #6366f1);
  opacity: 0.85;
  animation: sk-c2-bars 2.8s ease-in-out infinite;
}

.sk-c2-metrics span:nth-child(2) { animation-delay: 0.15s; }
.sk-c2-metrics span:nth-child(3) { animation-delay: 0.3s; }
.sk-c2-metrics span:nth-child(4) { animation-delay: 0.45s; }
.sk-c2-metrics span:nth-child(5) { animation-delay: 0.6s; }
.sk-c2-metrics span:nth-child(6) { animation-delay: 0.75s; }

.sk-c2-out {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.sk-c2-out li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.75rem 0.8rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.sk-c2-out .sk-icon {
  width: 1.35rem;
  height: 1.35rem;
  color: #a5b4fc;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.sk-c2-out strong {
  display: block;
  font-size: 0.98rem;
  color: #fff;
}

.sk-c2-out span {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.65);
}

.sk-c2-footer {
  margin: 0;
  padding: 0.8rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  background: rgba(0, 0, 0, 0.15);
}

.sk-c2-pipe {
  position: relative;
  height: 100%;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sk-c2-pipe-line {
  display: block;
  width: 2px;
  height: 100%;
  min-height: 48px;
  background: linear-gradient(180deg, transparent, rgba(165, 180, 252, 0.7), transparent);
}

.sk-c2-pipe-dot {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c4b5fd;
  box-shadow: 0 0 10px #a78bfa;
  animation: sk-c2-flow 2.2s linear infinite;
}

.sk-c2-pipe-dot--2 { animation-delay: 0.7s; }
.sk-c2-pipe-dot--3 { animation-delay: 1.1s; }

.sk-c2-flow-tag {
  margin: 0.25rem 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(199, 210, 254, 0.75);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  text-align: center;
}

@keyframes sk-c2-pulse {
  0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.55); }
  70% { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

@keyframes sk-c2-spin {
  to { transform: rotate(360deg); }
}

@keyframes sk-c2-bars {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.72); }
}

@keyframes sk-c2-flow {
  0% { top: 10%; opacity: 0; }
  15% { opacity: 1; }
  85% { opacity: 1; }
  100% { top: 85%; opacity: 0; }
}

@media (min-width: 700px) {
  .sk-c2-body {
    grid-template-columns: 1fr auto 1.05fr 1fr;
    gap: 0.65rem;
    padding: 1.1rem 1rem 1rem;
    align-items: stretch;
  }

  .sk-c2-col--flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 1.4rem;
  }

  .sk-c2-pipe-line {
    width: 100%;
    height: 2px;
    min-height: 0;
    background: linear-gradient(90deg, transparent, rgba(165, 180, 252, 0.75), transparent);
  }

  .sk-c2-pipe {
    width: 100%;
    min-height: 24px;
  }

  .sk-c2-pipe-dot {
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    animation: sk-c2-flow-x 2.4s linear infinite;
  }

  .sk-c2-flow-tag {
    writing-mode: horizontal-tb;
    transform: none;
    margin: 0.35rem 0;
  }
}

@keyframes sk-c2-flow-x {
  0% { left: 5%; opacity: 0; }
  15% { opacity: 1; }
  85% { opacity: 1; }
  100% { left: 88%; opacity: 0; }
}

@media (min-width: 900px) {
  .sk-hero {
    padding-top: clamp(2.75rem, 5vw, 4.5rem);
    padding-bottom: clamp(2.75rem, 5vw, 4.5rem);
  }

  .sk-hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 1fr);
    gap: clamp(1.75rem, 3.5vw, 3rem);
    align-items: center;
    min-height: 520px;
  }

  .sk-hero-visual {
    min-height: 500px;
    justify-content: flex-end;
  }

  .sk-hero-c2 {
    max-width: none;
    min-height: 500px;
    height: 100%;
    border-radius: 28px;
  }
}

@media (min-width: 1100px) {
  .sk-hero-grid {
    min-height: 540px;
  }

  .sk-hero-visual,
  .sk-hero-c2 {
    min-height: 520px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sk-c2-pulse,
  .sk-c2-llm-ring,
  .sk-c2-metrics span,
  .sk-c2-pipe-dot {
    animation: none !important;
  }
}

.sk-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.8rem;
  opacity: 0.9;
}

.sk-hero-title {
  font-size: var(--sk-text-h1);
  line-height: 1.15;
  margin: 0.5rem 0 1rem;
  max-width: 18ch;
}

.sk-hero-lead {
  max-width: 40rem;
  opacity: 0.95;
  font-size: 1.05rem;
}

.sk-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.sk-trust-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.95rem;
}

.sk-section {
  padding: var(--sk-space-section) 0;
}

.sk-section-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2rem;
}

.sk-card-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.sk-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 1.25rem;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 8px 24px rgba(12, 15, 102, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sk-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(12, 15, 102, 0.12);
}

.sk-card h3 {
  color: var(--sk-color-primary);
  margin-top: 0;
}

.sk-card-link {
  color: var(--sk-color-primary);
  font-weight: 700;
  font-size: 0.9rem;
}

.sk-split {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

.sk-cta-panel {
  background: #fff;
  border-radius: 16px;
  padding: 1.25rem;
  border: 1px solid #e5e7eb;
}

.sk-checklist {
  padding-left: 1.1rem;
}

.sk-checklist li {
  margin-bottom: 0.5rem;
}

.sk-center {
  text-align: center;
}

.sk-mt {
  margin-top: 1.5rem;
}

.sk-page-hero {
  background: var(--sk-color-primary);
  color: #fff;
  padding: 2.5rem 0 2rem;
}

.sk-page-hero a {
  color: #fff;
}

.sk-breadcrumb {
  opacity: 0.85;
  font-size: 0.9rem;
}

.sk-page-lead,
.sk-lead {
  font-size: 1.1rem;
  color: var(--sk-color-muted);
}

.sk-page-hero .sk-page-lead {
  color: rgba(255, 255, 255, 0.9);
}

.sk-prose {
  max-width: 48rem;
}

.sk-prose.sk-section,
.sk-content {
  max-width: min(100% - 2rem, 48rem);
}

.sk-container.sk-prose,
.sk-container.sk-content {
  max-width: min(100% - 2rem, var(--sk-container-max));
}

.sk-prose h2 {
  color: var(--sk-color-primary);
  margin-top: 2rem;
}

.sk-faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  margin-bottom: 0.5rem;
  background: #fff;
}

.sk-faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--sk-color-primary);
  min-height: var(--sk-touch-min);
  display: flex;
  align-items: center;
}

.sk-site-footer {
  background: #0a0c3d;
  color: #e5e7eb;
  padding: 3rem 0 1.5rem;
}

.sk-footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  width: min(100% - 2rem, var(--sk-container-max));
  margin-inline: auto;
}

.sk-footer-heading,
.sk-footer-title {
  color: #fff;
  font-weight: 700;
}

.sk-footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sk-footer-menu a {
  color: #cbd5e1;
  text-decoration: none;
  display: inline-flex;
  min-height: 40px;
  align-items: center;
}

.sk-footer-bottom {
  width: min(100% - 2rem, var(--sk-container-max));
  margin: 2rem auto 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1rem;
  font-size: 0.9rem;
}

.sk-form-title {
  margin-top: 0;
  color: var(--sk-color-primary);
}

.sk-form-fields label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
}

.sk-form-fields input:not([type="checkbox"]):not([type="radio"]),
.sk-form-fields select,
.sk-form-fields textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font: inherit;
}

.sk-form-success {
  background: #ecfdf5;
  color: #065f46;
  padding: 0.75rem;
  border-radius: 8px;
}

.sk-form-error {
  background: #fef2f2;
  color: #991b1b;
  padding: 0.75rem;
  border-radius: 8px;
}

@media (min-width: 768px) {
  .sk-nav-toggle {
    display: none;
  }

  .sk-primary-nav {
    display: flex !important;
    position: static;
    flex-direction: row;
    align-items: center;
    box-shadow: none;
    padding: 0;
    background: transparent;
  }

  .sk-menu {
    flex-direction: row;
    align-items: center;
    gap: 0.25rem;
  }

  .sk-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sk-card-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .sk-split {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }

  .sk-trust-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .sk-footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
}

@media (min-width: 1025px) {
  .sk-hero-title {
    max-width: 16ch;
  }
}

/* --- Enterprise polish additions --- */
.sk-section-kicker {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: var(--sk-color-muted);
  margin: 0 0 1rem;
}
.sk-logo-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.25rem 1.75rem;
  opacity: 0.85;
}
.sk-logo-strip img {
  max-height: 40px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.75;
}
.sk-clients {
  padding: 1.75rem 0;
  border-bottom: 1px solid #e5e7eb;
}
.sk-portrait {
  width: 100%;
  max-width: 420px;
  border-radius: 16px;
  display: block;
  margin-inline: auto;
  box-shadow: 0 16px 40px rgba(12, 15, 102, 0.18);
  object-fit: cover;
}
.sk-split--center {
  align-items: center;
}
.sk-cta-band {
  background: linear-gradient(180deg, #f4f6fb 0%, #e8eefc 100%);
}
.sk-prose .sk-lead,
.sk-content .sk-lead {
  font-size: 1.15rem;
  color: #374151;
  line-height: 1.65;
}
.sk-content ul,
.sk-prose ul {
  padding-left: 1.2rem;
}
.sk-content a {
  color: var(--sk-color-primary);
  font-weight: 600;
}
.sk-page-hero h1 {
  color: #fff;
  margin: 0.35rem 0 0.75rem;
}
.sk-article {
  padding-bottom: 2rem;
}
.sk-form-embed {
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .sk-logo-strip img { max-height: 32px; max-width: 96px; }
  .sk-card-grid { grid-template-columns: 1fr; }
}

/* ===== v1.5 conversion + icon system ===== */
.sk-icon {
  width: 1.5rem;
  height: 1.5rem;
  display: block;
}
.sk-icon--inline {
  width: 1.1rem;
  height: 1.1rem;
  display: inline-block;
  vertical-align: -0.15em;
  margin-right: 0.35rem;
}
.sk-icon-wrap {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(12, 15, 102, 0.08);
  color: var(--sk-color-primary);
  margin-bottom: 0.85rem;
}
.sk-icon-wrap--lg {
  width: 3.25rem;
  height: 3.25rem;
  margin-inline: auto 0;
}
.sk-convert-inner--center .sk-icon-wrap--lg {
  margin-inline: auto;
}
.sk-icon-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 1.35rem 1.35rem 1.15rem;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 8px 24px rgba(12, 15, 102, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  min-height: 100%;
}
a.sk-icon-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(12, 15, 102, 0.12);
  border-color: rgba(12, 15, 102, 0.2);
}
.sk-icon-card h3 {
  margin: 0 0 0.5rem;
  color: var(--sk-color-primary);
  font-size: 1.1rem;
  line-height: 1.3;
}
.sk-icon-card p {
  margin: 0 0 0.85rem;
  color: #4b5563;
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.55;
}
.sk-content-layout {
  max-width: 46rem;
  margin-inline: auto;
  display: grid;
  gap: 2rem;
}
.sk-related-rail {
  background: var(--sk-color-surface);
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 1.25rem 1.35rem;
}
.sk-related-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  display: grid;
  gap: 0.55rem;
}
.sk-related-list a {
  color: var(--sk-color-primary);
  font-weight: 600;
  text-decoration: none;
}
.sk-related-list a:hover {
  text-decoration: underline;
}
.sk-article-card .sk-article-title {
  margin: 0.25rem 0 0.5rem;
  font-size: 1.15rem;
  line-height: 1.3;
}
.sk-article-card .sk-article-title a {
  color: var(--sk-color-primary);
  text-decoration: none;
}
.sk-article-card .sk-article-title a:hover {
  text-decoration: underline;
}
.sk-meta {
  color: var(--sk-color-muted);
  font-size: 0.9rem;
  margin: 0;
}
.sk-pagination {
  display: flex;
  justify-content: center;
}
.sk-pagination .nav-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.sk-card-grid--2 {
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .sk-content-layout:has(.sk-related-rail) {
    max-width: 68rem;
    grid-template-columns: minmax(0, 1fr) 16rem;
    align-items: start;
  }
  .sk-card-grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.sk-page-hero-inner {
  max-width: 46rem;
}
.sk-page-hero {
  padding: 2.75rem 0 2.25rem;
}
.sk-convert {
  padding: var(--sk-space-section) 0;
}
.sk-convert--primary {
  background: linear-gradient(135deg, #0c0f66 0%, #1a237e 55%, #283593 100%);
  color: #fff;
}
.sk-convert--primary .sk-fluid,
.sk-convert--primary p {
  color: #fff;
}
.sk-convert--primary a:not(.sk-btn) {
  color: #fff;
}
.sk-convert--primary .sk-convert-alt a {
  color: rgba(255, 255, 255, 0.92);
}
.sk-convert--primary .sk-icon-wrap {
  background: rgba(255,255,255,0.12);
  color: #fff;
}
.sk-convert--calm,
.sk-convert--trust {
  background: var(--sk-color-surface);
}
.sk-convert-inner {
  display: grid;
  gap: 1.75rem;
  align-items: center;
}
.sk-convert-inner--center {
  text-align: center;
  max-width: 40rem;
  margin-inline: auto;
}
.sk-convert-action {
  text-align: center;
}
.sk-convert-alt {
  margin-top: 0.85rem;
  font-size: 0.95rem;
}
.sk-convert-alt a {
  color: rgba(255,255,255,0.9);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.sk-btn--xl {
  min-height: 52px;
  padding-left: 1.75rem;
  padding-right: 1.75rem;
  font-size: 0.9rem;
}
.sk-checklist--light li {
  color: rgba(255,255,255,0.92);
}
.sk-steps-inline {
  list-style: none;
  padding: 0;
  margin: 1rem auto 0;
  display: grid;
  gap: 0.65rem;
  max-width: 28rem;
  text-align: left;
}
.sk-steps-inline li {
  padding: 0.65rem 0.85rem;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
}
.sk-process {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  counter-reset: none;
}
.sk-process li {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 1.25rem;
}
.sk-process-num {
  display: inline-block;
  font-weight: 800;
  color: var(--sk-color-primary);
  opacity: 0.35;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.35rem;
}
.sk-process h3 {
  margin: 0 0 0.4rem;
  color: var(--sk-color-primary);
}
.sk-process p {
  margin: 0;
  color: #4b5563;
}
.sk-section-kicker--left {
  text-align: left;
}
.sk-trust-list li {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.sk-footer-logo {
  max-height: 36px;
  width: auto;
  margin-bottom: 0.75rem;
  filter: brightness(0) invert(1);
}
.sk-footer-social {
  display: flex;
  gap: 1rem;
}
.sk-footer-social a {
  color: #cbd5e1;
  text-decoration: none;
}
.sk-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: center;
}
.sk-text-link {
  color: var(--sk-color-primary);
  font-weight: 700;
  text-decoration: none;
}
.sk-text-link:hover {
  text-decoration: underline;
}
.sk-hero-actions--center {
  justify-content: center;
}
.sk-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: rgba(12, 15, 102, 0.08);
  color: var(--sk-color-primary);
}
.sk-badge--soon {
  background: #fef3c7;
  color: #92400e;
}
.sk-form {
  max-width: 100%;
  margin-inline: 0;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 1.5rem 1.5rem 1.25rem;
  box-shadow: 0 10px 30px rgba(12, 15, 102, 0.06);
}
.sk-form-hint {
  margin: -0.25rem 0 1.1rem;
  color: var(--sk-color-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}
.sk-form-grid {
  display: grid;
  gap: 0 1rem;
  grid-template-columns: 1fr;
}
.sk-form-field {
  margin: 0 0 0.9rem;
}
.sk-form-field--full {
  grid-column: 1 / -1;
}
.sk-form-fields label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: #374151;
}
.sk-optional {
  font-weight: 500;
  color: var(--sk-color-muted);
  font-size: 0.85em;
}
.sk-form-fields input:not([type="checkbox"]):not([type="radio"]),
.sk-form-fields select,
.sk-form-fields textarea {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  padding: 0.65rem 0.75rem;
  font: inherit;
  color: var(--sk-color-text);
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.sk-form-fields input:not([type="checkbox"]):not([type="radio"]):focus,
.sk-form-fields select:focus,
.sk-form-fields textarea:focus {
  outline: none;
  border-color: var(--sk-color-primary);
  box-shadow: 0 0 0 3px rgba(12, 15, 102, 0.12);
}
.sk-consent {
  margin: 0.35rem 0 1rem;
}
.sk-consent label {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0;
  font-weight: 500;
  font-size: 0.95rem;
  line-height: 1.45;
  color: #374151;
  cursor: pointer;
}
.sk-consent input[type="checkbox"] {
  width: 1.1rem;
  height: 1.1rem;
  min-width: 1.1rem;
  max-width: 1.1rem;
  margin: 0.15rem 0 0;
  padding: 0;
  flex-shrink: 0;
  border-radius: 4px;
  accent-color: var(--sk-color-primary);
  cursor: pointer;
}
.sk-form-actions {
  margin: 0.5rem 0 0;
}
/* Honeypot: fully hidden from sighted users (keep in DOM for bots / SR). */
.sk-hp,
.sk-form .sk-hp,
.elementor-field-group.sk-hp,
.elementor-field-type-text.sk-hp {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  max-height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.sk-hp input {
  width: 1px !important;
  max-width: 1px !important;
  min-width: 0 !important;
}
.sk-footer-heading--sub {
  margin-top: 1.25rem;
}
.sk-content .sk-form {
  margin-top: 1.25rem;
}
.sk-form-page-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}
.sk-form-aside-card {
  background: var(--sk-color-surface);
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 1.35rem 1.4rem;
}
.sk-aside-title {
  margin: 0 0 0.75rem;
  font-size: 1.2rem;
  color: var(--sk-color-primary);
}
.sk-aside-alt {
  margin: 1rem 0 0;
}
.sk-content-layout--story {
  max-width: 46rem;
  margin-inline: auto;
}
@media (min-width: 700px) {
  .sk-form-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 900px) {
  .sk-form-page-layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(16rem, 0.75fr);
    gap: 2.5rem;
  }
}
.sk-prose,
.sk-content {
  max-width: 100%;
}
.sk-content h2 {
  margin-top: 2.25rem;
  scroll-margin-top: 5rem;
}
.sk-content h2:first-child {
  margin-top: 0;
}
.sk-content details.sk-faq-item {
  margin-bottom: 0.65rem;
}
@media (min-width: 768px) {
  .sk-process {
    grid-template-columns: repeat(2, 1fr);
  }
  .sk-convert-inner:not(.sk-convert-inner--center) {
    grid-template-columns: 1.35fr 0.85fr;
  }
  .sk-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sk-card-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1025px) {
  .sk-process {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ===== v1.5.2 depth + team + E-E-A-T ===== */
.sk-eyebrow--on-dark {
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.75rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}
.sk-page-hero .sk-page-lead {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  max-width: 40rem;
}
.sk-team-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
.sk-team-grid--3 {
  max-width: 1100px;
  margin-inline: auto;
}
.sk-team-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(12, 15, 102, 0.06);
  display: flex;
  flex-direction: column;
}
.sk-team-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  background: #0c0f66;
}
.sk-team-body {
  padding: 1.15rem 1.25rem 1.35rem;
}
.sk-team-body h3 {
  margin: 0 0 0.25rem;
  color: var(--sk-color-primary);
  font-size: 1.15rem;
}
.sk-team-role {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--sk-color-muted);
}
.sk-team-body p:last-child {
  margin: 0;
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.55;
}
.sk-rail-img {
  margin-top: 1rem;
  border-radius: 12px;
  width: 100%;
  height: auto;
  display: block;
}
.sk-depth-img {
  border-radius: 16px;
  width: 100%;
  height: auto;
  box-shadow: 0 16px 40px rgba(12, 15, 102, 0.14);
}
.sk-visual-band {
  background: #fff;
}
.sk-trust-band .sk-icon-card {
  min-height: auto;
}
.sk-eeat-byline {
  margin-top: 1rem;
  padding: 1rem 1.15rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  max-width: 40rem;
}
.sk-eeat-byline p {
  margin: 0 0 0.4rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  line-height: 1.5;
}
.sk-eeat-byline p:last-child {
  margin-bottom: 0;
}
.sk-eeat-byline a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.sk-eeat-role {
  font-weight: 500;
  opacity: 0.9;
}
.sk-page--post .sk-content-layout {
  max-width: 46rem;
}
@media (min-width: 768px) {
  .sk-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sk-team-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1025px) {
  .sk-team-grid:not(.sk-team-grid--3) {
    grid-template-columns: repeat(3, 1fr);
  }
}
