:root {
  /* ===== Brand Colors ===== */
  --primary: #194479;
  --primary-soft: rgba(25, 68, 121, 0.12);

  --accent: #e26c0c;
  --accent-2: #ff974a;
  --accent-soft: rgba(226, 108, 12, 0.14);

  /* ===== Backgrounds ===== */
  --bg-dark: #0b1220;
  --bg-darker: #0a0f1a;
  --bg-light: #ffffff;
  --bg-surface: #f8fafc;

  /* ===== Text ===== */
  --text-strong: #0b1220;
  --text-main: #2b3345;
  --text-muted: #6b7280;

  /* ===== Layout ===== */
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;

  /* ===== Motion ===== */
  --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
}


*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  background: var(--bg-light);
  color: var(--text-main);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}



.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
}

.container.narrow {
  max-width: 860px;
}

.section {
  padding: 50px 0;
  position: relative;
}

.section.alt {
  background: var(--bg-surface);
}

.center {
  text-align: center;
}






/* ===============================
   WORDPRESS HERO – ADVANCED
================================ */
/* ===============================
   WORDPRESS HERO – ADVANCED
================================ */
/* ===============================
   WORDPRESS HERO – ADVANCED
================================ */

.wp-hero-advanced {
  position: relative;
  padding: 50px 0;
  background: linear-gradient(
    180deg,
    var(--bg-dark),
    var(--bg-darker)
  );
  overflow: hidden;
}

/* ENERGY BACKGROUND */
.wp-energy-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(226,108,12,.18), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(25,68,121,.18), transparent 45%);
  animation: pulseGlow 6s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%,100% { opacity: .7; }
  50% { opacity: 1; }
}

.wp-hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 100px;
  align-items: center;
}

/* LEFT TEXT */
.wp-tech-label {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(25,68,121,.08);
  color: var(--accent);
  font-size: 15px;
  margin-bottom: 26px;
  font-weight: 500;
}

.wp-hero-text h1 {
  font-size: clamp(42px, 4vw, 64px);
  line-height: 1.1;
  color: var(--text-strong);
  margin-bottom: 18px;
}

.wp-hero-text h1 span {
  color: var(--primary);
}

.wp-hero-text h2 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--text-main);
  margin-bottom: 26px;
  max-width: 620px;
}

.wp-hero-text p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-main);
  max-width: 620px;
  margin-bottom: 18px;
}

/* CTA */
.wp-cta-advanced {
  display: inline-block;
  margin-top: 34px;
  padding: 16px 38px;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    var(--primary),
    var(--accent)
  );
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  box-shadow:
    0 12px 40px rgba(226,108,12,.35);
  transition: var(--transition-med);
}

.wp-cta-advanced:hover {
  transform: translateY(-4px) scale(1.02);
}

/* RIGHT – 3D WORDPRESS SYSTEM */
.wp-hero-visual-3d {
  position: relative;
  width: 420px;
  height: 420px;
  margin: auto;
  perspective: 1000px;
}
.wp-core-holder {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  z-index: 5;
}

/* CORE */
.wp-core {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--primary),
    var(--accent)
  );
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 64px;
  font-weight: 700;
  box-shadow: 0 20px 60px rgba(25,68,121,.45);
  animation: coreFloat 4s ease-in-out infinite;
}


@keyframes coreFloat {
  0%,100% {
    transform: translateY(0);
  }
  10% {
    transform: translateY(-12px);
  }
}

.wp-core {
  animation:
    coreFloat 4s ease-in-out infinite,
    coreRotate 12s linear infinite;
}

@keyframes coreRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ORBITS */
.wp-orbit {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  animation: rotateOrbit linear infinite;
}

.orbit-1 { animation-duration: 14s; }
.orbit-2 { animation-duration: 18s; }
.orbit-3 { animation-duration: 22s; }
.orbit-4 { animation-duration: 26s; }
.orbit-5 { animation-duration: 30s; }

@keyframes rotateOrbit {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* NODES */
.wp-node {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 14px;
  background: #fff;
  border-radius: 999px;
  font-size: 13px;
  color: var(--text-strong);
  box-shadow: var(--shadow-soft);
  white-space: nowrap;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .wp-hero-layout {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .wp-hero-visual-3d {
    width: 320px;
    height: 320px;
  }
}



/* ===============================
   WHY WORDPRESS – ADVANCED
================================ */

.wp-why-advanced {
  position: relative;
  padding: 50px 0;
  background: var(--bg-light);
  overflow: hidden;
}

/* Soft brand glow */
.wp-why-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(25,68,121,.08), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(226,108,12,.08), transparent 45%);
}

/* Layout */
.wp-why-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 90px;
  align-items: flex-start;
}

/* LEFT CONTENT */
.wp-why-content h2 {
  font-size: clamp(34px, 3.2vw, 48px);
  line-height: 1.2;
  color: var(--text-strong);
  margin-bottom: 20px;
}

.wp-why-content p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-main);
  max-width: 620px;
  margin-bottom: 24px;
}

.wp-why-content h3 {
  font-size: 24px;
  margin-top: 34px;
  margin-bottom: 14px;
  color: var(--primary);
}

.wp-why-sub {
  color: var(--text-muted);
  max-width: 520px;
}

/* RIGHT SYSTEM */
.wp-benefit-system {
  position: relative;
  padding-left: 50px;
}

/* Vertical energy line */
.wp-energy-line {
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    180deg,
    transparent,
    var(--primary),
    var(--accent),
    transparent
  );
  opacity: .6;
}

/* Benefit items */
.wp-benefit-item {
  position: relative;
  margin-bottom: 38px;
  padding-left: 36px;
  transition: var(--transition-med);
}

.wp-benefit-item span {
  position: absolute;
  left: -4px;
  top: 2px;
  font-size: 20px;
  background: #fff;
  border-radius: 50%;
  padding: 6px;
  box-shadow: var(--shadow-soft);
}

.wp-benefit-item h4 {
  font-size: 18px;
  margin-bottom: 6px;
  color: var(--text-strong);
}

.wp-benefit-item p {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 360px;
}

/* Hover effect */
.wp-benefit-item:hover {
  transform: translateX(10px);
}

.wp-benefit-item:hover h4 {
  color: var(--primary);
}

/* Staggered feel */
.wp-benefit-item.one { margin-left: 10px; }
.wp-benefit-item.two { margin-left: 30px; }
.wp-benefit-item.three { margin-left: 5px; }
.wp-benefit-item.four { margin-left: 40px; }
.wp-benefit-item.five { margin-left: 15px; }
.wp-benefit-item.six { margin-left: 35px; }

/* Responsive */
@media (max-width: 992px) {
  .wp-why-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .wp-benefit-system {
    padding-left: 30px;
  }
}


/* ===============================
   ENTERPRISE WORDPRESS SERVICES
================================ */

.wp-services-enterprise {
  position: relative;
  padding: 160px 0;
  background: var(--bg-light);
  overflow: hidden;
}

/* Ambient atmosphere (very subtle) */
.wp-services-atmosphere {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 20%, rgba(25,68,121,.08), transparent 45%),
    radial-gradient(circle at 20% 80%, rgba(226,108,12,.08), transparent 45%);
}

/* GRID */
.wp-services-enterprise-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 120px;
  align-items: center;
}

/* LEFT – EDITORIAL */
.wp-services-editorial h2 {
  font-size: clamp(38px, 3.6vw, 52px);
  line-height: 1.15;
  color: var(--text-strong);
  margin-bottom: 26px;
}

.wp-services-lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-main);
  margin-bottom: 18px;
  max-width: 520px;
}

.wp-services-editorial p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 520px;
}

/* RIGHT – CAPABILITY SPACE */
.wp-capability-space {
  position: relative;
  height: 520px;
  perspective: 1200px;
}

/* Capability layers */
.wp-capability-layer {
  position: absolute;
  width: 420px;
  padding: 34px 36px;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-xl);
  box-shadow:
    0 30px 80px rgba(15,23,42,.08);
  transition: var(--transition-slow);
}

/* Typography */
.wp-capability-layer h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--text-strong);
}

.wp-capability-layer p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* Individual positioning (asymmetry = premium) */
.layer-core {
  top: 0;
  left: 40px;
  transform: translateZ(60px);
}

.layer-commerce {
  top: 110px;
  left: 260px;
  transform: translateZ(30px);
}

.layer-migration {
  top: 260px;
  left: 0;
  transform: translateZ(50px);
}

.layer-support {
  top: 340px;
  left: 220px;
  transform: translateZ(20px);
}

/* Hover depth (MNC subtlety) */
.wp-capability-layer:hover {
  transform: translateY(-12px) translateZ(80px);
  box-shadow:
    0 40px 120px rgba(15,23,42,.12);
}

/* Responsive */
@media (max-width: 1100px) {
  .wp-services-enterprise-grid {
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .wp-capability-space {
    height: 560px;
  }
}



/* ===============================
   WORDPRESS SERVICES – ULTRA UI
================================ */

.wp-services-ultra {
  padding: 140px 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(25,68,121,.06), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(226,108,12,.06), transparent 45%),
    var(--bg-dark);
}

/* SECTION TITLE */
.wp-services-title h2 {
  font-size: clamp(42px, 4vw, 56px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-strong);
  max-width: 900px;
  margin-bottom: 90px;
}

/* GRID */
.wp-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

/* SERVICE PANEL */
.wp-service-panel {
  position: relative;
  padding: 48px 48px 54px;
  border-radius: var(--radius-xxl);
  background: var(--bg-surface);
  box-shadow:
    0 30px 80px rgba(15,23,42,.08);
  transition: var(--transition-slow);
  overflow: hidden;
}

/* PREMIUM LIGHT OVERLAY */
.wp-service-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(25,68,121,.08),
      rgba(226,108,12,.08)
    );
  opacity: 0;
  transition: var(--transition-med);
}

/* CONTENT */
.wp-service-panel h3 {
  position: relative;
  font-size: 24px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 16px;
}

.wp-service-panel p {
  position: relative;
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-main);
  max-width: 520px;
}

/* HOVER – CONFIDENCE, NOT FLASH */
.wp-service-panel:hover {
  transform: translateY(-12px);
  box-shadow:
    0 40px 120px rgba(15,23,42,.14);
}

.wp-service-panel:hover::before {
  opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .wp-services-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .wp-service-panel {
    padding: 40px;
  }
}




/* ===============================
   UI/UX PROCESS – LIGHT PREMIUM
================================ */

.uiux-process-dark{
  padding:50px 0;
  background:
    radial-gradient(circle at 20% 30%, var(--accent-soft), transparent 45%),
    radial-gradient(circle at 80% 70%, var(--primary-soft), transparent 45%);
}

/* Layout */
.uiux-process-wrap{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:90px;
  align-items:flex-start;
}

/* ===============================
   LEFT IMAGE (STICKY)
================================ */

.uiux-process-visual{
  position:sticky;
  top:120px;
  align-self:flex-start;
}

.uiux-process-visual img{
  width:100%;
  max-width:420px;
  display:block;
}

/* ===============================
   RIGHT STEPS
================================ */

.uiux-process-steps{
  display:flex;
  flex-direction:column;
}

/* ===============================
   STEP CARD
================================ */

.uiux-step{
  position:relative;
  display:grid;
  grid-template-columns:80px 1fr;
  gap:32px;
  padding:34px 32px;
  border-radius:var(--radius-xl);
  background:var(--bg-light);
  box-shadow:var(--shadow-soft);
  overflow:hidden;
  transition:var(--transition-med);
}

/* Spacing between cards */
.uiux-step + .uiux-step{
  margin-top:32px;
}

/* ===============================
   STEP NUMBER + CONNECTOR
================================ */

.step-number{
  position:relative;
  font-size:3.2rem;
  font-weight:600;
  color:var(--primary-soft);
  line-height:1;
}

/* Dot (button feel) */
.step-number::before{
  content:"";
  position:absolute;
  top:46px;
  left:50%;
  transform:translateX(-50%);
  width:10px;
  height:10px;
  border-radius:50%;
  background:var(--accent);
  box-shadow:0 0 0 6px var(--accent-soft);
  z-index:4;
}

/* Dotted vertical line */
.step-number::after{
  content:"";
  position:absolute;
  top:60px;
  left:50%;
  transform:translateX(-50%);
  width:2px;
  height:calc(100% + 40px);
  background:
    repeating-linear-gradient(
      to bottom,
      rgba(0,0,0,.25),
      rgba(0,0,0,.25) 4px,
      transparent 4px,
      transparent 8px
    );
}

/* Remove line for last step */
.uiux-step:last-child .step-number::after{
  display:none;
}

/* ===============================
   CONTENT
================================ */

.step-content h3{
  font-size:1.4rem;
  color:var(--text-strong);
  margin-bottom:4px;
}

.step-content h4{
  font-size:.95rem;
  font-weight:500;
  color:var(--accent-2);
  margin-bottom:10px;
}

.step-content p{
  font-size:.95rem;
  line-height:1.7;
  color:var(--text-main);
  margin-bottom:10px;
}

/* List */
.step-content ul{
  list-style:none;
  padding:0;
  margin:0;
}

.step-content li{
  position:relative;
  padding-left:22px;
  margin-bottom:8px;
  color:var(--text-muted);
  font-size:.95rem;
}

.step-content li::before{
  content:"—";
  position:absolute;
  left:0;
  color:var(--accent);
  transition:color .3s ease;
}

/* ===============================
   PREMIUM HOVER EFFECT
================================ */

/* Diagonal fill */
.uiux-step::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    135deg,
    var(--primary),
    var(--accent)
  );
  transform:scaleX(0);
  transform-origin:top right;
  transition:transform .6s cubic-bezier(.22,1,.36,1);
  z-index:1;
}

/* Border glow */
.uiux-step::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  border:2px solid transparent;
  background:linear-gradient(
    135deg,
    var(--accent),
    var(--primary)
  ) border-box;

  -webkit-mask:
    linear-gradient(#fff 0 0) padding-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite:xor;
          mask-composite:exclude;

  opacity:0;
  transition:opacity .4s ease;
  z-index:2;
}

/* Hover states */
.uiux-step:hover::before{
  transform:scaleX(1);
}

.uiux-step:hover::after{
  opacity:1;
}

/* Keep content above layers */
.uiux-step > *{
  position:relative;
  z-index:3;
}

/* Text color sync on hover */
.uiux-step:hover h3,
.uiux-step:hover h4,
.uiux-step:hover p,
.uiux-step:hover li{
  color:#fff;
}

.uiux-step:hover li::before{
  color:#fff;
}

.uiux-step:hover .step-number{
  color:rgba(255,255,255,.35);
}

.uiux-step:hover .step-number::before{
  background:#fff;
  box-shadow:0 0 0 6px rgba(255,255,255,.25);
}

.uiux-step:hover .step-number::after{
  background:
    repeating-linear-gradient(
      to bottom,
      rgba(255,255,255,.6),
      rgba(255,255,255,.6) 4px,
      transparent 4px,
      transparent 8px
    );
}


/* Brand-colored heading */
.seo-blue{
  background:linear-gradient(
    135deg,
    var(--primary),
    var(--accent)
  );
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}


.seo-orange{
  color:var(--accent); /* Brand Orange */
}


/* ===============================
   RESPONSIVE
================================ */

@media(max-width:900px){
  .uiux-process-wrap{
    grid-template-columns:1fr;
    gap:60px;
  }

  .uiux-process-visual{
    position:relative;
    top:auto;
    display:none;
  }

  .uiux-step{
    grid-template-columns:1fr;
  }

  .step-number{
    margin-bottom:12px;
  }

  .step-number::after{
    display:none;
  }
}


/* ===============================
   WORDPRESS SERVICES – TREE UI
================================ */

.wp-services-tree {
  padding:30px 0px 120px 0px;
  background:
    radial-gradient(circle at 20% 30%, rgba(25,68,121,.12), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(226,108,12,.12), transparent 45%),
    var(--bg-dark);
  position: relative;
}

.wp-tree-heading {
  font-size: clamp(42px, 4vw, 56px);
  color: var(--text-strong);
  max-width: 900px;
  margin-bottom: 10px;
  text-align: center;
}

/* TREE WRAPPER */
.wp-tree-wrapper {
  position: relative;
  height: 420px;
}

/* CENTER CORE */
.wp-tree-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  box-shadow: 0 30px 80px rgba(15,23,42,.35);
  z-index: 3;
  animation: coreFloat 5s ease-in-out infinite;
}

.wp-tree-core span {
  font-size: 22px;
  font-weight: 600;
}

.wp-tree-core small {
  font-size: 13px;
  opacity: .9;
}

/* BRANCHES */
.wp-tree-branch {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 2;
}

.wp-tree-branch.left { left: 0; padding-left: 40px; }
.wp-tree-branch.right { right: 0; padding-right: 40px; }

/* NODES */
.wp-tree-node {
  background: var(--bg-surface);
  padding: 34px 36px;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(15,23,42,.10);
  transition: var(--transition-med);
  margin: 10px;
}

.wp-tree-node h3 {
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 10px;
}

.wp-tree-node p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-main);
}

/* NODE HOVER */
.wp-tree-node:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 90px rgba(15,23,42,.18);
}

/* SVG LINES */
.wp-tree-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.wp-tree-lines path {
  fill: none;
  stroke: url(#treeGradient);
  stroke-width: 3;
  stroke-dasharray: 6 10;
  animation: dashMove 6s linear infinite;
}

/* ANIMATIONS */
@keyframes dashMove {
  to {
    stroke-dashoffset: -200;
  }
}

@keyframes coreFloat {
  0%,100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-12px); }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .wp-tree-wrapper {
    height: auto;
  }

  .wp-tree-core {
    position: static;
    transform: none;
    margin: 0 auto 60px;
  }

  .wp-tree-branch {
    position: static;
    width: 100%;
    gap: 40px;
    padding: 0;
  }

  .wp-tree-lines {
    display: none;
  }
}





/* ===============================
   SEO OPTIMIZED WORDPRESS – PRO
================================ */

.wp-seo-advanced {
  padding: 50px 0;
  background:
    radial-gradient(circle at 15% 30%, rgba(25,68,121,.10), transparent 45%),
    radial-gradient(circle at 85% 70%, rgba(226,108,12,.10), transparent 45%),
    var(--bg-light);
}

/* LAYOUT */
.wp-seo-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 120px;
  align-items: center;
}

/* LEFT CONTENT */
.wp-seo-content h2 {
  font-size: clamp(36px, 3.4vw, 48px);
  line-height: 1.2;
  color: var(--text-strong);
  margin-bottom: 22px;
}

.wp-seo-content p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-main);
  max-width: 520px;
  margin-bottom: 16px;
}

/* INTERNAL LINK */
.wp-seo-link {
  display: inline-block;
  margin-top: 26px;
  font-weight: 500;
  color: var(--primary);
  text-decoration: none;
  position: relative;
}

.wp-seo-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--primary),
    var(--accent)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-med);
}

.wp-seo-link:hover::after {
  transform: scaleX(1);
}

/* RIGHT SYSTEM */
/* ===============================
   SEO SIGNAL NETWORK – ADVANCED
================================ */

.wp-seo-system {
  position: relative;
  padding-left: 70px;
}

/* MAIN SPINE */
.wp-seo-spine {
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 3px;
  background:
    linear-gradient(
      180deg,
      transparent,
      var(--primary),
      var(--accent),
      transparent
    );
  overflow: hidden;
}

/* MOVING PULSE */
.wp-seo-spine::after {
  content: "";
  position: absolute;
  left: 0;
  top: -30%;
  width: 100%;
  height: 30%;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(255,255,255,.6),
    transparent
  );
  animation: spinePulse 4s linear infinite;
}

@keyframes spinePulse {
  to { top: 130%; }
}

/* NODE */
.wp-seo-node {
  position: relative;
  margin-bottom: 40px;
  padding-left: 50px;
  transition: var(--transition-med);
}

/* DOT */
.seo-dot {
  position: absolute;
  left: -6px;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--primary),
    var(--accent)
  );
  box-shadow:
    0 0 0 6px rgba(25,68,121,.15),
    0 0 0 12px rgba(226,108,12,.10);
  transition: var(--transition-med);
  z-index: 2;
}

/* DOTTED CONNECTOR */
.seo-connector {
  position: absolute;
  left: 20px;
  top: 12px;
  width: 30px;
  height: 2px;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(25,68,121,.6),
      rgba(25,68,121,.6) 6px,
      transparent 6px,
      transparent 12px
    );
  opacity: .8;
  animation: dashFlow 3s linear infinite;
  transition: var(--transition-med);
}

@keyframes dashFlow {
  to {
    background-position: 60px 0;
  }
}

/* TEXT */
.wp-seo-node p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-main);
  transition: var(--transition-fast);
}

/* 🔥 HOVER INTERACTION */
.wp-seo-node:hover {
  transform: translateX(18px);
}

.wp-seo-node:hover .seo-dot {
  transform: scale(1.4);
  box-shadow:
    0 0 0 10px rgba(25,68,121,.25),
    0 0 0 20px rgba(226,108,12,.20);
}

.wp-seo-node:hover .seo-connector {
  width: 50px;
  opacity: 1;
  background:
    repeating-linear-gradient(
      90deg,
      var(--primary),
      var(--primary) 6px,
      var(--accent) 6px,
      var(--accent) 12px
    );
}

.wp-seo-node:hover p {
  color: var(--text-strong);
}

/* STAGGER DEPTH */
.wp-seo-node.one { margin-left: 0; }
.wp-seo-node.two { margin-left: 24px; }
.wp-seo-node.three { margin-left: 10px; }
.wp-seo-node.four { margin-left: 30px; }
.wp-seo-node.five { margin-left: 16px; }

/* RESPONSIVE */
@media (max-width: 992px) {
  .wp-seo-system {
    padding-left: 40px;
  }

  .seo-connector {
    width: 40px;
  }
}

/* ============================
   SEO SYSTEM – RESPONSIVE FIX
============================ */

/* Tablet */
@media (max-width: 900px){

  .wp-seo-layout{
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .wp-seo-content h2{
    font-size: 32px;
  }

  .wp-seo-content p{
    max-width: 100%;
    font-size: 15.5px;
  }

  .wp-seo-system{
    padding-left: 30px;
  }
}

/* Mobile */
@media (max-width: 600px){

  .wp-seo-advanced{
    padding: 35px 0;
  }

  .wp-seo-content h2{
    font-size: 26px;
    line-height: 1.3;
  }

  .wp-seo-content p{
    font-size: 14.5px;
    line-height: 1.6;
  }

  /* Compact network */
  .wp-seo-system{
    padding-left: 18px;
  }

  .wp-seo-spine{
    left: 10px;
  }

  .wp-seo-node{
    margin-left: 0 !important;
    padding-left: 28px;
  }

  .seo-dot{
    width: 14px;
    height: 14px;
    left: -2px;
    box-shadow:
      0 0 0 4px rgba(25,68,121,.15),
      0 0 0 8px rgba(226,108,12,.10);
  }

  .seo-connector{
    width: 20px;
  }

  .wp-seo-node p{
    font-size: 14px;
  }

  /* Disable heavy hover on touch */
  .wp-seo-node:hover{
    transform: none;
  }
}



/* ===============================
   WHY SAASSTARGO – INNOVATIVE
================================ */

.wp-partner-innovative {
  padding: 50px 0;
  background:
    radial-gradient(circle at 20% 25%, rgba(25,68,121,.12), transparent 45%),
    radial-gradient(circle at 80% 75%, rgba(226,108,12,.12), transparent 45%),
    var(--bg-light);
}

/* LAYOUT */
.wp-partner-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 120px;
  align-items: center;
}

/* LEFT */
.wp-partner-content h2 {
  font-size: clamp(38px, 3.6vw, 50px);
  line-height: 1.2;
  color: var(--text-strong);
  margin-bottom: 22px;
}

.wp-partner-content p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-main);
  max-width: 520px;
  margin-bottom: 26px;
}

.wp-partner-content h4 {
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 36px;
}

/* CTA */
.wp-partner-cta {
  display: inline-block;
  padding: 16px 38px;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    var(--primary),
    var(--accent)
  );
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 14px 45px rgba(226,108,12,.35);
  transition: var(--transition-med);
}

.wp-partner-cta:hover {
  transform: translateY(-4px) scale(1.02);
}

/* RIGHT NETWORK */
.wp-trust-network {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

/* TRUST UNIT */
.wp-trust-unit {
  position: relative;
  padding: 40px 42px 40px 64px;
  border-radius: var(--radius-xl);
  background: var(--bg-surface);
  box-shadow: 0 20px 60px rgba(15,23,42,.08);
  overflow: hidden;
  transition: var(--transition-slow);
}

/* GRADIENT SURFACE */
.wp-trust-unit::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(25,68,121,.22),
      rgba(226,108,12,.22)
    );
  opacity: .25;
  transition: var(--transition-med);
}

/* MOVING LIGHT */
.wp-trust-unit::after {
  content: "";
  position: absolute;
  inset: -50%;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.45), transparent 45%);
  opacity: 0;
  transform: translate(-40%, -40%);
  transition: var(--transition-slow);
}

/* TEXT */
.wp-trust-unit p {
  position: relative;
  z-index: 2;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-main);
}

/* SIGNAL DOT */
.signal-dot {
  position: absolute;
  left: 28px;
  top: 42px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--primary),
    var(--accent)
  );
  z-index: 3;
}

/* DOT ENERGY RING */
.signal-dot::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background:
    conic-gradient(
      var(--primary),
      var(--accent),
      var(--primary)
    );
  opacity: .35;
  filter: blur(10px);
  animation: signalSpin 6s linear infinite;
}

/* HOVER – FULL SYSTEM RESPONSE */
.wp-trust-unit:hover {
  transform: translateY(-16px) scale(1.04);
  box-shadow: 0 45px 140px rgba(15,23,42,.18);
}

.wp-trust-unit:hover::before {
  opacity: .6;
}

.wp-trust-unit:hover::after {
  opacity: 1;
  transform: translate(0, 0);
}

.wp-trust-unit:hover .signal-dot {
  transform: scale(1.5);
}

/* STAGGER DEPTH */
.wp-trust-unit:nth-child(odd) {
  transform-origin: left center;
}

.wp-trust-unit:nth-child(even) {
  transform-origin: right center;
}

/* ANIMATIONS */
@keyframes signalSpin {
  to { transform: rotate(360deg); }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .wp-partner-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .wp-trust-network {
    grid-template-columns: 1fr;
  }
}






.uiux-final{
  padding:50px 0;
  background:rgb(255, 255, 255);
}

/* Grid */
.uiux-final-grid{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:110px;
  align-items:flex-start;
}

/* LEFT IMAGE */
.uiux-final-visual{
  position:sticky;
  top:120px;
}

.uiux-final-visual img{
  width:100%;
  max-width:420px;
  border-radius:var(--radius-xxl);
  
  display:block;
}

/* RIGHT CONTENT */
.uiux-final-content{
  display:flex;
  flex-direction:column;
  gap:120px;
}

/* PART 1 */
.uiux-final-pricing h2{
  font-size:2.6rem;
  line-height:1.15;
  color:var(--text-strong);
  margin-bottom:18px;
}

.final-blue{
  color:var(--primary);
}

.final-orange{
  color:var(--accent);
}

.final-lead{
  font-size:1.05rem;
  line-height:1.75;
  color:var(--text-main);
  max-width:620px;
  margin-bottom:28px;
}

/* PART 2 */
.uiux-final-convert h2{
  font-size:2.4rem;
  line-height:1.15;
  color:var(--text-strong);
  margin-bottom:14px;
}

.final-meta{
  font-size:.9rem;
  color:var(--text-muted);
  margin-bottom:12px;
}

.final-desc{
  font-size:1rem;
  line-height:1.75;
  color:var(--text-main);
  max-width:680px;
  margin-bottom:32px;
}

/* ACTIONS */
.uiux-final-actions{
  display:flex;
  gap:24px;
  align-items:center;
  flex-wrap:wrap;
}

/* Secondary CTA */
.btn-secondary{
  font-size:.95rem;
  color:var(--primary);
  text-decoration:none;
  position:relative;
  padding-bottom:4px;
}

.btn-secondary::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:0;
  height:2px;
  background:linear-gradient(
    to right,
    var(--primary),
    var(--accent)
  );
  transition:width .4s cubic-bezier(.22,1,.36,1);
}

.btn-secondary:hover::after{
  width:100%;
}

/* ===============================
   RESPONSIVE
================================ */

@media(max-width:900px){
  .uiux-final-grid{
    grid-template-columns:1fr;
    gap:80px;
  }

  .uiux-final-visual{
    position:relative;
    top:auto;
  }

  .uiux-final-visual img{
    max-width:100%;
  }

  .uiux-final-content{
    gap:80px;
  }
}




/* ===============================
   PREMIUM FAQ SECTION
================================ */

.uiux-faq{
  padding:50px 0;
  background:var(--bg-dark);
  
}

.uiux-faq-header{
  max-width:760px;
  margin-bottom:80px;
}

.uiux-faq-header h2{
  font-size:2.5rem;
  color:var(--text-strong);
  margin-bottom:12px;
}

.uiux-faq-header p{
  color:var(--text-muted);
  line-height:1.7;
}

/* FAQ LIST */
.uiux-faq-list{
  max-width:900px;
}

/* ITEM */
.faq-item{
  border-radius:var(--radius-xl);
  background:var(--bg-light);
  box-shadow:var(--shadow-soft);
  margin-bottom:18px;
  overflow:hidden;
}

/* QUESTION */
.faq-question{
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:26px 30px;
  background:none;
  border:none;
  cursor:pointer;
  font-size:1.05rem;
  font-weight:500;
  color:var(--text-strong);
  text-align:left;
  transition:var(--transition-med);
}

/* ICON */
.faq-icon{
  width:22px;
  height:22px;
  position:relative;
}
.faq-icon::before,
.faq-icon::after{
  content:"";
  position:absolute;
  background:var(--accent);
  transition:var(--transition-med);
}
.faq-icon::before{
  width:2px;
  height:100%;
  left:50%;
  top:0;
  transform:translateX(-50%);
}
.faq-icon::after{
  width:100%;
  height:2px;
  top:50%;
  left:0;
  transform:translateY(-50%);
}

/* ANSWER */
.faq-answer{
  max-height:0;
  overflow:hidden;
  padding:0 30px;
  color:var(--text-muted);
  line-height:1.7;
  transition:max-height .5s ease, padding .4s ease;
}

/* ACTIVE */
.faq-item.active .faq-answer{
  max-height:260px;
  padding:0 30px 24px;
}

.faq-item.active .faq-icon::before{
  transform:translateX(-50%) rotate(90deg);
  opacity:0;
}

.faq-item.active .faq-question{
  color:var(--primary);
}
