/**
 * SmartSpace - Complete Vanilla CSS
 * Replaces ALL Tailwind utility classes with pure CSS.
 * Gutenberg-compatible: no conflicts with WordPress core styles.
 *
 * Design Tokens:
 *   Primary:    #0882a8
 *   Secondary:  #18c5e0
 *   Foreground: #0a0f1a
 *   Background: #ffffff
 *   Font:       Inter, system-ui, sans-serif
 *
 * Breakpoints:
 *   sm:  640px
 *   md:  768px
 *   lg:  1024px
 *   xl:  1280px
 */

/* ════════════════════════════════════════════
   RESET & BASE
   ════════════════════════════════════════════ */

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

/* Reset WordPress layout spacing injected by Gutenberg */
.wp-block-group.is-layout-flow > * + * {
  margin-block-start: 0;
}
.wp-block-group.is-layout-constrained > * + * {
  margin-block-start: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #0f172a;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

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

/* ════════════════════════════════════════════
   CSS CUSTOM PROPERTIES
   ════════════════════════════════════════════ */

:root {
  --ss-primary: #0882a8;
  --ss-primary-hover: #077294;
  --ss-secondary: #18c5e0;
  --ss-fg: #0a0f1a;
  --ss-bg: #ffffff;
  --ss-gray-50: #f8fafc;
  --ss-gray-100: #f1f5f9;
  --ss-gray-200: #e2e8f0;
  --ss-gray-300: #cbd5e1;
  --ss-gray-400: #94a3b8;
  --ss-gray-500: #64748b;
  --ss-gray-700: #334155;
  --ss-gray-900: #0f172a;
  --ss-container: 80rem; /* 1280px */
  --ss-transition: 0.3s ease;
}

/* ════════════════════════════════════════════
   LAYOUT
   ════════════════════════════════════════════ */

.ss-container {
  max-width: var(--ss-container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 1024px) {
  .ss-container { padding-left: 2rem; padding-right: 2rem; }
}

.ss-container-sm {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 1024px) {
  .ss-container-sm { padding-left: 2rem; padding-right: 2rem; }
}

.ss-container-md {
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 1024px) {
  .ss-container-md { padding-left: 2rem; padding-right: 2rem; }
}

.ss-container-lg {
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 1024px) {
  .ss-container-lg { padding-left: 2rem; padding-right: 2rem; }
}

.ss-section { position: relative; overflow: hidden; }
.ss-section-light { background: var(--ss-gray-50); }
.ss-section-white { background: #fff; }
.ss-section-dark { background: var(--ss-fg); }

.ss-section-pad {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (min-width: 1024px) {
  .ss-section-pad { padding-top: 7rem; padding-bottom: 7rem; }
}
.ss-section-pad-sm {
  padding-top: 2.5rem;
  padding-bottom: 5rem;
}
@media (min-width: 1024px) {
  .ss-section-pad-sm { padding-top: 3rem; padding-bottom: 7rem; }
}

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

/* ════════════════════════════════════════════
   GRID SYSTEM
   ════════════════════════════════════════════ */

.ss-grid { display: grid; gap: 1.25rem; }
.ss-grid-2 { grid-template-columns: 1fr; }
.ss-grid-3 { grid-template-columns: 1fr; }
.ss-grid-4 { grid-template-columns: 1fr; }
.ss-grid-6 { grid-template-columns: repeat(2, 1fr); }

@media (min-width: 640px) {
  .ss-grid-2 { grid-template-columns: repeat(2, 1fr); }
  .ss-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .ss-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .ss-grid-6 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .ss-grid-3 { grid-template-columns: repeat(3, 1fr); }
  .ss-grid-4 { grid-template-columns: repeat(4, 1fr); }
  .ss-grid-6 { grid-template-columns: repeat(6, 1fr); }
}

.ss-grid-2col { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) {
  .ss-grid-2col { grid-template-columns: repeat(2, 1fr); gap: 4rem; }
  .ss-grid-2col.ss-align-center { align-items: center; }
}

/* Kickstart benefits grid */
.ss-kickstart-grid { grid-template-columns: repeat(2, 1fr) !important; }
@media (min-width: 1024px) {
  .ss-kickstart-grid { grid-template-columns: repeat(4, 1fr) !important; }
}

/* Deploy 2-col layout */
.ss-deploy-grid { grid-template-columns: 1fr !important; }
@media (min-width: 1024px) {
  .ss-deploy-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

/* Checklist split layout */
.ss-checklist-split { grid-template-columns: 1fr !important; }
@media (min-width: 1024px) {
  .ss-checklist-split { grid-template-columns: 1fr 2fr !important; }
}
.ss-checklist-cols { grid-template-columns: 1fr !important; }
@media (min-width: 640px) {
  .ss-checklist-cols { grid-template-columns: repeat(2, 1fr) !important; gap: 1rem 2rem !important; }
}

.ss-grid-gap-sm { gap: 1rem; }
.ss-grid-gap-md { gap: 1.5rem; }
.ss-grid-gap-lg { gap: 2rem; }

/* ════════════════════════════════════════════
   FLEXBOX
   ════════════════════════════════════════════ */

.ss-flex { display: flex; }
.ss-flex-col { flex-direction: column; }
.ss-flex-wrap { flex-wrap: wrap; }
.ss-flex-center { align-items: center; justify-content: center; }
.ss-flex-between { justify-content: space-between; }
.ss-items-center { align-items: center; }
.ss-items-start { align-items: flex-start; }
.ss-justify-center { justify-content: center; }
.ss-justify-end { justify-content: flex-end; }
.ss-gap-1 { gap: 0.25rem; }
.ss-gap-2 { gap: 0.5rem; }
.ss-gap-3 { gap: 0.75rem; }
.ss-gap-4 { gap: 1rem; }
.ss-gap-6 { gap: 1.5rem; }
.ss-gap-8 { gap: 2rem; }
.ss-grow { flex-grow: 1; }
.ss-shrink-0 { flex-shrink: 0; }

/* ════════════════════════════════════════════
   TYPOGRAPHY
   ════════════════════════════════════════════ */

.ss-h1 {
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.06;
}
@media (min-width: 640px) { .ss-h1 { font-size: 3rem; } }
@media (min-width: 1024px) { .ss-h1 { font-size: 3.4rem; } }

.ss-h2 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.12;
}
@media (min-width: 640px) { .ss-h2 { font-size: 2.5rem; } }
@media (min-width: 1024px) { .ss-h2 { font-size: 2.75rem; } }

.ss-h2-lg {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
}
@media (min-width: 640px) { .ss-h2-lg { font-size: 2.5rem; } }
@media (min-width: 1024px) { .ss-h2-lg { font-size: 3.25rem; } }

.ss-h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.3;
}

.ss-h3-lg {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.ss-body {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ss-gray-500);
}

.ss-body-sm {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--ss-gray-500);
}

.ss-body-xs {
  font-size: 0.75rem;
  color: var(--ss-gray-500);
}

.ss-label {
  font-size: 0.8125rem;
  font-weight: 500;
}

.ss-label-xs {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ss-text-white { color: #fff; }
.ss-text-white-80 { color: rgba(255,255,255,0.8); }
.ss-text-white-70 { color: rgba(255,255,255,0.7); }
.ss-text-white-60 { color: rgba(255,255,255,0.6); }
.ss-text-white-50 { color: rgba(255,255,255,0.5); }
.ss-text-white-45 { color: rgba(255,255,255,0.45); }
.ss-text-white-30 { color: rgba(255,255,255,0.3); }
.ss-text-teal { color: var(--ss-secondary); }
.ss-text-primary { color: var(--ss-primary); }
.ss-text-dark { color: var(--ss-gray-900); }
.ss-text-muted { color: var(--ss-gray-500); }
.ss-text-slate-400 { color: var(--ss-gray-400); }

.ss-font-bold { font-weight: 700; }
.ss-font-semibold { font-weight: 600; }
.ss-font-medium { font-weight: 500; }
.ss-font-light { font-weight: 300; }

.ss-leading-relaxed { line-height: 1.625; }

.ss-max-w-prose { max-width: 36rem; }
.ss-max-w-xs { max-width: 20rem; }

.ss-sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ════════════════════════════════════════════
   BADGES & PILLS
   ════════════════════════════════════════════ */

.ss-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  padding: 0.375rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 500;
}

.ss-badge-teal {
  background: rgba(8,130,168,0.1);
  border: 1px solid rgba(8,130,168,0.3);
  color: var(--ss-secondary);
}

.ss-badge-teal-solid {
  background: var(--ss-primary);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.75rem;
}

.ss-badge-light {
  background: rgba(8,130,168,0.1);
  color: var(--ss-primary);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: none;
}

.ss-badge-white {
  background: #fff;
  border: 1px solid var(--ss-gray-200);
  color: var(--ss-gray-500);
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  font-size: 0.875rem;
}

.ss-badge-glass {
  background: rgba(8,130,168,0.3);
  border: 1px solid rgba(8,130,168,0.35);
  color: var(--ss-secondary);
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.125rem 0.625rem;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

/* ════════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════════ */

.ss-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.75rem;
  padding: 0.5rem 2rem;
  font-weight: 500;
  font-size: 0.875rem;
  border-radius: 0.5rem;
  transition: all var(--ss-transition);
  white-space: nowrap;
}

.ss-btn-primary {
  background: var(--ss-primary);
  color: #fff;
  border: 1px solid var(--ss-primary);
  box-shadow: 0 10px 15px -3px rgba(8,130,168,0.25);
}
.ss-btn-primary:hover { background: var(--ss-primary-hover); }

.ss-btn-secondary {
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.1);
}
.ss-btn-secondary:hover { background: rgba(255,255,255,0.1); color: #fff; }

.ss-btn-white {
  background: #fff;
  color: var(--ss-gray-900);
  border: 1px solid #fff;
}
.ss-btn-white:hover { background: var(--ss-gray-100); }

.ss-btn-outline {
  background: #fff;
  color: var(--ss-gray-900);
  border: 1px solid var(--ss-gray-200);
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.ss-btn-outline:hover { background: var(--ss-gray-50); }

.ss-btn-ghost {
  background: transparent;
  color: var(--ss-gray-900);
  border: 1px solid var(--ss-gray-200);
}
.ss-btn-ghost:hover { background: var(--ss-gray-50); }

/* Neutralize the wrapper div — all visual styling goes on .wp-block-button__link */
.wp-block-button.ss-btn {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

/* Cascade .ss-btn styles to the inner .wp-block-button__link (the visible element) */
.ss-btn .wp-block-button__link {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  height: 2.75rem;
  padding: 0.5rem 2rem !important;
  font-weight: 500;
  font-size: 0.875rem;
  border-radius: 0.5rem;
  transition: all var(--ss-transition);
  white-space: nowrap;
  text-decoration: none;
}
.ss-btn-primary .wp-block-button__link {
  background: var(--ss-primary) !important;
  color: #fff !important;
  border: 1px solid var(--ss-primary) !important;
  box-shadow: 0 10px 15px -3px rgba(8,130,168,0.25);
}
.ss-btn-primary:hover .wp-block-button__link { background: var(--ss-primary-hover) !important; }

.ss-btn-outline .wp-block-button__link {
  background: #fff !important;
  color: var(--ss-gray-900) !important;
  border: 1px solid var(--ss-gray-200) !important;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.ss-btn-outline:hover .wp-block-button__link { background: var(--ss-gray-50) !important; }

/* Dark section outline button variant */
.ss-section-dark .ss-btn-outline .wp-block-button__link {
  background: rgba(255,255,255,0.05) !important;
  color: white !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  box-shadow: none;
}
.ss-section-dark .ss-btn-outline:hover .wp-block-button__link {
  background: rgba(255,255,255,0.1) !important;
}

.ss-btn-white .wp-block-button__link {
  background: #fff !important;
  color: var(--ss-gray-900) !important;
  border: 1px solid #fff !important;
}
.ss-btn-white:hover .wp-block-button__link { background: var(--ss-gray-100) !important; }

/* Integration grid cards — vertically center text */
.ss-integration-grid .ss-card {
  display: flex !important;
  align-items: center;
  justify-content: center;
  min-height: 4rem;
}

.ss-btn-glow {
  box-shadow: 0 0 28px rgba(8,130,168,0.5);
}
.ss-btn-glow:hover { box-shadow: 0 0 36px rgba(8,130,168,0.65); }

.ss-btn-sm {
  height: 2.25rem;
  padding: 0 1.25rem;
  font-size: 0.8125rem;
}

.ss-btn-full { width: 100%; }

.ss-btn svg,
.ss-btn-icon { margin-left: 0.5rem; width: 1rem; height: 1rem; }
.ss-btn-icon-left { margin-left: 0; margin-right: 0.5rem; }

/* ════════════════════════════════════════════
   CARDS
   ════════════════════════════════════════════ */

.ss-card {
  position: relative;
  border-radius: 1rem;
  border: 1px solid rgba(226,232,240,0.6);
  background: #fff;
  padding: 1.75rem;
  transition: all var(--ss-transition);
}
.ss-card:hover {
  border-color: rgba(8,130,168,0.25);
  box-shadow: 0 4px 24px rgba(8,130,168,0.07);
}

/* Animated top border on hover */
.ss-card-accent::before {
  content: '';
  position: absolute;
  inset: 0;
  top: 0;
  height: 2px;
  border-radius: 1rem 1rem 0 0;
  background: linear-gradient(90deg, transparent, var(--ss-primary), transparent);
  transform: scaleX(0);
  transition: transform 0.5s ease;
  transform-origin: center;
}
.ss-card:hover .ss-card-accent::before,
.ss-card-accent:hover::before {
  transform: scaleX(1);
}

.ss-card-dark {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}
.ss-card-dark:hover {
  background: rgba(255,255,255,0.065);
  border-color: rgba(255,255,255,0.13);
}

.ss-card-light {
  background: var(--ss-gray-50);
  border-color: rgba(226,232,240,0.5);
}
.ss-card-light:hover {
  border-color: rgba(8,130,168,0.25);
  background: #f0f9fb;
}

/* Hide static top border — replaced by animated ::before on .ss-card-accent */
.ss-card-top-border { display: none !important; }

.ss-card-featured {
  border: 2px solid var(--ss-primary);
  box-shadow: 0 10px 25px rgba(8,130,168,0.1);
}

.ss-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  text-decoration: none;
}
.ss-card-link:hover { transform: translateY(-2px); }

/* ════════════════════════════════════════════
   ICON BOXES
   ════════════════════════════════════════════ */

.ss-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: rgba(8,130,168,0.1);
  color: var(--ss-primary);
  transition: all var(--ss-transition);
}
.ss-card:hover .ss-icon-box,
.ss-icon-box-hover:hover {
  background: var(--ss-primary);
  color: #fff;
  box-shadow: 0 0 20px rgba(8,130,168,0.3);
}

.ss-icon-box-sm {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
}

.ss-icon-box-lg {
  width: 3rem;
  height: 3rem;
}

/* Checklist check icons — strip the icon-box styling when inside flex rows */
.ss-flex.ss-items-start .ss-icon-box {
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  padding: 0;
  color: var(--ss-secondary);
}

.ss-icon-box-dark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: rgba(8,130,168,0.2);
  color: var(--ss-secondary);
}

.ss-icon-box-teal-text {
  background: rgba(24,197,224,0.15);
  color: var(--ss-secondary);
}

.ss-step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--ss-primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  box-shadow: 0 0 20px rgba(8,130,168,0.3);
  margin-bottom: 1.5rem;
}

.ss-step-connector {
  display: none;
  position: absolute;
  right: -0.75rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}
@media (min-width: 1024px) { .ss-step-connector { display: block; } }
@media (min-width: 1024px) { .ss-step-arrow { display: block !important; } }

.ss-step-connector-dot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(226,232,240,0.6);
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

/* ════════════════════════════════════════════
   TOP BANNER
   ════════════════════════════════════════════ */

.ss-top-banner {
  position: relative;
  background: var(--ss-fg);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 0.625rem 0;
}

.ss-top-banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  max-width: var(--ss-container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.ss-top-banner-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  background: rgba(8,130,168,0.15);
  padding: 0.125rem 0.625rem;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--ss-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ss-top-banner-text { color: rgba(255,255,255,0.6); font-size: 0.8125rem; }

.ss-top-banner-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ss-secondary);
  transition: color var(--ss-transition);
}
.ss-top-banner-link:hover { color: #fff; }

.ss-top-banner-close {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.3);
  transition: color var(--ss-transition);
}
.ss-top-banner-close:hover { color: rgba(255,255,255,0.6); }

/* ════════════════════════════════════════════
   HEADER / NAVIGATION
   ════════════════════════════════════════════ */

.ss-header {
  position: fixed;
  left: 0; right: 0;
  z-index: 50;
  top: 0.5rem;
  background: transparent;
  transition: all 0.5s ease;
  width: 100%;
}
.ss-header.scrolled {
  top: 0;
  background: rgba(255,255,255,0.95);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.ss-header-border {
  transition: border-color 0.5s ease;
  border-bottom: 1px solid transparent;
}
.ss-header.scrolled .ss-header-border {
  border-color: rgba(226,232,240,0.6);
}

.ss-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: var(--ss-container);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 5rem;
}
@media (min-width: 1024px) { .ss-nav { padding: 0 2rem; } }

.ss-logo {
  display: flex;
  align-items: center;
}

.ss-logo img {
  height: 2.25rem;
  width: auto;
  transition: all 0.5s ease;
  filter: brightness(0) invert(1);
}
.ss-header.scrolled .ss-logo img {
  filter: none;
}

.ss-nav-desktop { display: none; align-items: center; gap: 0; }
@media (min-width: 1024px) { .ss-nav-desktop { display: flex; } }
.ss-nav-desktop > * { flex-shrink: 0; }
.ss-nav-desktop .ss-nav-link { white-space: nowrap; }

.ss-nav-actions { display: flex; align-items: center; justify-content: flex-end; gap: 0.75rem; }

.ss-nav-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 500;
  transition: color var(--ss-transition);
  color: rgba(255,255,255,0.8);
}
.ss-nav-link:hover { color: #fff; }
.ss-header.scrolled .ss-nav-link { color: var(--ss-gray-700); }
.ss-header.scrolled .ss-nav-link:hover { color: var(--ss-gray-900); }

.ss-nav-cta {
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background: var(--ss-primary);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 500;
  height: 2.25rem;
  padding: 0 1.25rem;
  transition: background var(--ss-transition);
}
.ss-nav-cta:hover { background: var(--ss-primary-hover); }
@media (min-width: 1024px) { .ss-nav-cta { display: inline-flex; } }

/* Dropdown */
.ss-dropdown { position: relative; }

.ss-dropdown-panel {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  top: 100%;
  padding-top: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  z-index: 50;
}
.ss-dropdown-panel.visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.ss-dropdown-menu {
  width: 18rem;
  border-radius: 0.75rem;
  background: #fff;
  border: 1px solid rgba(226,232,240,0.8);
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
  padding: 0.5rem;
}

.ss-dropdown-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  border-radius: 0.5rem;
  padding: 0.625rem 0.75rem;
  transition: background var(--ss-transition);
}
.ss-dropdown-item:hover { background: var(--ss-gray-50); }

/* Stretched link inside dropdown items */
.ss-dropdown-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  text-decoration: none;
  color: transparent;
  cursor: pointer;
}

.ss-dropdown-icon {
  margin-top: 0.125rem;
  display: flex;
  width: 2rem; height: 2rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background: var(--ss-gray-100);
  transition: all var(--ss-transition);
}
.ss-dropdown-item:hover .ss-dropdown-icon {
  background: rgba(8,130,168,0.1);
}
.ss-dropdown-icon svg {
  width: 1rem; height: 1rem;
  color: var(--ss-gray-400);
  transition: color var(--ss-transition);
}
.ss-dropdown-item:hover .ss-dropdown-icon svg {
  color: var(--ss-primary);
}

.ss-dropdown-title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ss-gray-900);
  margin: 0;
  padding: 0;
}
h4.ss-dropdown-title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ss-gray-900);
  margin: 0;
  padding: 0;
  line-height: 1.4;
}
.ss-dropdown-desc {
  font-size: 0.75rem;
  color: var(--ss-gray-500);
  margin-top: 0.125rem;
}

/* Fix WordPress layout spacing inside dropdown items */
.ss-dropdown-item.wp-block-group { gap: 0.75rem; }
.ss-dropdown-item .wp-block-group > * + * { margin-top: 0; }
.ss-dropdown-menu.wp-block-group > * + * { margin-top: 0; }
.ss-dropdown-panel.wp-block-group > * + * { margin-top: 0; }
.ss-dropdown-icon.wp-block-group {
  margin-top: 0.125rem;
  padding: 0;
  min-height: auto;
}

.ss-chevron {
  width: 0.875rem; height: 0.875rem;
  opacity: 0.5;
  transition: transform 0.2s ease;
}

/* WordPress button overrides inside nav */
.ss-nav-desktop .wp-block-buttons,
.ss-nav-desktop .wp-block-button {
  display: contents;
}
.ss-nav-desktop .wp-block-button__link.ss-nav-link {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0.5rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  border-radius: 0;
  line-height: inherit;
}
.ss-header.scrolled .wp-block-button__link.ss-nav-link {
  color: var(--ss-gray-700);
}
.ss-header.scrolled .wp-block-button__link.ss-nav-link:hover {
  color: var(--ss-gray-900);
}
.ss-nav-desktop .wp-block-button__link.ss-nav-link:hover {
  color: #fff;
  background: none !important;
}
.ss-header.scrolled .ss-nav-desktop .wp-block-button__link.ss-nav-link:hover {
  color: var(--ss-gray-900);
}

/* Chevron arrow for dropdown triggers */
.ss-dropdown .wp-block-button__link.ss-nav-link::after {
  content: '';
  display: inline-block;
  width: 0.875rem;
  height: 0.875rem;
  margin-left: 0.125rem;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='currentColor' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  filter: brightness(0) invert(1);
  transition: transform 0.2s ease;
}
.ss-header.scrolled .ss-dropdown .wp-block-button__link.ss-nav-link::after {
  filter: brightness(0) invert(0.3);
}

/* WordPress CTA button overrides in nav */
.ss-nav-actions .wp-block-buttons,
.ss-nav-actions .wp-block-button {
  display: contents;
}
.ss-nav-actions .wp-block-button__link.ss-nav-cta {
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background: var(--ss-primary) !important;
  color: #fff !important;
  font-size: 0.8125rem;
  font-weight: 500;
  height: 2.25rem;
  padding: 0 1.25rem;
  transition: background var(--ss-transition);
  border: none !important;
  box-shadow: none !important;
  width: auto !important;
  max-width: max-content;
  gap: 0.375rem;
}
.ss-nav-actions .wp-block-button__link.ss-nav-cta::after {
  content: '';
  display: inline-block;
  width: 0.875rem;
  height: 0.875rem;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12h14M12 5l7 7-7 7'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
}
.ss-nav-actions .wp-block-button__link.ss-nav-cta:hover {
  background: var(--ss-primary-hover) !important;
}
/* Override WordPress has-background classes on nav CTA */
.ss-nav-actions .wp-block-button__link.has-background {
  background: var(--ss-primary) !important;
}
.ss-nav-actions .wp-block-button__link.has-background:hover {
  background: var(--ss-primary-hover) !important;
}
@media (min-width: 1024px) {
  .ss-nav-actions .wp-block-button__link.ss-nav-cta { display: inline-flex; }
}

/* Mobile menu */
.ss-mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem; height: 2.5rem;
  border-radius: 0.5rem;
  color: #fff;
}
.ss-header.scrolled .ss-mobile-toggle { color: var(--ss-gray-900); }
@media (min-width: 1024px) { .ss-mobile-toggle { display: none; } }

.ss-mobile-menu {
  display: none;
  background: #fff;
  border-top: 1px solid var(--ss-gray-200);
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}
@media (min-width: 1024px) { .ss-mobile-menu { display: none !important; } }
.ss-mobile-menu.open { display: block; }

.ss-mobile-menu-inner { padding: 1rem 1.5rem; }

.ss-mobile-group { padding: 0.5rem 0; }
.ss-mobile-group-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ss-gray-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}
.ss-mobile-link {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: var(--ss-gray-700);
  border-radius: 0.5rem;
  transition: background var(--ss-transition);
}
.ss-mobile-link:hover { background: var(--ss-gray-50); }

.ss-mobile-cta {
  display: block;
  width: 100%;
  text-align: center;
  border-radius: 0.5rem;
  background: var(--ss-primary);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.625rem;
  margin-top: 1rem;
  border-top: 1px solid var(--ss-gray-200);
  padding-top: 1.5rem;
}

/* ════════════════════════════════════════════
   HERO SECTION
   ════════════════════════════════════════════ */

.ss-hero {
  position: relative;
  overflow: hidden;
  background: var(--ss-fg);
  padding: 7rem 0 6rem;
}
@media (min-width: 1024px) {
  .ss-hero { padding: 8rem 0 7rem; }
}

.ss-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .ss-hero-grid { grid-template-columns: repeat(2, 1fr); gap: 4rem; }
}

.ss-hero-copy {
  transition: all 0.7s ease;
  /* CSS-only fallback: animate hero in even if JS hasn't loaded yet */
  animation: ss-hero-reveal 0.7s ease 0.3s forwards;
}
.ss-hero-copy .ss-badge {
  margin-bottom: 1.75rem;
}
@keyframes ss-hero-reveal {
  to { opacity: 1; transform: translateY(0); }
}
.ss-hero-sub { max-width: 30rem; }

.ss-hero-visual { position: relative; }

.ss-hero-image-wrap {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.6);
}

.ss-hero-trusted { margin-top: 3rem; }
.ss-hero-trusted-label {
  text-transform: uppercase;
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.3);
  font-weight: 500;
}
.ss-hero-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  margin-top: 1.25rem;
}
.ss-hero-logos span {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.3);
  font-weight: 500;
  letter-spacing: 0.025em;
}

/* Hero notification cards */
.ss-hero-card {
  display: none;
  position: absolute;
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1),
              transform 0.8s cubic-bezier(0.16,1,0.3,1),
              filter 0.7s cubic-bezier(0.16,1,0.3,1);
}
@media (min-width: 1024px) { .ss-hero-card { display: block; } }
.ss-hero-card-left {
  left: -28px; top: 20px;
  transform: translateX(-14px) translateY(10px) scale(0.96);
  filter: blur(4px);
}
.ss-hero-card-right {
  right: -28px; bottom: 28px;
  transform: translateX(14px) translateY(-10px) scale(0.96);
  filter: blur(4px);
}

/* ════════════════════════════════════════════
   DECORATIVE ELEMENTS (Glows, Grids, Separators)
   ════════════════════════════════════════════ */

.ss-glow {
  pointer-events: none;
  position: absolute;
  border-radius: 50%;
}
.ss-glow-teal { background: radial-gradient(circle, #0882a8 0%, transparent 70%); }
.ss-glow-teal-linear { background: linear-gradient(135deg, #18c5e0, #0882a8); }

.ss-grid-texture {
  pointer-events: none;
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image:
    linear-gradient(rgba(255,255,255,0.6) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.6) 1px, transparent 1px);
  background-size: 48px 48px;
}

.ss-dot-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.ss-dot-grid-teal {
  opacity: 0.022;
  background-image: radial-gradient(circle, #0882a8 1px, transparent 1px);
  background-size: 30px 30px;
}
.ss-dot-grid-white {
  opacity: 0.03;
  background-image: radial-gradient(circle, rgba(255,255,255,0.6) 1px, transparent 1px);
  background-size: 28px 28px;
}

.ss-separator {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
}
.ss-separator-top { top: 0; }
.ss-separator-bottom { bottom: 0; }
.ss-separator-gray {
  background: linear-gradient(90deg, transparent, var(--ss-gray-200), transparent);
}
.ss-separator-teal {
  background: linear-gradient(90deg, transparent, rgba(8,130,168,0.5), transparent);
}
.ss-separator-white {
  background: rgba(255,255,255,0.1);
}
.ss-separator-dark {
  background: linear-gradient(90deg, transparent, rgba(15,23,42,0.1), transparent);
}

.ss-image-glow {
  position: absolute;
  inset: 1rem;
  border-radius: 1rem;
  filter: blur(16px);
  opacity: 0.2;
  background: linear-gradient(135deg, #18c5e0, #0882a8);
  pointer-events: none;
}

.ss-image-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* ════════════════════════════════════════════
   CUSTOMER STORY CARDS
   ════════════════════════════════════════════ */

.ss-story-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  transition: all var(--ss-transition);
  text-decoration: none;
}
.ss-story-card:hover {
  background: rgba(255,255,255,0.065);
  border-color: rgba(255,255,255,0.13);
  transform: translateY(-2px);
}

.ss-story-image {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  aspect-ratio: 3/4;
  max-height: 320px;
}
.ss-story-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
  filter: grayscale(20%) brightness(0.88) contrast(1.05);
}
.ss-story-card:hover .ss-story-image img { transform: scale(1.03); }

.ss-story-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,15,22,0.9), rgba(8,15,22,0.2), transparent);
}

.ss-story-tag { position: absolute; top: 1rem; left: 1rem; }
.ss-story-name-wrap { position: absolute; bottom: 1rem; left: 1.25rem; }
.ss-story-name { font-size: 0.9375rem; font-weight: 600; color: #fff; line-height: 1.3; }
.ss-story-role { font-size: 0.71875rem; color: rgba(255,255,255,0.45); margin-top: 0.125rem; }

.ss-story-body { display: flex; flex-direction: column; flex-grow: 1; padding: 1.5rem; }
.ss-story-context {
  font-size: 0.71875rem;
  font-weight: 500;
  color: rgba(24,197,224,0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.4;
}
.ss-story-quote {
  margin-top: 0.875rem;
  flex-grow: 1;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  font-weight: 300;
}
.ss-story-footer {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem;
}
.ss-story-outcome { font-size: 0.65625rem; color: rgba(255,255,255,0.5); line-height: 1.6; }
.ss-story-cta {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.71875rem;
  font-weight: 500;
  color: rgba(24,197,224,0.5);
  white-space: nowrap;
  transition: color var(--ss-transition);
}
.ss-story-card:hover .ss-story-cta { color: var(--ss-secondary); }

/* ════════════════════════════════════════════
   VIEW-ALL PILL LINK
   ════════════════════════════════════════════ */

.ss-pill-link {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  padding: 0.75rem 1.5rem;
  font-size: 0.84375rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  transition: all var(--ss-transition);
}
.ss-pill-link:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(8,130,168,0.5);
  color: #fff;
}
.ss-pill-link-icon {
  display: flex;
  width: 1.5rem; height: 1.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(8,130,168,0.2);
  transition: background var(--ss-transition);
}
.ss-pill-link:hover .ss-pill-link-icon { background: rgba(8,130,168,0.35); }

/* ════════════════════════════════════════════
   DEPLOYMENT / CHECKLIST PANEL
   ════════════════════════════════════════════ */

.ss-checklist-panel {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  border: 1px solid rgba(226,232,240,0.4);
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .ss-checklist-panel { grid-template-columns: 1fr 2fr; }
}

.ss-checklist-teal {
  position: relative;
  background: var(--ss-primary);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.ss-checklist-teal-bg {
  position: absolute; inset: 0; opacity: 0.1;
  background-image: radial-gradient(circle, rgba(255,255,255,0.4) 1px, transparent 1px);
  background-size: 20px 20px;
}
.ss-checklist-teal h3 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.3;
  position: relative;
}
.ss-checklist-teal p {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  position: relative;
}

.ss-checklist-items {
  background: #fff;
  padding: 2.5rem 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .ss-checklist-items { grid-template-columns: repeat(2, 1fr); column-gap: 2rem; }
}

.ss-check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.ss-check-icon {
  margin-top: 0.125rem;
  display: flex;
  width: 1.25rem; height: 1.25rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(8,130,168,0.1);
  color: var(--ss-primary);
}
.ss-check-text {
  font-size: 0.875rem;
  color: var(--ss-gray-900);
  font-weight: 500;
  line-height: 1.5;
}

/* ════════════════════════════════════════════
   DEPLOY BENEFIT ITEMS
   ════════════════════════════════════════════ */

.ss-benefit-item { display: flex; gap: 1rem; }
.ss-benefit-number {
  display: flex;
  width: 2rem; height: 2rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--ss-primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 0 16px rgba(8,130,168,0.3);
}
.ss-benefit-title { font-weight: 600; color: var(--ss-gray-900); }
.ss-benefit-desc { margin-top: 0.25rem; font-size: 0.875rem; color: var(--ss-gray-500); line-height: 1.6; }

/* ════════════════════════════════════════════
   CALLOUT BOX (Kickstart "Why" box)
   ════════════════════════════════════════════ */

.ss-callout {
  border-radius: 1rem;
  border: 1px solid rgba(8,130,168,0.25);
  background: rgba(8,130,168,0.15);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  padding: 1.25rem 1.5rem;
  text-align: center;
}
.ss-callout p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}
.ss-callout strong { font-weight: 600; color: var(--ss-secondary); }

/* ════════════════════════════════════════════
   WORDPRESS BUTTON GROUP CENTERING
   ════════════════════════════════════════════ */

/* Ensure wp-block-buttons uses flex layout for gap to work */
.ss-section .wp-block-buttons {
  display: flex !important;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Force centering on wp-block-buttons */
.wp-block-buttons.ss-buttons-center,
.wp-block-buttons[style*="justify-content:center"],
.wp-block-buttons[style*="justify-content: center"] {
  display: flex !important;
  justify-content: center !important;
}

/* Ensure WordPress .ss-btn wrappers collapse */
.wp-block-buttons .wp-block-button.ss-btn {
  display: inline-flex !important;
  width: auto !important;
}
.wp-block-buttons .wp-block-button.ss-btn .wp-block-button__link {
  width: auto !important;
}

/* ════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════ */

.ss-footer {
  border-top: 1px solid var(--ss-gray-200);
  background: #fff;
}
/* Reset WordPress wrapper spacing inside footer — targeted resets only */
.ss-footer .wp-block-image,
.ss-footer figure.wp-block-image,
.ss-footer .wp-block-image img { margin: 0; }
.ss-footer .wp-block-heading { margin: 0; }
/* Reset generic wp-block-group spacing but preserve named footer sections */
.ss-footer-grid .wp-block-group { margin: 0; padding: 0; }
.ss-footer-brand .wp-block-group { margin: 0; padding: 0; }
/* List reset for footer */
.ss-footer-links ul { padding: 0; list-style: none; }

/* Social link button resets inside footer */
.ss-social-links .wp-block-buttons,
.ss-social-links .wp-block-button { display: contents; }
.ss-social-links .wp-block-button__link.ss-social-link {
  display: flex !important;
  align-items: center;
  justify-content: center;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  box-shadow: none !important;
  color: var(--ss-gray-400);
  transition: color var(--ss-transition);
}
.ss-social-links .wp-block-button__link.ss-social-link:hover {
  color: var(--ss-gray-500);
}
.ss-footer-inner {
  max-width: var(--ss-container);
  margin: 0 auto;
  padding: 2.5rem 1.5rem 2.5rem !important;
}
@media (min-width: 1024px) {
  .ss-footer-inner { padding: 3.5rem 2rem !important; }
}

.ss-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 1280px) {
  .ss-footer-grid { grid-template-columns: 1fr 2fr; gap: 1.5rem; }
}

.ss-footer-brand { display: flex; flex-direction: column; gap: 1rem; }
.ss-footer-brand img { height: 2rem; width: auto; }
.ss-footer-brand p { font-size: 0.875rem; color: var(--ss-gray-500); line-height: 1.6; max-width: 20rem; }

.ss-footer-azure {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--ss-gray-500);
}

.ss-footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (min-width: 768px) { .ss-footer-links { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1280px) { .ss-footer-links { margin-top: 0; } }

.ss-footer-links h3,
.ss-footer-links .ss-footer-links-title { font-size: 0.875rem; font-weight: 600; color: var(--ss-gray-900); margin: 0; padding: 0; }
.ss-footer-links ul { margin-top: 0.75rem !important; display: flex; flex-direction: column; gap: 0.625rem; }
.ss-footer-links a {
  font-size: 0.875rem;
  color: var(--ss-gray-500);
  transition: color var(--ss-transition);
  line-height: 1.2;
}
.ss-footer-links a:hover { color: var(--ss-gray-700); }

.ss-footer-bottom {
  margin-top: 2rem !important;
  border-top: 1px solid var(--ss-gray-200);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 640px) {
  .ss-footer-bottom { flex-direction: row; justify-content: space-between; }
}
.ss-footer-bottom p { font-size: 0.875rem; color: var(--ss-gray-500); }

.ss-social-links { display: flex; align-items: center; gap: 1.5rem; }
.ss-social-links a {
  color: var(--ss-gray-400);
  transition: color var(--ss-transition);
}
.ss-social-links a:hover { color: var(--ss-gray-500); }
.ss-social-links svg { width: 1rem; height: 1rem; }

/* ════════════════════════════════════════════
   STATS GRID
   ════════════════════════════════════════════ */

.ss-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (min-width: 1024px) { .ss-stats-grid { grid-template-columns: repeat(4, 1fr); } }

.ss-stat-card {
  border-radius: 1rem;
  border: 1px solid var(--ss-gray-200);
  background: #fff;
  padding: 2rem;
  text-align: center;
}
.ss-stat-number {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--ss-primary);
  margin-bottom: 0.5rem;
}
.ss-stat-label { font-size: 0.875rem; color: var(--ss-gray-500); }

/* ════════════════════════════════════════════
   FORM STYLES
   ════════════════════════════════════════════ */

.ss-form-card {
  border-radius: 1rem;
  border: 1px solid var(--ss-gray-200);
  background: #fff;
  padding: 2rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.ss-form-group { margin-bottom: 1.25rem; }
.ss-form-label {
  display: block;
  margin-bottom: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ss-fg);
}
.ss-form-input,
.ss-form-textarea {
  width: 100%;
  border-radius: 0.5rem;
  border: 1px solid var(--ss-gray-200);
  background: #fff;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: var(--ss-fg);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}
.ss-form-input::placeholder,
.ss-form-textarea::placeholder { color: var(--ss-gray-400); }
.ss-form-input:focus,
.ss-form-textarea:focus {
  border-color: var(--ss-primary);
  box-shadow: 0 0 0 3px rgba(8,130,168,0.15);
}

/* ════════════════════════════════════════════
   PRICING TABLE
   ════════════════════════════════════════════ */

.ss-pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .ss-pricing-grid { grid-template-columns: repeat(3, 1fr); } }

.ss-price-card {
  border-radius: 1rem;
  border: 1px solid var(--ss-gray-200);
  background: #fff;
  padding: 2rem;
  display: flex;
  flex-direction: column;
}
.ss-price-card-featured {
  border: 2px solid var(--ss-primary);
  box-shadow: 0 10px 25px rgba(8,130,168,0.1);
  position: relative;
}
.ss-price-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.875rem;
  border-radius: 9999px;
  background: var(--ss-primary);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.ss-price-name { font-size: 1rem; font-weight: 600; color: var(--ss-primary); margin-bottom: 0.5rem; }
.ss-price-desc { font-size: 0.875rem; color: var(--ss-gray-500); margin-bottom: 1.5rem; }
.ss-price-amount { font-size: 2.25rem; font-weight: 700; color: var(--ss-fg); }
.ss-price-period { font-size: 0.875rem; color: var(--ss-gray-500); }

.ss-price-features {
  border-top: 1px solid var(--ss-gray-200);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.ss-price-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.ss-price-feature svg { width: 1.25rem; height: 1.25rem; color: var(--ss-primary); flex-shrink: 0; }
.ss-price-feature span { font-size: 0.875rem; color: var(--ss-gray-500); }

/* Comparison table */
.ss-comparison-table { width: 100%; overflow-x: auto; }
.ss-comparison-table th {
  text-align: left;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ss-fg);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--ss-gray-200);
}
.ss-comparison-table td {
  padding: 1rem 0;
  font-size: 0.875rem;
  color: var(--ss-gray-500);
  border-bottom: 1px solid rgba(226,232,240,0.5);
}
.ss-comparison-table td svg { width: 1.25rem; height: 1.25rem; color: var(--ss-primary); }
.ss-comparison-dash { color: var(--ss-gray-400); }

/* FAQ */
.ss-faq-item {
  border-radius: 1rem;
  border: 1px solid var(--ss-gray-200);
  background: #fff;
  overflow: hidden;
  margin-bottom: 1rem;
}
.ss-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ss-fg);
  transition: color var(--ss-transition);
  list-style: none;
}
.ss-faq-item summary::-webkit-details-marker { display: none; }
.ss-faq-item summary:hover { color: var(--ss-primary); }
.ss-faq-item summary svg {
  width: 1.25rem; height: 1.25rem;
  color: var(--ss-gray-500);
  transition: transform 0.2s ease;
}
.ss-faq-item[open] summary svg { transform: rotate(180deg); }
.ss-faq-answer {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.875rem;
  color: var(--ss-gray-500);
  line-height: 1.6;
}

/* ════════════════════════════════════════════
   BULLET/DOT LISTS
   ════════════════════════════════════════════ */

.ss-dot-list { display: flex; flex-direction: column; gap: 0.75rem; }
.ss-dot-item { display: flex; gap: 0.75rem; align-items: flex-start; }
.ss-dot {
  width: 0.375rem; height: 0.375rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--ss-primary);
  margin-top: 0.5rem;
}
.ss-dot-text { font-size: 0.875rem; color: var(--ss-gray-500); }

/* ════════════════════════════════════════════
   ANIMATIONS
   ════════════════════════════════════════════ */

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(1rem); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes ping {
  75%, 100% { transform: scale(2); opacity: 0; }
}

.ss-observe-fade {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1),
              transform 0.7s cubic-bezier(0.16,1,0.3,1);
  will-change: opacity, transform;
}
.ss-observe-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero entrance animations */
.ss-fade-entry {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.ss-fade-entry.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Notification card styles (from main.css) */
.notification-card {
  border-radius: 0.75rem;
  border: 1px solid rgba(255,255,255,0.25);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
  padding: 1rem;
  width: 18rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
  color: #fff;
}
.notification-card-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.notification-dot {
  position: relative;
  width: 0.5rem; height: 0.5rem;
  border-radius: 50%;
  background: var(--ss-secondary);
}
.notification-dot::after {
  content: '';
  position: absolute; width: 100%; height: 100%;
  border-radius: 50%;
  background: var(--ss-secondary);
  animation: ping 2s cubic-bezier(0,0,0.2,1) infinite;
}
.notification-title { font-size: 0.875rem; font-weight: 600; }
.notification-text { font-size: 0.75rem; color: rgba(255,255,255,0.7); }

/* ════════════════════════════════════════════
   UTILITY HELPERS
   ════════════════════════════════════════════ */

.ss-relative { position: relative; }
.ss-z-10 { position: relative; z-index: 10; }
.ss-hidden { display: none; }
.ss-overflow-x { overflow-x: auto; }
.ss-mb-2 { margin-bottom: 0.5rem; }
.ss-mb-4 { margin-bottom: 1rem; }
.ss-mb-6 { margin-bottom: 1.5rem; }
.ss-mb-8 { margin-bottom: 2rem; }
.ss-mb-12 { margin-bottom: 3rem; }
.ss-mb-16 { margin-bottom: 4rem; }
.ss-mx-auto { margin-left: auto; margin-right: auto; }
.ss-mt-4 { margin-top: 1rem; }
.ss-mt-5 { margin-top: 1.25rem; }
.ss-mt-6 { margin-top: 1.5rem; }
.ss-mt-8 { margin-top: 2rem; }
.ss-mt-9 { margin-top: 2.25rem; }
.ss-mt-12 { margin-top: 3rem; }
.ss-mt-14 { margin-top: 3.5rem; }
.ss-mt-16 { margin-top: 4rem; }
.ss-pt-4 { padding-top: 1rem; }
.ss-space-y-6 > * + * { margin-top: 1.5rem; }
.ss-space-y-8 > * + * { margin-top: 2rem; }

/* Image effects */
.ss-img-shadow {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(226,232,240,0.5);
  box-shadow: 0 24px 64px rgba(0,0,0,0.07);
}
.ss-img-teal-bar {
  position: absolute; left: 0; right: 0; top: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(8,130,168,0.5), transparent);
}
.ss-img-glow-below {
  position: absolute;
  left: 1.5rem; right: 1.5rem; bottom: -1rem;
  height: 5rem;
  background: rgba(8,130,168,0.1);
  filter: blur(16px);
  border-radius: 50%;
}

/* ════════════════════════════════════════════
   PLACEHOLDER / DIAGRAM BOXES
   ════════════════════════════════════════════ */

.ss-placeholder {
  aspect-ratio: 16/9;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ss-gray-100);
  color: var(--ss-gray-400);
}

/* ════════════════════════════════════════════
   CTA SECTIONS (dark / bottom)
   ════════════════════════════════════════════ */

.ss-cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 640px) {
  .ss-cta-buttons { flex-direction: row; justify-content: center; }
}

/* ════════════════════════════════════════════
   TABLE ON PRICING (STANDARD VS CUSTOM)
   ════════════════════════════════════════════ */

.ss-vs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) { .ss-vs-grid { grid-template-columns: repeat(2, 1fr); } }
/**
 * Smartspace WordPress Theme - Main Stylesheet (Minimal)
 *
 * This file contains ONLY custom styles that Tailwind CDN doesn't provide.
 * All Tailwind utility classes (text-*, font-*, spacing, colors, etc.) are
 * provided by the Tailwind CDN and should NOT be duplicated here.
 *
 * Design System:
 * - Typography: Inter font (400, 500, 600, 700)
 * - Primary: #0882a8 (teal)
 * - Secondary: #18c5e0 (lighter teal)
 * - Foreground: #0a0f1a (dark)
 * - Background: #ffffff (white)
 */

/* ========================================
   CSS CUSTOM PROPERTIES (Design Tokens)
   ======================================== */

:root {
  --color-primary: #0882a8;
  --color-primary-light: #18c5e0;
  --color-accent: #0882a8;
  --color-accent-light: #18c5e0;
  --color-foreground: #0a0f1a;
  --color-background: #ffffff;
  --color-border: rgba(255, 255, 255, 0.1);
  --color-muted-foreground: rgba(255, 255, 255, 0.5);
  --transition-base: 0.2s ease;
  --transition-in: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-out: 0.1s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   SMOOTH SCROLL BEHAVIOR
   ======================================== */

html {
  scroll-behavior: smooth;
}

/* ========================================
   KEYFRAME ANIMATIONS
   ======================================== */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes ping {
  75%,
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes pulse {
  50% {
    opacity: 0.5;
  }
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* ========================================
   SCROLL-TRIGGERED FADE ANIMATIONS
   ======================================== */

.observe-fade {
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--delay, 0ms);
  will-change: opacity, transform;
}

/* ========================================
   ANIMATION UTILITY CLASSES
   ======================================== */

.fade-in {
  animation: fadeIn 0.6s ease-out forwards;
  opacity: 0;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
  animation: none;
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
  animation: none;
}

.animate-ping {
  animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.delay-100 {
  animation-delay: 100ms;
}

.delay-200 {
  animation-delay: 200ms;
}

.delay-300 {
  animation-delay: 300ms;
}

.delay-400 {
  animation-delay: 400ms;
}

/* ========================================
   GLASS MORPHISM EFFECTS
   ======================================== */

.glass-card {
  border-radius: 0.75rem;
  border: 1px solid var(--color-border);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
}

.glass-card-white {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

/* ========================================
   NOTIFICATION CARD STYLES
   ======================================== */

.notification-card {
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  width: 18rem;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  color: #ffffff;
}

.notification-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.notification-dot {
  position: relative;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--color-accent-light);
}

.notification-dot::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--color-accent-light);
  animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.notification-title {
  font-size: 0.875rem;
  font-weight: 600;
}

.notification-text {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   DROPDOWN/NAVIGATION STYLES
   ======================================== */

.nav-link-with-dropdown {
  position: relative;
}

.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  padding: 0.375rem;
  min-width: 12rem;
  z-index: 100;
  margin-top: 0.5rem;
}

.nav-link-with-dropdown:hover .nav-dropdown {
  display: block;
}

.nav-dropdown-item {
  display: block;
  padding: 0.75rem 1rem;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 0.875rem;
  border-radius: 0.5rem;
  transition: background-color var(--transition-base);
}

.nav-dropdown-item:hover {
  background-color: #f5f5f5;
}

/* ========================================
   SITE HEADER DROPDOWN
   ======================================== */

.site-header__dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  padding: 0.5rem;
  min-width: 14rem;
  z-index: 100;
  margin-top: 0.5rem;
}

.site-header__nav-item:hover .site-header__dropdown {
  display: block;
}

.site-header__dropdown-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-header__dropdown-item {
  display: flex;
  flex-direction: column;
  padding: 0.5rem 0.75rem;
  text-decoration: none;
  border-radius: 0.375rem;
  transition: background-color var(--transition-base);
}

.site-header__dropdown-item:hover {
  background-color: #f5f5f5;
}

.site-header__dropdown-icon {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.5rem;
}

.site-header__dropdown-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a1a1a;
}

.site-header__dropdown-desc {
  font-size: 0.75rem;
  color: #6b7280;
}

/* ========================================
   ACCESSIBILITY
   ======================================== */

/* ========================================
   BLOCK VALIDATION FIX: CSS Utilities
   ======================================== */
/*
   These CSS classes replace inline styles that were removed from block wrapper
   elements during Gutenberg block validation fixes. They provide layout,
   positioning, and animation styles that were previously applied inline.
*/

/* Section header centering and max-width */
.ss-section-header {
  text-align: center;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.ss-section-header-dark {
  text-align: center;
  margin-bottom: 3rem;
}

/* Hero animation initial states (used by JS for entrance animations) */
.ss-hero-sub {
  opacity: 0;
  transform: translateY(1rem);
}

.ss-hero-ctas {
  opacity: 0;
  transform: translateY(1rem);
}

.ss-hero-trusted {
  opacity: 0;
  transform: translateY(1rem);
}

/* Hero image styling */
.ss-hero-image {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.6);
}

/* Deploy benefits layout */
.ss-deploy-benefits {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ss-deploy-benefit {
  display: flex;
  gap: 1rem;
}

/* Kickstart benefit card styling (dark themed) */
.ss-kickstart-card {
  position: relative;
  border-radius: 0.75rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem;
  text-align: center;
  transition: all 0.3s;
}

/* Staggered animation delays for card reveal sequences */
/* Feature cards: 120ms, 200ms, 280ms, 360ms */
.ss-card.ss-observe-fade:nth-child(1) {
  transition-delay: 120ms;
}

.ss-card.ss-observe-fade:nth-child(2) {
  transition-delay: 200ms;
}

.ss-card.ss-observe-fade:nth-child(3) {
  transition-delay: 280ms;
}

.ss-card.ss-observe-fade:nth-child(4) {
  transition-delay: 360ms;
}

.ss-card.ss-observe-fade:nth-child(5) {
  transition-delay: 440ms;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
