/* =========================================================
   WEBCONNECT PREMIUM LAYER
   Flagship polish layered over the base design system.
   Load AFTER all page CSS + responsive so it always wins.
   ========================================================= */

:root {
  --wc-glow: rgba(56, 58, 231, 0.55);
  --wc-glow-accent: rgba(14, 165, 233, 0.5);
  --wc-grad: linear-gradient(135deg, #383ae7, #0ea5e9 55%, #22d3ee);
  --wc-grad-soft: linear-gradient(135deg, #eef2ff, #e0f2fe);
  --wc-ring: 0 0 0 4px rgba(56, 58, 231, 0.16);
}

::selection {
  background: #383ae7;
  color: #fff;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

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

:focus-visible {
  outline: 3px solid #22d3ee;
  outline-offset: 3px;
  box-shadow: var(--wc-ring);
  border-radius: 10px;
}

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

@media (forced-colors: active) {
  :focus-visible {
    outline: 2px solid ButtonText;
    box-shadow: none;
  }
}

/* =========================================================
   ANIMATED GRADIENT TEXT
   ========================================================= */

.wc-home-gradient-text,
.wc-about-new-gradient-text,
.wc-webdesign-new-gradient-text,
.wc-managed-gradient-text,
.wccare-gradient-text,
.wcportfolio-gradient-text,
.wcit-gradient-text,
.wcm365-gradient-text,
.wcemail-gradient-text,
.wccontact-gradient-text,
.wc-gradient-text,
.wc-hero .wc-gradient-text {
  background-size: 220% 220%;
  animation: wc-grad-drift 9s ease-in-out infinite;
}

@keyframes wc-grad-drift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* =========================================================
   SCROLL REVEAL (driven by premium.js)
   ========================================================= */

[data-wc-reveal] {
  opacity: 0;
  transform: translateY(26px) translateX(var(--wc-reveal-x, 0px)) scale(var(--wc-reveal-s, 1));
  transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: var(--wc-delay, 0s);
  will-change: opacity, transform;
}

[data-wc-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* =========================================================
   HOME HERO — aurora + grid depth
   ========================================================= */

.wc-home-hero {
  position: relative;
  isolation: isolate;
}

.wc-home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(520px 320px at 12% 8%, rgba(56, 58, 231, 0.5), transparent 62%),
    radial-gradient(620px 380px at 92% 18%, rgba(14, 165, 233, 0.42), transparent 64%),
    radial-gradient(560px 360px at 78% 96%, rgba(139, 92, 246, 0.3), transparent 60%),
    radial-gradient(480px 300px at 8% 92%, rgba(34, 211, 238, 0.24), transparent 60%);
  animation: wc-aurora 16s ease-in-out infinite alternate;
}

@keyframes wc-aurora {
  0% { opacity: 0.7; transform: translate3d(0, 0, 0) scale(1); }
  50% { opacity: 1; transform: translate3d(2%, -2%, 0) scale(1.06); }
  100% { opacity: 0.85; transform: translate3d(-2%, 2%, 0) scale(1.02); }
}

.wc-home-hero .wc-home-container {
  position: relative;
  z-index: 1;
}

.wc-home-hero {
  background:
    radial-gradient(1000px 500px at 50% -20%, rgba(99, 102, 241, 0.25), transparent 60%),
    linear-gradient(135deg, #07111f 0%, #101d35 48%, #182747 100%);
  background-size: cover;
}

/* faint blueprint grid */
.wc-home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 0%, #000 30%, transparent 78%);
  mask-image: radial-gradient(ellipse at 50% 0%, #000 30%, transparent 78%);
  pointer-events: none;
}

/* floating orbs around the dashboard card */
.wc-home-dashboard-card {
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.wc-home-dashboard-card::before {
  content: "";
  position: absolute;
  inset: -14px;
  z-index: -1;
  border-radius: 34px;
  background: conic-gradient(from 140deg, rgba(14, 165, 233, 0.5), rgba(56, 58, 231, 0.28), rgba(34, 211, 238, 0.5), rgba(139, 92, 246, 0.35), rgba(14, 165, 233, 0.5));
  filter: blur(26px);
  opacity: 0.65;
  animation: wc-ring-pulse 7s ease-in-out infinite;
}

@keyframes wc-ring-pulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.03); }
}

.wc-home-list li {
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.wc-home-list li:hover {
  transform: translateX(4px);
}

/* dashboard progress shimmer */
.wc-home-progress span {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
  background-size: 220% 100%;
  animation: wc-shimmer 2.8s linear infinite;
}

@keyframes wc-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -20% 0; }
}

/* mini bar chart added by home.html */
.wc-home-chart {
  display: flex;
  align-items: flex-end;
  gap: 7px;
  height: 58px;
  margin-top: 14px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
}

.wc-home-chart i {
  flex: 1;
  display: block;
  height: 24%;
  min-height: 10px;
  border-radius: 5px 5px 3px 3px;
  background: linear-gradient(180deg, #818cf8, #0ea5e9);
  transform-origin: bottom;
  animation: wc-chart-grow 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.wc-home-chart i:nth-child(2) { height: 44%; animation-delay: 0.08s; }
.wc-home-chart i:nth-child(3) { height: 32%; animation-delay: 0.16s; }
.wc-home-chart i:nth-child(4) { height: 62%; animation-delay: 0.24s; }
.wc-home-chart i:nth-child(5) { height: 48%; animation-delay: 0.32s; }
.wc-home-chart i:nth-child(6) { height: 84%; animation-delay: 0.4s; }
.wc-home-chart i:nth-child(7) { height: 70%; animation-delay: 0.48s; }

@keyframes wc-chart-grow {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}

/* =========================================================
   PILL BUTTON EFFECTS (primary CTA look)
   ========================================================= */

.wc-btn,
.wc-home-btn,
.wc-about-new-btn,
.wc-webdesign-new-btn,
.wccare-btn,
.wcportfolio-btn,
.wcit-btn,
.wcm365-btn,
.wcemail-btn,
.wccontact-btn,
.wc-footer-btn {
  position: relative;
  overflow: hidden;
}

/* top sheen sweep */
.wc-btn::before,
.wc-home-btn::before,
.wc-about-new-btn::before,
.wc-webdesign-new-btn::before,
.wccare-btn::before,
.wcportfolio-btn::before,
.wcit-btn::before,
.wcm365-btn::before,
.wcemail-btn::before,
.wccontact-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.35) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.6s ease;
  pointer-events: none;
}

.wc-btn:hover::before,
.wc-home-btn:hover::before,
.wc-about-new-btn:hover::before,
.wc-webdesign-new-btn:hover::before,
.wccare-btn:hover::before,
.wcportfolio-btn:hover::before,
.wcit-btn:hover::before,
.wcm365-btn:hover::before,
.wcemail-btn:hover::before,
.wccontact-btn:hover::before {
  transform: translateX(120%);
}

/* pill cards, gradient buttons get stronger shadow */
.wc-btn--primary:hover,
.wc-home-btn-primary:hover,
.wc-about-new-btn-primary:hover,
.wc-webdesign-new-btn-primary:hover,
.wccare-btn-primary:hover,
.wcportfolio-btn-primary:hover,
.wcit-btn-primary:hover,
.wcm365-btn-primary:hover,
.wcemail-btn-primary:hover,
.wccontact-btn-primary:hover {
  box-shadow: 0 24px 58px rgba(14, 165, 233, 0.42);
  transform: translateY(-3px);
}

/* =========================================================
   CARDS — lift + gradient edge glow
   ========================================================= */

.wc-home-service-card,
.wc-home-strength-card,
.wc-about-new-card,
.wc-webdesign-new-expertise-item,
.wc-managed-intro-item,
.wc-managed-step,
.wc-managed-comparison-card,
.wc-managed-plan-card,
.wccare-plan-card,
.wccare-intro-item,
.wcportfolio-card,
.wcit-card,
.wcit-service-card,
.wcit-price-card,
.wcm365-card,
.wcemail-price-card,
.wcemail-card,
.wccontact-card,
.wc-footer-glass {
  position: relative;
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.wc-home-service-card:hover,
.wc-home-strength-card:hover,
.wc-about-new-card:hover,
.wc-webdesign-new-expertise-item:hover,
.wc-managed-step:hover,
.wc-managed-comparison-card:hover,
.wccare-intro-item:hover,
.wcportfolio-card:hover,
.wcit-service-card:hover,
.wcit-price-card:hover,
.wcemail-card:hover,
.wccontact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.14);
  border-color: rgba(56, 58, 231, 0.28);
}

.wc-managed-plan-card:hover,
.wccare-plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 70px rgba(15, 23, 42, 0.16);
}

/* gradient icon plate */
[class*="wc-icon"],
.wc-home-icon,
.wc-about-new-icon,
.wc-webdesign-new-icon,
.wccare-icon,
.wcportfolio-icon,
.wcit-icon,
.wcm365-icon,
.wccontact-icon {
  transition: transform 0.35s ease;
}

.wc-home-service-card:hover [class*="wc-icon"],
.wc-home-service-card:hover .wc-home-icon,
.wc-about-new-card:hover .wc-about-new-icon,
.wccare-intro-item:hover .wccare-icon,
.wcportfolio-card:hover .wcportfolio-icon,
.wcit-service-card:hover .wcit-icon,
.wccontact-card:hover .wccontact-icon {
  transform: scale(1.14) rotate(-4deg);
}

/* section titles: subtle gradient sweep on h2 */
.wc-section-title h2,
.wccare-section-title h2,
.wcportfolio-section-title h2,
.wcemail-section-title h2,
.wcm365-section-title h2,
.wcit-section-title h2,
.wc-about-new-section-title h2,
.wc-webdesign-new-section-title h2,
.wc-home-section-title h2 {
  background: linear-gradient(120deg, #0f172a 42%, #383ae7 52%, #0ea5e9 62%, #0f172a 72%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: background-position 1.1s ease;
}

.wc-section-title:hover h2,
.wccare-section-title:hover h2,
.wcportfolio-section-title:hover h2,
.wcemail-section-title:hover h2,
.wcm365-section-title:hover h2,
.wcit-section-title:hover h2,
.wc-about-new-section-title:hover h2,
.wc-webdesign-new-section-title:hover h2,
.wc-home-section-title:hover h2 {
  background-position: 60% 50%;
}

/* =========================================================
   MARQUEE TRUST STRIP (home)
   ========================================================= */

.wc-marquee {
  position: relative;
  z-index: 6;
  margin: 34px auto 0;
  width: min(1360px, calc(100% - 32px));
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(9, 15, 31, 0.94), rgba(21, 35, 66, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 26px 64px rgba(7, 17, 31, 0.4);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 14px 0;
}

.wc-marquee-track {
  display: flex;
  width: max-content;
  animation: wc-marquee 30s linear infinite;
}

.wc-marquee-track:hover {
  animation-play-state: paused;
}

.wc-marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0 26px;
  color: #dbeafe;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.wc-marquee-item::after {
  content: "✦";
  color: #38bdf8;
  font-size: 11px;
}

@keyframes wc-marquee {
  to { transform: translateX(-50%); }
}

/* =========================================================
   PORTFOLIO — showcased mockups
   ========================================================= */

.wcportfolio-work-visual {
  transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.wcportfolio-work-item:hover .wcportfolio-work-visual {
  transform: rotate(-1.2deg) scale(1.02);
}

.wcportfolio-work-item:hover .wcportfolio-floating-card {
  transform: translateY(-4px) scale(1.04);
}

.wcportfolio-filter {
  transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.wcportfolio-filter:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(56, 58, 231, 0.2);
}

/* =========================================================
   BACK TO TOP
   ========================================================= */

.wc-back-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 2000;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: linear-gradient(135deg, #383ae7, #0ea5e9);
  color: #fff;
  font-size: 20px;
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 18px 44px rgba(56, 58, 231, 0.45);
}

.wc-back-top.show {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.wc-back-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 54px rgba(56, 58, 231, 0.6);
}

/* =========================================================
   FOOTER glow top edge
   ========================================================= */

.wc-footer-wrap {
  position: relative;
}

.wc-footer-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(900px, 80%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(56, 58, 231, 0.55), rgba(34, 211, 238, 0.55), transparent);
}

/* legal pages spacing nicety */
.wc-legal-box h1 {
  background: linear-gradient(120deg, #0f172a 40%, #383ae7 60%, #0ea5e9 78%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* =========================================================
   SCROLL PROGRESS BAR (driven by premium.js)
   ========================================================= */

#wcScrollProgress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 4000;
  width: 100%;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, #383ae7, #0ea5e9 55%, #22d3ee);
  box-shadow: 0 0 14px rgba(56, 58, 231, 0.55);
  pointer-events: none;
}

/* =========================================================
   HERO ENTRANCE (page-load stagger on every hero)
   ========================================================= */

[class$="-hero"] > *,
.wc-hero > * {
  animation: wc-hero-in 0.9s cubic-bezier(0.22, 0.8, 0.24, 1) both;
}

[class$="-hero"] > *:nth-child(1) { animation-delay: 0.04s; }
[class$="-hero"] > *:nth-child(2) { animation-delay: 0.14s; }
[class$="-hero"] > *:nth-child(3) { animation-delay: 0.24s; }
[class$="-hero"] > *:nth-child(4) { animation-delay: 0.34s; }
[class$="-hero"] > *:nth-child(5) { animation-delay: 0.44s; }
[class$="-hero"] > *:nth-child(6) { animation-delay: 0.54s; }
[class$="-hero"] > *:nth-child(7) { animation-delay: 0.64s; }
[class$="-hero"] > *:nth-child(8) { animation-delay: 0.74s; }

@keyframes wc-hero-in {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   MARQUEE — edge fades + item glow
   ========================================================= */

.wc-marquee {
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.wc-marquee-item {
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.wc-marquee:hover .wc-marquee-item:hover {
  color: #fff;
  text-shadow: 0 0 18px rgba(56, 170, 255, 0.9);
}

/* =========================================================
   BUTTON/PILL — pulsing glow on primary CTAs
   ========================================================= */

.wc-btn--primary:hover,
.wc-home-btn-primary:hover,
.wc-about-new-btn-primary:hover,
.wc-webdesign-new-btn-primary:hover,
.wccare-btn-primary:hover,
.wcportfolio-btn-primary:hover,
.wcit-btn-primary:hover,
.wcm365-btn-primary:hover,
.wcemail-btn-primary:hover,
.wccontact-btn-primary:hover,
.wc-header-btn:hover {
  animation: wc-glow-pulse 2.4s ease-in-out infinite;
}

@keyframes wc-glow-pulse {
  0%, 100% { box-shadow: 0 18px 44px rgba(56, 58, 231, 0.3); }
  50% { box-shadow: 0 22px 62px rgba(14, 165, 233, 0.6), 0 0 0 5px rgba(56, 58, 231, 0.1); }
}

/* header CTA gets its own sheen sweep */
.wc-header-btn {
  position: relative;
  overflow: hidden;
}

.wc-header-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.6s ease;
  pointer-events: none;
}

.wc-header-btn:hover::before {
  transform: translateX(120%);
}

/* =========================================================
   3D TILT CARDS (driven by premium.js via CSS custom props)
   ========================================================= */

.wc-home-service-card,
.wc-home-strength-card,
.wccare-intro-item,
.wcit-service-card,
.wc-managed-step,
.wc-about-new-card,
.wc-webdesign-new-expertise-item {
  transform: perspective(900px) rotateX(var(--wc-tilt-y, 0deg)) rotateY(var(--wc-tilt-x, 0deg));
  transform-style: preserve-3d;
}

.wc-home-service-card:hover,
.wc-home-strength-card:hover,
.wccare-intro-item:hover,
.wcit-service-card:hover,
.wc-managed-step:hover,
.wc-about-new-card:hover,
.wc-webdesign-new-expertise-item:hover {
  transform: perspective(900px) translateY(-6px) rotateX(var(--wc-tilt-y, 0deg)) rotateY(var(--wc-tilt-x, 0deg));
}

@keyframes wc-count-pop {
  0% { transform: scale(1.28); }
  100% { transform: scale(1); }
}

.wc-count-done {
  display: inline-block;
  animation: wc-count-pop 0.45s cubic-bezier(0.2, 0.8, 0.2, 1.3);
}

/* =========================================================
   BACK TO TOP — entrance pop
   ========================================================= */

.wc-back-top.show {
  animation: wc-btt-pop 0.5s cubic-bezier(0.2, 0.8, 0.2, 1.2);
}

@keyframes wc-btt-pop {
  0% { transform: scale(0.4) translateY(14px); opacity: 0; }
  60% { transform: scale(1.18) translateY(0); opacity: 1; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

/* =========================================================
   FOOTER — drifting glow blobs
   ========================================================= */

.wc-footer-blob-1,
.wc-footer-blob-2 {
  animation: wc-blob-drift 13s ease-in-out infinite;
}

.wc-footer-blob-2 {
  animation-duration: 18s;
  animation-delay: -6s;
}

@keyframes wc-blob-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(8px, -12px) scale(1.06); }
}

/* =========================================================
   IMAGE PLACEHOLDERS — slow light sweep
   ========================================================= */

.wc-img-ph::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(110deg, transparent 32%, rgba(255, 255, 255, 0.16) 50%, transparent 68%);
  transform: translateX(-130%);
  animation: wc-ph-shine 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes wc-ph-shine {
  0%, 55% { transform: translateX(-130%); }
  100% { transform: translateX(130%); }
}

/* real photos inside placeholder slots */
.wc-img-ph img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

.wc-img-ph.has-photo::before,
.wc-img-ph.has-photo::after,
.wc-img-ph.has-photo span {
  display: none;
}

.wc-img-ph.has-photo {
  transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.45s ease;
}

.wc-img-ph.has-photo:hover {
  transform: translateY(-4px) scale(1.015);
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.22);
}

/* =========================================================
   HEADER — logo + CTA idle life
   ========================================================= */

.wc-header-btn:hover {
  transform: translateY(-2px);
}

.wc-logo-mark {
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1.2), box-shadow 0.35s ease;
}

.wc-logo:hover .wc-logo-mark {
  transform: rotate(-4deg) scale(1.06);
  box-shadow: 0 18px 42px rgba(14, 165, 233, 0.28);
}

/* =========================================================
   MANAGED PLANS — featured card keeps a breathing glow
   ========================================================= */

.wc-managed-plan-card:hover {
  animation: wc-card-breathe 2.6s ease-in-out infinite;
}

@keyframes wc-card-breathe {
  0%, 100% { box-shadow: 0 32px 70px rgba(15, 23, 42, 0.16); }
  50% { box-shadow: 0 36px 82px rgba(56, 58, 231, 0.24); }
}

/* =========================================================
   ACCESSIBILITY — skip link + focus ring
   ========================================================= */

.wc-skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 12px 20px;
  border-radius: 0 0 14px 0;
  background: linear-gradient(135deg, #383ae7, #0ea5e9);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
}

.wc-skip-link:focus {
  left: 0;
}

/* =========================================================
   HOME — sector strip + testimonial band
   ========================================================= */

.wc-home-sector-strip {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding: 22px 26px;
  border-radius: 22px;
  background: linear-gradient(135deg, #f8fafc, #eef2ff);
  border: 1px solid rgba(56, 58, 231, 0.16);
}

.wc-home-sector-label {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #383ae7;
}

.wc-home-sector-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.wc-home-sector-chips span {
  padding: 8px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(56, 58, 231, 0.18);
  color: #334155;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(56, 58, 231, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.wc-home-sector-chips span:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #383ae7, #0ea5e9);
  color: #fff;
  box-shadow: 0 12px 26px rgba(56, 58, 231, 0.3);
}

.wc-home-testimonial {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  padding: 34px 36px;
  border-radius: 26px;
  background:
    radial-gradient(420px 200px at 8% 0%, rgba(56, 58, 231, 0.12), transparent 60%),
    linear-gradient(135deg, #ffffff, #f8fafc);
  border: 1px solid rgba(56, 58, 231, 0.14);
  box-shadow: 0 22px 54px rgba(15, 23, 42, 0.1);
  position: relative;
  overflow: hidden;
}

.wc-home-testimonial::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--wc-grad);
}

.wc-home-testimonial-avatar {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #383ae7, #0ea5e9);
  color: #fff;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 0.02em;
  box-shadow: 0 14px 32px rgba(56, 58, 231, 0.35);
}

.wc-home-testimonial-body {
  position: relative;
  flex: 1;
}

.wc-home-testimonial-quote {
  position: absolute;
  top: -18px;
  left: -10px;
  font-family: Georgia, serif;
  font-size: 64px;
  line-height: 1;
  color: rgba(56, 58, 231, 0.16);
  pointer-events: none;
}

.wc-home-testimonial p {
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
  color: #334155;
}

.wc-home-testimonial-client {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.wc-home-testimonial-client strong {
  font-size: 14px;
  color: #0f172a;
}

.wc-home-testimonial-client span {
  font-size: 13px;
  color: #64748b;
}

/* =========================================================
   MOBILE — floating call button
   ========================================================= */

.wc-mobile-call {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 2000;
  display: none;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #383ae7, #0ea5e9);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 18px 44px rgba(56, 58, 231, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.wc-mobile-call svg {
  width: 18px;
  height: 18px;
}

.wc-mobile-call:hover {
  transform: translateY(-2px);
}

@media (max-width: 980px) {
  .wc-mobile-call {
    display: inline-flex;
    animation: wc-call-pop 0.6s cubic-bezier(0.2, 0.8, 0.2, 1.2) 0.8s both;
  }

  .wc-back-top {
    bottom: 86px;
  }
}

@keyframes wc-call-pop {
  0% { opacity: 0; transform: translateY(16px) scale(0.9); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* =========================================================
   404 PAGE
   ========================================================= */

.wc-404 {
  min-height: 62vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 70px 24px;
  background:
    radial-gradient(700px 360px at 50% -10%, rgba(56, 58, 231, 0.16), transparent 62%),
    linear-gradient(135deg, #07111f 0%, #101d35 48%, #182747 100%);
}

.wc-404-code {
  font-size: clamp(88px, 16vw, 170px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(120deg, #818cf8, #0ea5e9 45%, #22d3ee);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: wc-grad-drift 8s ease-in-out infinite;
  text-shadow: none;
}

.wc-404 h1 {
  margin: 8px 0 10px;
  color: #fff;
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 900;
}

.wc-404 p {
  max-width: 520px;
  margin: 0 auto 30px;
  color: #bfdbfe;
  font-size: 16px;
  line-height: 1.65;
}
/* ================= Maintenance page ================= */
.wcmaint {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}
.wcmaint-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  pointer-events: none;
}
.wcmaint-blob-1 { top: -120px; right: -80px; width: 420px; height: 420px; background: linear-gradient(135deg, rgba(56,58,231,0.35), rgba(14,165,233,0.25)); }
.wcmaint-blob-2 { bottom: -140px; left: -100px; width: 460px; height: 460px; background: linear-gradient(135deg, rgba(34,211,238,0.3), rgba(14,165,233,0.18)); }
.wcmaint-wrap { max-width: var(--wc-container, 1360px); margin: 0 auto; padding: 0 var(--wc-gutter, 32px); position: relative; }

.wcmaint-hero { padding: 76px 0 88px; }
.wcmaint-hero-inner { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; }
.wcmaint-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--wc-grad-soft, #eef2ff);
  color: var(--wc-primary);
  font-weight: 800;
  font-size: 13px;
  border: 1px solid rgba(56,58,231,0.15);
}
.wcmaint-hero h1 { font-size: clamp(34px, 5vw, 58px); line-height: 1.08; font-weight: 900; color: var(--wc-dark); margin: 22px 0 18px; }
.wcmaint-gradient { background: var(--wc-grad, linear-gradient(135deg,#383ae7,#0ea5e9 55%,#22d3ee)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.wcmaint-lede { font-size: 17px; line-height: 1.7; color: var(--wc-muted); max-width: 560px; margin: 0 0 26px; }
.wcmaint-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.wcmaint-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 24px; border-radius: 14px; border: none; cursor: pointer;
  font-size: 15px; font-weight: 800; font-family: inherit; text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.wcmaint-btn-primary { background: var(--wc-grad, linear-gradient(135deg,#383ae7,#0ea5e9)); color: #fff; box-shadow: 0 12px 30px rgba(56,58,231,0.35); }
.wcmaint-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 38px rgba(56,58,231,0.45); }
.wcmaint-btn-secondary { background: #fff; color: var(--wc-dark); border: 1.5px solid var(--wc-border, #e2e8f0); }
.wcmaint-btn-secondary:hover { transform: translateY(-2px); box-shadow: var(--wc-shadow-md, none); }
.wcmaint-btn-wide { width: 100%; }
.wcmaint-points { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 26px; font-size: 13.5px; font-weight: 700; color: var(--wc-text, #475569); }
.wcmaint-check { display: inline-block; margin-top: 18px; font-size: 14px; font-weight: 800; color: var(--wc-primary); text-decoration: none; }
.wcmaint-check:hover { text-decoration: underline; }

.wcmaint-panel {
  position: relative;
  border-radius: 24px;
  border: 1px solid var(--wc-border, #e2e8f0);
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(14px);
  box-shadow: var(--wc-shadow-lg, none);
  overflow: hidden;
}
.wcmaint-panel-top { display: flex; gap: 7px; padding: 15px 18px; background: var(--wc-soft, #f1f5f9); border-bottom: 1px solid var(--wc-border, #e2e8f0); }
.wcmaint-dot { width: 11px; height: 11px; border-radius: 50%; background: #cbd5e1; }
.wcmaint-dot:first-child { background: #f87171; } .wcmaint-dot:nth-child(2) { background: #fbbf24; } .wcmaint-dot:nth-child(3) { background: #34d399; }
.wcmaint-panel-body { padding: 22px; }
.wcmaint-panel-body > strong { font-size: 16px; font-weight: 900; color: var(--wc-dark); }
.wcmaint-panel-loader { display: flex; gap: 6px; margin: 4px 0 18px; }
.wcmaint-panel-loader span { width: 26px; height: 8px; border-radius: 99px; background: var(--wc-grad, linear-gradient(135deg,#383ae7,#0ea5e9)); animation: wcmaintPulse 1.2s ease-in-out infinite; opacity: 0.35; }
.wcmaint-panel-loader span:nth-child(2) { animation-delay: 0.15s; } .wcmaint-panel-loader span:nth-child(3) { animation-delay: 0.3s; } .wcmaint-panel-loader span:nth-child(4) { animation-delay: 0.45s; }
@keyframes wcmaintPulse { 0%,100% { opacity: 0.3; transform: scaleY(0.8); } 50% { opacity: 1; transform: scaleY(1); } }
.wcmaint-panel-row { display: flex; gap: 13px; align-items: center; padding: 13px 0; border-top: 1px dashed var(--wc-border, #e2e8f0); }
.wcmaint-panel-check, .wcmaint-panel-wrench {
  flex-shrink: 0; width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center;
  font-weight: 900; font-size: 16px;
}
.wcmaint-panel-check { background: #dcfce7; color: #15803d; }
.wcmaint-panel-wrench { background: #fef3c7; color: #b45309; }
.wcmaint-panel-row b { font-size: 14.5px; color: var(--wc-dark); }
.wcmaint-panel-row small { display: block; font-size: 12.5px; color: var(--wc-muted); margin-top: 2px; }

.wcmaint-form-section { padding: 0 0 90px; }
.wcmaint-form-card {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px;
  border-radius: var(--wc-radius-lg, 38px);
  background: #fff; border: 1px solid var(--wc-border, #e2e8f0);
  padding: 48px; box-shadow: var(--wc-shadow-md, none);
}
.wcmaint-eyebrow { display: inline-block; padding: 7px 13px; border-radius: 999px; background: var(--wc-primary-soft, #eef2ff); color: var(--wc-primary); font-size: 12.5px; font-weight: 800; margin-bottom: 14px; }
.wcmaint-form-copy h2 { font-size: clamp(24px, 3vw, 32px); font-weight: 900; color: var(--wc-dark); margin: 0 0 12px; }
.wcmaint-form-copy p { color: var(--wc-muted); line-height: 1.7; margin: 0 0 18px; }
.wcmaint-form-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.wcmaint-form-list li { position: relative; padding-left: 26px; font-weight: 700; color: var(--wc-text, #475569); font-size: 14px; }
.wcmaint-form-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--wc-primary); font-weight: 900; }
.wcmaint-form { display: grid; gap: 16px; }
.wcmaint-form .wc-form-row { display: grid; gap: 14px; }
@media (min-width: 640px) { .wcmaint-form .wc-form-row.two { grid-template-columns: 1fr 1fr; } }
.wcmaint-form label { display: grid; gap: 7px; font-size: 13px; font-weight: 700; color: var(--wc-dark); }
.wcmaint-form input, .wcmaint-form select, .wcmaint-form textarea {
  font-family: inherit; font-size: 15px; color: var(--wc-dark);
  background: var(--wc-light, #f8fafc); border: 1px solid var(--wc-border-soft, #e2e8f0);
  border-radius: var(--wc-radius-sm, 14px); padding: 13px 15px; width: 100%;
  box-sizing: border-box; transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.wcmaint-form input:focus, .wcmaint-form select:focus, .wcmaint-form textarea:focus {
  outline: none; border-color: var(--wc-primary); box-shadow: 0 0 0 3px rgba(56,58,231,0.14); background: #fff;
}
.wcmaint-form textarea { resize: vertical; min-height: 120px; }
.wcmaint-form .wcmaint-btn { margin-top: 2px; }

.wcmaint-reveal { opacity: 0; transform: translateY(26px); animation: wcmaintReveal 0.8s cubic-bezier(0.22,1,0.36,1) forwards; }
.wcmaint-reveal-delay { animation-delay: 0.18s; }
@keyframes wcmaintReveal { to { opacity: 1; transform: none; } }

@media (max-width: 960px) {
  .wcmaint-hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .wcmaint-form-card { grid-template-columns: 1fr; padding: 30px; gap: 30px; }
}
@media (max-width: 560px) {
  .wcmaint-hero { padding: 48px 0 60px; }
  .wcmaint-form-section { padding-bottom: 60px; }
  .wcmaint-form-card { padding: 24px; border-radius: 24px; }
}

/* ---- Cookie consent banner ---- */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2000;
  max-width: 580px;
  margin: 0 auto;
  padding: 18px;
  background: rgba(15, 23, 42, 0.97);
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 16px;
  box-shadow: 0 18px 60px rgba(2, 6, 23, 0.45);
  color: #e2e8f0;
  display: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.cookie-banner.is-visible { display: block; }
.cookie-banner-inner { display: flex; flex-direction: column; gap: 14px; }
.cookie-banner-text strong {
  display: block;
  font-size: 15px;
  margin-bottom: 6px;
  color: #fff;
}
.cookie-banner-text p { margin: 0; font-size: 13.5px; line-height: 1.55; color: #cbd5e1; }
.cookie-banner-text a { color: #7dd3fc; text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-btn {
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: transparent;
  color: #e2e8f0;
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.cookie-btn:hover { border-color: #7dd3fc; }
.cookie-btn:active { transform: translateY(1px); }
.cookie-btn--primary { background: #0284c7; border-color: #0284c7; color: #fff; }
.cookie-btn--primary:hover { background: #0369a1; border-color: #0369a1; }
@media (min-width: 640px) {
  .cookie-banner { padding: 20px 22px; }
}

/* ---- Testimonial slider ---- */
.wc-home-testimonial.wc-testi {
  display: block;
  padding: 38px 40px;
}
.wc-testi-track { position: relative; }
.wc-testi-slide {
  display: none;
  align-items: flex-start;
  gap: 22px;
}
.wc-testi-slide.is-active {
  display: flex;
  animation: wcTestiIn 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes wcTestiIn {
  from { opacity: 0; transform: translateY(14px); }
}
.wc-testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
  font-size: 19px;
  line-height: 1;
  color: #cbd5e1;
  letter-spacing: 1px;
}
.wc-testi-stars span.is-on {
  color: #f59e0b;
  text-shadow: 0 2px 14px rgba(245, 158, 11, 0.45);
}
.wc-testi .wc-home-testimonial-quote {
  top: auto;
  left: auto;
  right: 16px;
  bottom: -12px;
  font-size: 78px;
}
.wc-testi-quote {
  position: relative;
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
  color: #334155;
}
.wc-testi-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: rgba(15, 23, 42, 0.5);
  color: #e2e8f0;
  font-size: 17px;
  cursor: pointer;
  z-index: 3;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.wc-testi-arrow:hover {
  background: var(--wc-grad);
  border-color: transparent;
  color: #fff;
  transform: translateY(-50%) scale(1.06);
}
.wc-testi-arrow-prev { left: 12px; }
.wc-testi-arrow-next { right: 12px; }
.wc-testi-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
}
.wc-testi-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: #64748b;
  opacity: 0.35;
  cursor: pointer;
  transition: opacity 0.2s, width 0.2s, background 0.2s;
}
.wc-testi-dot:hover { opacity: 0.7; }
.wc-testi-dot.is-active {
  opacity: 1;
  width: 26px;
  background: var(--wc-grad);
}
@media (max-width: 600px) {
  .wc-home-testimonial.wc-testi { padding: 28px 22px; }
  .wc-testi-arrow { display: none; }
}

/* ---- Portfolio image placeholders (projects without a screenshot) ---- */
.wc-home-portfolio-image { position: relative; }
.wcportfolio-shot { position: relative; }
.wc-home-portfolio-placeholder,
.wcportfolio-shot-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #fff;
  background:
    radial-gradient(140px 90px at 20% 10%, rgba(255, 255, 255, 0.22), transparent 60%),
    linear-gradient(135deg, #383ae7, #0ea5e9);
}
.wc-home-portfolio-placeholder { font-size: 44px; }
.wcportfolio-shot-placeholder { font-size: 52px; }

/* ---- Domain checker ---- */
.wc-domain-hero {
  position: relative;
  padding: 110px 0 120px;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(1200px 600px at 12% -8%, rgba(56, 58, 231, 0.45), transparent 60%),
    radial-gradient(1000px 500px at 95% 8%, rgba(14, 165, 233, 0.4), transparent 55%),
    linear-gradient(135deg, #07111f 0%, #101d35 50%, #182747 100%);
  overflow: hidden;
}
.wc-domain-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px 0;
  height: 110px;
  background: linear-gradient(to bottom, transparent, #f5f7fb);
  pointer-events: none;
}
.wc-domain-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  pointer-events: none;
  animation: wcDomDrift 12s ease-in-out infinite;
}
.wc-domain-orb-1 { width: 300px; height: 300px; left: -70px; top: 40px; background: rgba(56, 58, 231, 0.55); }
.wc-domain-orb-2 { width: 240px; height: 240px; right: -40px; top: 120px; background: rgba(14, 165, 233, 0.5); animation-delay: -4s; }
.wc-domain-orb-3 { width: 180px; height: 180px; left: 46%; bottom: 40px; background: rgba(103, 232, 249, 0.35); animation-delay: -8s; }
@keyframes wcDomDrift {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-26px) translateX(18px); }
}
.wc-domain-container {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 22px;
}
.wc-domain-badge {
  display: inline-flex;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #dbeafe;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.wc-domain-hero h1 {
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.02em;
  max-width: 720px;
  margin: 0 auto 18px;
}
.wc-domain-hero h1 em {
  font-style: normal;
  background: linear-gradient(100deg, #6366f1 0%, #38bdf8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.wc-domain-lead {
  font-size: 17px;
  line-height: 1.65;
  color: #b9c6de;
  max-width: 640px;
  margin: 0 auto 34px;
}
.wc-domain-lead strong { color: #fff; font-weight: 700; }

.wc-domain-panel {
  position: relative;
  border-radius: 30px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 34px 90px rgba(2, 6, 23, 0.4);
}
.wc-domain-panel::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.8), rgba(56, 189, 248, 0.2), rgba(99, 102, 241, 0.4));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.wc-domain-search {
  display: flex;
  gap: 14px;
  align-items: stretch;
}
.wc-domain-field {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 2px solid transparent;
  border-radius: 18px;
  padding: 6px 8px 6px 16px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.wc-domain-field:focus-within {
  border-color: #6366f1;
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.18);
}
.wc-domain-field-icon { color: #94a3b8; display: inline-flex; flex: none; }
.wc-domain-www {
  color: #94a3b8;
  font-weight: 700;
  font-size: 15px;
  flex: none;
}
.wc-domain-field input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  font-size: 17px;
  font-weight: 600;
  color: var(--wc-dark, #0f172a);
  padding: 10px 0;
}
.wc-domain-field input::placeholder { color: #b3c0d2; font-weight: 500; }
.wc-domain-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  border-radius: 18px;
  padding: 0 26px;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  white-space: nowrap;
  background: linear-gradient(135deg, #4f46e5, #0ea5e9);
  box-shadow: 0 14px 32px rgba(56, 58, 231, 0.45);
  transition: transform 0.16s ease, box-shadow 0.16s ease, opacity 0.16s ease;
}
.wc-domain-btn:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(56, 58, 231, 0.52); }
.wc-domain-btn:disabled { opacity: 0.7; cursor: wait; transform: none; }
.wc-domain-btn--loading span::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-left: 10px;
  vertical-align: -2px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: wcDomSpin 0.7s linear infinite;
}
@keyframes wcDomSpin { to { transform: rotate(360deg); } }
.wc-domain-error {
  margin: 14px 6px 2px;
  text-align: left;
  color: #fecaca;
  font-size: 14px;
  font-weight: 700;
}
.wc-domain-error::before { content: "⚠ "; }

.wc-domain-results { margin-top: 26px; text-align: left; }
.wc-domain-results-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.wc-domain-results-head h2 {
  font-size: 20px;
  font-weight: 800;
  color: var(--wc-dark, #0f172a);
  margin: 0;
}
.wc-domain-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  color: #334155;
  background: #eef2ff;
  border: 1px solid #dfe5ff;
  padding: 6px 12px;
  border-radius: 999px;
}
.wc-domain-live i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #16a34a;
  box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.5);
  animation: wcDomPulse 1.8s infinite;
}
@keyframes wcDomPulse {
  0% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.45); }
  70% { box-shadow: 0 0 0 7px rgba(22, 163, 74, 0); }
  100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0); }
}
.wc-domain-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--wc-line, #e2e8f0);
  border-radius: 20px;
  padding: 18px 20px;
  margin-bottom: 12px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
  animation: wcCardIn 0.55s cubic-bezier(0.22, 0.7, 0.3, 1) both;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.wc-domain-card:hover { transform: translateY(-3px); box-shadow: 0 22px 50px rgba(15, 23, 42, 0.13); }
@keyframes wcCardIn {
  from { opacity: 0; transform: translateY(14px) scale(0.985); }
  to { opacity: 1; transform: none; }
}
.wc-domain-card-icon {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 19px;
  color: #fff;
}
.wc-domain-card--available .wc-domain-card-icon { background: linear-gradient(135deg, #16a34a, #38bdf8); }
.wc-domain-card--taken .wc-domain-card-icon { background: linear-gradient(135deg, #dc2626, #f97316); }
.wc-domain-card--unavailable .wc-domain-card-icon { background: linear-gradient(135deg, #d97706, #f59e0b); }
.wc-domain-card-body { flex: 1; min-width: 0; }
.wc-domain-card-title {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.wc-domain-name { font-size: 19px; font-weight: 800; color: var(--wc-dark, #0f172a); }
.wc-domain-pill {
  font-size: 12.5px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}
.wc-domain-card--available .wc-domain-pill { background: #dcfce7; color: #15803d; }
.wc-domain-card--taken .wc-domain-pill { background: #fee2e2; color: #b91c1c; }
.wc-domain-card--unavailable .wc-domain-pill { background: #fef3c7; color: #b45309; }
.wc-domain-card-meta {
  margin: 8px 0 0;
  font-size: 13.5px;
  color: var(--wc-muted, #64748b);
}
.wc-domain-card-price {
  margin: 10px 0 0;
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
}
.wc-domain-card-price strong { color: #16a34a; font-weight: 800; }
.wc-domain-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.wc-domain-chip {
  font-size: 12.5px;
  font-weight: 600;
  color: #334155;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  padding: 6px 11px;
  border-radius: 10px;
}
.wc-domain-chip strong { color: var(--wc-dark, #0f172a); font-weight: 800; }
.wc-domain-card-cta {
  flex: none;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #4f46e5, #0ea5e9);
  padding: 11px 18px;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 24px rgba(56, 58, 231, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}
.wc-domain-card-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(56, 58, 231, 0.45); }
.wc-domain-card--available .wc-domain-card-cta { background: #16a34a; box-shadow: 0 10px 24px rgba(22, 163, 74, 0.35); }
.wc-domain-card-cta--ghost {
  background: transparent;
  color: #4f46e5;
  border: 2px solid #c7d2fe;
  box-shadow: none;
}
.wc-domain-card-cta--ghost:hover { border-color: #4f46e5; box-shadow: none; }
.wc-domain-arrow { transition: transform 0.15s ease; }
.wc-domain-card-cta:hover .wc-domain-arrow { transform: translateX(3px); }
.wc-domain-alts-title {
  font-size: 12.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--wc-muted, #64748b);
  margin: 22px 2px 12px;
}

.wc-domain-strip {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.wc-domain-strip span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 600;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 10px 16px;
  border-radius: 999px;
}
.wc-domain-strip b {
  color: #7dd3fc;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

.wc-domain-section { padding: 84px 0 60px; }
.wc-domain-section--steps { background: #fff; border-radius: 42px 42px 0 0; }
.wc-domain-section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 44px;
}
.wc-domain-section-head > span {
  display: inline-block;
  color: #4f46e5;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.wc-domain-section-head h2 {
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  color: var(--wc-dark, #0f172a);
}
.wc-domain-section-head p { color: var(--wc-muted, #64748b); line-height: 1.65; font-size: 16px; }
.wc-domain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.wc-domain-feature {
  background: #fff;
  border: 1px solid var(--wc-line, #e2e8f0);
  border-radius: 22px;
  padding: 26px 22px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.wc-domain-feature:hover { transform: translateY(-4px); box-shadow: 0 22px 50px rgba(15, 23, 42, 0.12); }
.wc-domain-feature-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  font-size: 24px;
  border-radius: 16px;
  background: linear-gradient(135deg, #eef2ff, #e0f2fe);
  margin-bottom: 16px;
}
.wc-domain-feature h3 { font-size: 17px; font-weight: 800; margin: 0 0 8px; color: var(--wc-dark, #0f172a); }
.wc-domain-feature p { font-size: 14.5px; line-height: 1.6; color: var(--wc-muted, #64748b); margin: 0; }

.wc-domain-stepline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: wcStep;
}
.wc-domain-step {
  position: relative;
  background: #f8fafc;
  border: 1px dashed #d6e0ef;
  border-radius: 22px;
  padding: 28px 22px 24px;
}
.wc-domain-step-num {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  font-weight: 900;
  font-size: 17px;
  color: #fff;
  background: linear-gradient(135deg, #4f46e5, #0ea5e9);
  box-shadow: 0 10px 24px rgba(56, 58, 231, 0.35);
  margin-bottom: 16px;
}
.wc-domain-step h3 { font-size: 16.5px; font-weight: 800; margin: 0 0 8px; color: var(--wc-dark, #0f172a); }
.wc-domain-step p { font-size: 14px; line-height: 1.6; color: var(--wc-muted, #64748b); margin: 0; }

.wc-domain-cta {
  position: relative;
  margin: 0 22px 90px;
  border-radius: 32px;
  padding: 52px 44px;
  background:
    radial-gradient(700px 300px at 8% 0%, rgba(56, 58, 231, 0.55), transparent 60%),
    radial-gradient(600px 260px at 100% 100%, rgba(14, 165, 233, 0.5), transparent 55%),
    linear-gradient(135deg, #101d35, #182747);
  color: #fff;
  overflow: hidden;
}
.wc-domain-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.wc-domain-cta h2 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}
.wc-domain-cta p { margin: 0; color: #b9c6de; font-size: 16px; max-width: 460px; }
.wc-domain-badge--dark { color: #7dd3fc; margin-bottom: 14px; }
.wc-domain-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 1024px) {
  .wc-domain-grid, .wc-domain-stepline { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .wc-domain-hero { padding: 80px 0 100px; }
  .wc-domain-search { flex-direction: column; }
  .wc-domain-field { padding-left: 14px; }
  .wc-domain-btn { padding: 16px; width: 100%; }
  .wc-domain-card { flex-wrap: wrap; }
  .wc-domain-card-cta { width: 100%; justify-content: center; }
  .wc-domain-cta { margin: 0 14px 60px; padding: 40px 24px; }
}
@media (max-width: 520px) {
  .wc-domain-grid, .wc-domain-stepline { grid-template-columns: 1fr; }
}

/* ---- Domain order ---- */
.wc-domain-btn-block { width: 100%; padding: 16px; border-radius: 14px; }
.wc-order-empty { text-align: center; padding: 40px 0; }
.wc-order-empty h2 { font-size: 26px; font-weight: 900; margin: 0 0 8px; }
.wc-order-empty p { color: var(--wc-muted, #64748b); margin: 0 0 20px; }
.wc-order-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: start;
}
.wc-order-summary,
.wc-order-form-panel {
  background: #fff;
  border: 1px solid var(--wc-line, #e2e8f0);
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.07);
}
.wc-order-summary-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.wc-order-summary-head h2,
.wc-order-form-panel h2 { font-size: 20px; font-weight: 800; margin: 0 0 4px; color: var(--wc-dark, #0f172a); }
.wc-order-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding: 13px 2px;
  border-bottom: 1px solid #f1f5f9;
}
.wc-order-label { font-size: 14px; color: var(--wc-muted, #64748b); font-weight: 600; }
.wc-order-row > strong { font-size: 15px; color: var(--wc-dark, #0f172a); font-weight: 800; }
.wc-order-domain {
  font-size: 19px;
  font-weight: 900;
  color: #4f46e5;
  word-break: break-all;
}
.wc-order-terms { display: flex; gap: 8px; }
.wc-order-term input { position: absolute; opacity: 0; width: 0; height: 0; }
.wc-order-term span {
  display: inline-block;
  cursor: pointer;
  font-size: 13.5px;
  font-weight: 800;
  color: #475569;
  background: #f1f5f9;
  border: 1.5px solid #e2e8f0;
  padding: 9px 16px;
  border-radius: 12px;
  transition: all 0.15s ease;
}
.wc-order-term input:checked + span {
  color: #fff;
  background: linear-gradient(135deg, #4f46e5, #0ea5e9);
  border-color: transparent;
  box-shadow: 0 8px 18px rgba(56, 58, 231, 0.35);
}
.wc-order-term input:focus-visible + span { outline: 3px solid rgba(79, 70, 229, 0.35); }
.wc-order-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 18px 0 6px;
  padding: 16px 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, #eef2ff, #e0f2fe);
  border: 1px solid #dfe5ff;
}
.wc-order-total span { font-size: 14px; font-weight: 700; color: #334155; }
.wc-order-total strong { font-size: 22px; font-weight: 900; color: var(--wc-dark, #0f172a); }
.wc-order-extra {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 16px;
  padding: 14px;
  border: 1px dashed #c7d2fe;
  border-radius: 14px;
  cursor: pointer;
}
.wc-order-extra input { margin-top: 3px; width: 18px; height: 18px; accent-color: #4f46e5; flex: none; }
.wc-order-extra strong { display: block; font-size: 14.5px; font-weight: 800; color: var(--wc-dark, #0f172a); }
.wc-order-extra small { font-size: 13px; line-height: 1.5; color: var(--wc-muted, #64748b); }
.wc-order-note { margin: 14px 0 0; font-size: 12.5px; color: var(--wc-muted, #64748b); line-height: 1.55; }
.wc-order-form { display: flex; flex-direction: column; gap: 14px; }
.wc-order-form label { display: flex; flex-direction: column; gap: 7px; font-size: 13.5px; font-weight: 700; color: #334155; }
.wc-order-form input,
.wc-order-form textarea {
  font: inherit;
  font-size: 15px;
  font-weight: 500;
  color: var(--wc-dark, #0f172a);
  border: 1.5px solid var(--wc-line, #e2e8f0);
  border-radius: 13px;
  padding: 12px 14px;
  background: #f8fafc;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.wc-order-form input:focus,
.wc-order-form textarea:focus {
  border-color: #4f46e5;
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15);
  background: #fff;
}
.wc-order-form textarea { resize: vertical; min-height: 74px; }
.wc-order-form-error {
  margin: 0;
  padding: 12px 14px;
  border-radius: 12px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
  font-size: 13.5px;
  font-weight: 700;
}
.wc-order-form-help { margin: 0; font-size: 12.5px; color: var(--wc-muted, #64748b); text-align: center; }
.wc-order-done { text-align: center; padding: 50px 20px; max-width: 560px; margin: 0 auto; }
.wc-order-done-check {
  width: 76px;
  height: 76px;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 34px;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, #16a34a, #38bdf8);
  box-shadow: 0 18px 40px rgba(22, 163, 74, 0.4);
  animation: wcOrderPop 0.5s cubic-bezier(0.22, 0.7, 0.3, 1.4) both;
}
@keyframes wcOrderPop {
  from { transform: scale(0.4); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.wc-order-done h2 { font-size: 30px; font-weight: 900; margin: 0 0 12px; color: var(--wc-dark, #0f172a); }
.wc-order-done p { font-size: 16px; line-height: 1.65; color: var(--wc-muted, #64748b); max-width: 420px; margin: 0 auto 26px; }
.wc-order-done p strong { color: var(--wc-dark, #0f172a); }
.wc-order-done-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
@media (max-width: 900px) {
  .wc-order-grid { grid-template-columns: 1fr; }
}
