/* ==========================================================================
   Sellsvora Web Development Services — Stylesheet
   ========================================================================== */

/* ── Animations ─────────────────────────────────────────────────────────── */
@keyframes wdFadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes wdSlideIn {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes wdPulse {
  0%,100% { transform: scale(1); }
  50%      { transform: scale(1.04); }
}
@keyframes wdFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
@keyframes wdCountUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes wdShimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes wdRingFill {
  from { stroke-dashoffset: 314; }
  to   { stroke-dashoffset: var(--ring-target); }
}
@keyframes wdBounce {
  0%,100% { transform: translateY(0); }
  30%     { transform: translateY(-8px); }
  60%     { transform: translateY(-4px); }
}
@keyframes wdGlow {
  0%,100% { box-shadow: 0 0 20px rgba(31,122,92,.2); }
  50%      { box-shadow: 0 0 40px rgba(31,122,92,.45); }
}
@keyframes wdHeroDrift {
  from { background-size: 100%; }
  to   { background-size: 110%; }
}
@keyframes wdTypewriter {
  from { clip-path: inset(0 100% 0 0); }
  to   { clip-path: inset(0 0% 0 0); }
}
@keyframes wdProgressBar {
  from { width: 0; }
  to   { width: var(--bar-w); }
}
@keyframes wdParticle {
  0%   { transform: translateY(0) rotate(0deg); opacity: 1; }
  100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}
@keyframes wdCardTilt {
  0%   { transform: perspective(600px) rotateY(0deg); }
  50%  { transform: perspective(600px) rotateY(4deg); }
  100% { transform: perspective(600px) rotateY(0deg); }
}

/* ── Page wrapper ───────────────────────────────────────────────────────── */
.scs-webdev {
  --wd-green: #1F7A5C;
  --wd-green-d: #165e46;
  --wd-orange: #FF7A30;
  --wd-ink: #101820;
  --wd-paper: #F6F4EF;
  --wd-paper2: #ECE9E1;
  --wd-muted: #6B7280;
  --wd-white: #fff;
  --wd-radius: 20px;
  --wd-shadow: 0 24px 60px -18px rgba(16,24,32,.22);
  font-family: 'Inter', sans-serif;
  color: var(--wd-ink);
  background: var(--wd-paper);
}

/* ── HERO ───────────────────────────────────────────────────────────────── */
.wd-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(16,24,32,.82) 0%, rgba(16,24,32,.55) 100%),
    url('https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1600&q=80') center/cover no-repeat;
  animation: wdHeroDrift 14s ease-in-out infinite alternate;
  overflow: hidden;
  padding: clamp(60px,10vw,120px) clamp(24px,6vw,80px);
}

.wd-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(31,122,92,.25) 0%, transparent 65%);
  pointer-events: none;
}

.wd-hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.wd-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,122,48,.55);
  animation: wdParticle linear infinite;
}

.wd-hero-content {
  position: relative;
  max-width: 720px;
  z-index: 2;
}

.wd-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 40px;
  margin-bottom: 26px;
  animation: wdFadeUp .6s ease both;
}
.wd-hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--wd-orange);
  animation: wdPulse 1.6s ease infinite;
}

.wd-hero-title {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(38px,6vw,76px);
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  margin: 0 0 22px;
  animation: wdFadeUp .75s ease .1s both;
}
.wd-hero-title span {
  color: var(--wd-orange);
  display: inline-block;
  animation: wdTypewriter .9s steps(20) .8s both;
}

.wd-hero-desc {
  font-size: clamp(16px,2vw,20px);
  color: rgba(255,255,255,.82);
  line-height: 1.65;
  margin: 0 0 38px;
  max-width: 560px;
  animation: wdFadeUp .75s ease .22s both;
}

.wd-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: wdFadeUp .75s ease .38s both;
}

.wd-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform .25s, box-shadow .25s, background .2s;
}
.wd-btn-primary {
  background: var(--wd-green);
  color: #fff;
  box-shadow: 0 8px 30px rgba(31,122,92,.45);
}
.wd-btn-primary:hover {
  background: var(--wd-green-d);
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(31,122,92,.55);
}
.wd-btn-outline {
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  color: #fff;
  border: 2px solid rgba(255,255,255,.4);
}
.wd-btn-outline:hover {
  background: rgba(255,255,255,.22);
  transform: translateY(-3px);
}

.wd-hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 54px;
  flex-wrap: wrap;
  animation: wdFadeUp .75s ease .55s both;
}
.wd-stat {
  text-align: left;
}
.wd-stat-num {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.wd-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  margin-top: 4px;
}

/* ── TRUST BAR ──────────────────────────────────────────────────────────── */
.wd-trust-bar {
  background: var(--wd-ink);
  padding: 24px clamp(24px,6vw,80px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.wd-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.75);
  font-size: 14px;
  font-weight: 600;
}
.wd-trust-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(31,122,92,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

/* ── SECTION COMMONS ────────────────────────────────────────────────────── */
.wd-section {
  padding: clamp(60px,8vw,100px) clamp(24px,6vw,80px);
}
.wd-section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.wd-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(31,122,92,.1);
  color: var(--wd-green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 40px;
  margin-bottom: 18px;
}
.wd-section-title {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(28px,4vw,52px);
  font-weight: 800;
  color: var(--wd-ink);
  line-height: 1.1;
  margin: 0 0 16px;
}
.wd-section-sub {
  font-size: clamp(15px,1.8vw,18px);
  color: var(--wd-muted);
  max-width: 600px;
  line-height: 1.65;
  margin: 0 0 52px;
}

/* ── WHAT YOU GET ───────────────────────────────────────────────────────── */
.wd-section-alt {
  background: #fff;
}

.wd-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.wd-feature-card {
  background: var(--wd-paper);
  border-radius: var(--wd-radius);
  padding: 34px 28px;
  position: relative;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  border: 1.5px solid transparent;
}
.wd-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--wd-green), var(--wd-orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.wd-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--wd-shadow);
  border-color: rgba(31,122,92,.15);
}
.wd-feature-card:hover::before {
  transform: scaleX(1);
}
.wd-feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--wd-green), var(--wd-green-d));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  animation: wdFloat 4s ease-in-out infinite;
}
.wd-feature-card:nth-child(2) .wd-feature-icon { animation-delay: .5s; }
.wd-feature-card:nth-child(3) .wd-feature-icon { animation-delay: 1s; }
.wd-feature-card:nth-child(4) .wd-feature-icon { animation-delay: 1.5s; }
.wd-feature-card:nth-child(5) .wd-feature-icon { animation-delay: 2s; }
.wd-feature-card:nth-child(6) .wd-feature-icon { animation-delay: 2.5s; }

.wd-feature-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--wd-ink);
  margin: 0 0 10px;
}
.wd-feature-desc {
  font-size: 14px;
  color: var(--wd-muted);
  line-height: 1.6;
  margin: 0;
}

/* ── PLANS ──────────────────────────────────────────────────────────────── */
.wd-section-dark {
  background: var(--wd-ink);
}
.wd-section-dark .wd-section-title {
  color: #fff;
}
.wd-section-dark .wd-section-sub {
  color: rgba(255,255,255,.6);
}
.wd-section-dark .wd-section-tag {
  background: rgba(31,122,92,.3);
  color: rgba(255,255,255,.8);
}

.wd-plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  align-items: stretch;
}

.wd-plan-card {
  background: rgba(255,255,255,.05);
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: 24px;
  padding: 40px 34px;
  position: relative;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  display: flex;
  flex-direction: column;
}
.wd-plan-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(31,122,92,.08) 0%, transparent 60%);
  pointer-events: none;
}
.wd-plan-card:hover {
  transform: translateY(-10px);
  border-color: rgba(31,122,92,.5);
  box-shadow: 0 30px 70px -20px rgba(0,0,0,.5), 0 0 0 1px rgba(31,122,92,.25);
}
.wd-plan-card.wd-plan-featured {
  background: var(--wd-green);
  border-color: var(--wd-green);
  animation: wdGlow 3s ease-in-out infinite;
}
.wd-plan-card.wd-plan-featured::after {
  background: linear-gradient(135deg, rgba(255,255,255,.1) 0%, transparent 60%);
}
.wd-plan-card.wd-plan-custom {
  background: linear-gradient(135deg, rgba(255,122,48,.12), rgba(31,122,92,.08));
  border-color: rgba(255,122,48,.35);
}

.wd-plan-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 30px;
  margin-bottom: 20px;
  width: fit-content;
}
.wd-plan-featured .wd-plan-badge {
  background: rgba(255,255,255,.2);
  color: #fff;
}
.wd-plan-card:not(.wd-plan-featured):not(.wd-plan-custom) .wd-plan-badge {
  background: rgba(31,122,92,.15);
  color: var(--wd-green);
}
.wd-plan-custom .wd-plan-badge {
  background: rgba(255,122,48,.2);
  color: var(--wd-orange);
}

.wd-plan-name {
  font-family: 'Inter Tight', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 8px;
}
.wd-plan-card:not(.wd-plan-featured) .wd-plan-name {
  color: rgba(255,255,255,.95);
}

.wd-plan-tagline {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  margin: 0 0 28px;
  line-height: 1.5;
}
.wd-plan-featured .wd-plan-tagline {
  color: rgba(255,255,255,.8);
}

.wd-plan-price-block {
  margin-bottom: 10px;
}
.wd-plan-price {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.wd-plan-price sup {
  font-size: 22px;
  vertical-align: super;
  font-weight: 700;
}
.wd-plan-price-note {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  margin: 4px 0 0;
}
.wd-plan-featured .wd-plan-price-note {
  color: rgba(255,255,255,.7);
}
.wd-plan-gst-note {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.08);
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 22px;
}
.wd-plan-featured .wd-plan-gst-note {
  background: rgba(255,255,255,.2);
  color: rgba(255,255,255,.85);
}

.wd-plan-divider {
  height: 1px;
  background: rgba(255,255,255,.1);
  margin: 0 0 24px;
}
.wd-plan-featured .wd-plan-divider {
  background: rgba(255,255,255,.25);
}

.wd-plan-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}
.wd-plan-meta-item {
  background: rgba(255,255,255,.07);
  border-radius: 10px;
  padding: 10px 12px;
}
.wd-plan-featured .wd-plan-meta-item {
  background: rgba(255,255,255,.15);
}
.wd-plan-meta-label {
  font-size: 11px;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 600;
}
.wd-plan-featured .wd-plan-meta-label {
  color: rgba(255,255,255,.7);
}
.wd-plan-meta-value {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,.9);
  margin-top: 3px;
}
.wd-plan-featured .wd-plan-meta-value {
  color: #fff;
}

.wd-plan-included-label{color:rgba(255,255,255,.9);font-size:15px;font-weight:800;margin:0 0 10px;letter-spacing:.01em}.wd-plan-card:not(.wd-plan-featured) .wd-plan-included-label{color:#fff}.wd-plan-card:hover .wd-plan-included-label{color:#ff9a5c}.wd-plan-features {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  flex: 1;
}
.wd-plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.75);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  line-height: 1.45;
}
.wd-plan-featured .wd-plan-features li {
  color: rgba(255,255,255,.9);
  border-color: rgba(255,255,255,.12);
}
.wd-plan-features li:last-child {
  border-bottom: none;
}
.wd-plan-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(31,122,92,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 1px;
}
.wd-plan-featured .wd-plan-check {
  background: rgba(255,255,255,.25);
}

.wd-plan-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 17px 28px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform .25s, box-shadow .25s, background .2s;
  margin-top: auto;
}
.wd-plan-cta-primary {
  background: #fff;
  color: var(--wd-green);
}
.wd-plan-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0,0,0,.25);
}
.wd-plan-cta-outline {
  background: transparent;
  color: rgba(255,255,255,.85);
  border: 2px solid rgba(255,255,255,.25);
}
.wd-plan-cta-outline:hover {
  background: rgba(255,255,255,.08);
  transform: translateY(-3px);
  border-color: rgba(255,255,255,.5);
}
.wd-plan-cta-custom {
  background: var(--wd-orange);
  color: #fff;
}
.wd-plan-cta-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255,122,48,.4);
  background: #e0631f;
}

/* ── REVENUE SPLIT SECTION ──────────────────────────────────────────────── */
.scs-webdev{scroll-behavior:smooth}.scs-webdev a,.scs-webdev a:hover,.scs-webdev a:focus{text-decoration:none!important}.wd-split-section {
  background: #fff;
}
.wd-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width:768px) { .wd-split-grid { grid-template-columns: 1fr; } }

.wd-split-visual {
  position: relative;
}
.wd-split-ring-wrap {
  position: relative;
  width: 260px;
  height: 260px;
  margin: 0 auto;
}
.wd-split-ring-wrap svg {
  transform: rotate(-90deg);
}
.wd-split-ring-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.wd-split-ring-label {
  font-size: 13px;
  color: var(--wd-muted);
  font-weight: 600;
}
.wd-split-ring-value {
  font-size: 40px;
  font-weight: 800;
  color: var(--wd-ink);
  line-height: 1;
}

.wd-split-legend {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 32px;
}
.wd-split-legend-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.wd-split-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
}
.wd-split-legend-text strong {
  font-size: 16px;
  font-weight: 700;
  display: block;
  color: var(--wd-ink);
}
.wd-split-legend-text span {
  font-size: 13px;
  color: var(--wd-muted);
}

.wd-split-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.wd-split-info-card {
  background: var(--wd-paper);
  border-radius: 16px;
  padding: 24px;
  border-left: 4px solid var(--wd-green);
}
.wd-split-info-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--wd-ink);
  margin: 0 0 8px;
}
.wd-split-info-desc {
  font-size: 14px;
  color: var(--wd-muted);
  margin: 0;
  line-height: 1.6;
}
.wd-split-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--wd-shadow);
  margin-top: 8px;
}
.wd-split-table th {
  background: var(--wd-green);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 14px 18px;
  text-align: left;
}
.wd-split-table td {
  padding: 13px 18px;
  font-size: 14px;
  color: var(--wd-ink);
  border-bottom: 1px solid var(--wd-paper2);
}
.wd-split-table tr:last-child td { border-bottom: none; }
.wd-split-table tr:hover td { background: rgba(31,122,92,.04); }
.wd-split-table .wd-td-strong {
  font-weight: 700;
}
.wd-split-table .wd-td-green {
  color: var(--wd-green);
  font-weight: 700;
}
.wd-split-table .wd-td-orange {
  color: var(--wd-orange);
  font-weight: 700;
}

/* ── PROCESS TIMELINE ───────────────────────────────────────────────────── */
.wd-process {
  background: var(--wd-paper);
}
.wd-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}
.wd-timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--wd-green), var(--wd-orange));
}
.wd-timeline-item {
  display: flex;
  gap: 28px;
  position: relative;
  padding-bottom: 42px;
  animation: wdSlideIn .6s ease both;
}
.wd-timeline-item:nth-child(2) { animation-delay: .1s; }
.wd-timeline-item:nth-child(3) { animation-delay: .2s; }
.wd-timeline-item:nth-child(4) { animation-delay: .3s; }
.wd-timeline-item:nth-child(5) { animation-delay: .4s; }
.wd-timeline-item:last-child { padding-bottom: 0; }

.wd-timeline-dot {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--wd-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  z-index: 1;
  box-shadow: 0 4px 20px rgba(31,122,92,.2);
  transition: transform .3s;
}
.wd-timeline-item:hover .wd-timeline-dot {
  transform: scale(1.12);
  box-shadow: 0 8px 30px rgba(31,122,92,.35);
}
.wd-timeline-body {
  padding-top: 12px;
}
.wd-timeline-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--wd-green);
  margin-bottom: 4px;
}
.wd-timeline-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--wd-ink);
  margin: 0 0 8px;
}
.wd-timeline-desc {
  font-size: 14px;
  color: var(--wd-muted);
  line-height: 1.6;
  margin: 0;
}

/* ── TECH STACK ─────────────────────────────────────────────────────────── */
.wd-work-section{background:#f7f5f0;overflow:hidden}.wd-work-slider{overflow:hidden}.wd-work-track{display:flex;gap:20px;width:max-content;animation:wdWorkSlide 32s linear infinite}.wd-work-track:hover{animation-play-state:paused}.wd-work-card{width:250px;min-height:155px;padding:24px;background:#fff;border:1px solid #e7e2d9;display:flex;flex-direction:column;gap:8px;color:#101820;box-shadow:0 8px 24px rgba(16,24,32,.06);transition:transform .25s,border-color .25s}.wd-work-card:hover{transform:translateY(-6px);border-color:#ff7a30}.wd-work-icon{color:#ff7a30;font-size:22px}.wd-work-card strong{font-size:16px}.wd-work-card small{color:#667085;font-size:12px}.wd-work-view{margin-top:auto;color:#ff7a30;font-size:12px;font-weight:700}@keyframes wdWorkSlide{from{transform:translateX(0)}to{transform:translateX(-50%)}}
.wd-tech-section {
  background: #fff;
}
.wd-tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px,1fr));
  gap: 20px;
}
.wd-tech-card {
  background: var(--wd-paper);
  border-radius: 14px;
  padding: 24px 16px;
  text-align: center;
  transition: transform .3s, box-shadow .3s;
  cursor: default;
  border: 1.5px solid transparent;
}
.wd-tech-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(16,24,32,.12);
  border-color: rgba(31,122,92,.18);
}
.wd-tech-emoji {
  font-size: 34px;
  display: block;
  margin-bottom: 10px;
  animation: wdBounce 3s ease infinite;
}
.wd-tech-card:nth-child(2) .wd-tech-emoji { animation-delay: .3s; }
.wd-tech-card:nth-child(3) .wd-tech-emoji { animation-delay: .6s; }
.wd-tech-card:nth-child(4) .wd-tech-emoji { animation-delay: .9s; }
.wd-tech-card:nth-child(5) .wd-tech-emoji { animation-delay: 1.2s; }
.wd-tech-card:nth-child(6) .wd-tech-emoji { animation-delay: 1.5s; }
.wd-tech-card:nth-child(7) .wd-tech-emoji { animation-delay: 1.8s; }
.wd-tech-card:nth-child(8) .wd-tech-emoji { animation-delay: 2.1s; }
.wd-tech-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--wd-ink);
}
.wd-tech-cat {
  font-size: 11px;
  color: var(--wd-muted);
  margin-top: 3px;
}

/* ── TESTIMONIALS ───────────────────────────────────────────────────────── */
.wd-testimonials {
  background: var(--wd-paper);
}
.wd-testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
  gap: 28px;
}
.wd-testi-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 8px 30px rgba(16,24,32,.07);
  transition: transform .3s;
  position: relative;
}
.wd-testi-card:hover {
  transform: translateY(-6px);
}
.wd-testi-quote {
  font-size: 48px;
  line-height: .8;
  color: var(--wd-green);
  opacity: .3;
  font-family: Georgia, serif;
  position: absolute;
  top: 20px;
  left: 24px;
}
.wd-testi-stars {
  color: #FBBF24;
  font-size: 16px;
  margin-bottom: 16px;
  margin-top: 10px;
}
.wd-testi-text {
  font-size: 15px;
  color: var(--wd-ink);
  line-height: 1.65;
  margin: 0 0 22px;
  font-style: italic;
}
.wd-testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.wd-testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--wd-green), var(--wd-orange));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  font-weight: 700;
  flex-shrink: 0;
}
.wd-testi-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--wd-ink);
}
.wd-testi-biz {
  font-size: 12px;
  color: var(--wd-muted);
}

/* ── FAQ ────────────────────────────────────────────────────────────────── */
.wd-faq-section {
  background: #fff;
}
.wd-faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.wd-faq-item {
  background: var(--wd-paper);
  border-radius: 14px;
  overflow: hidden;
  border: 1.5px solid transparent;
  transition: border-color .25s;
}
.wd-faq-item.wd-open {
  border-color: rgba(31,122,92,.2);
}
.wd-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--wd-ink);
  user-select: none;
}
.wd-faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--wd-green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: transform .3s;
}
.wd-open .wd-faq-icon {
  transform: rotate(45deg);
}
.wd-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .3s;
  padding: 0 24px;
}
.wd-open .wd-faq-a {
  max-height: 200px;
  padding: 0 24px 20px;
}
.wd-faq-a p {
  font-size: 14px;
  color: var(--wd-muted);
  line-height: 1.65;
  margin: 0;
}

/* ── CTA BANNER ─────────────────────────────────────────────────────────── */
.wd-cta-banner {
  background: linear-gradient(135deg, var(--wd-green) 0%, var(--wd-green-d) 100%);
  padding: clamp(60px,8vw,100px) clamp(24px,6vw,80px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.wd-cta-banner::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  pointer-events: none;
}
.wd-cta-banner::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -5%;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(0,0,0,.08);
  pointer-events: none;
}
.wd-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}
.wd-cta-title {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(30px,4vw,54px);
  font-weight: 800;
  color: #fff;
  margin: 0 0 18px;
  line-height: 1.1;
}
.wd-cta-desc {
  font-size: 17px;
  color: rgba(255,255,255,.8);
  margin: 0 0 38px;
  line-height: 1.6;
}
.wd-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.wd-cta-btn {
  padding: 17px 36px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform .25s, box-shadow .25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.wd-cta-btn-white {
  background: #fff;
  color: var(--wd-green);
}
.wd-cta-btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0,0,0,.25);
}
.wd-cta-btn-ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.4);
}
.wd-cta-btn-ghost:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-3px);
}

/* ── Scroll reveal ──────────────────────────────────────────────────────── */
.wd-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .65s ease, transform .65s ease;
}
.wd-reveal.wd-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .wd-hero { min-height: auto; padding: 80px 24px 60px; }
  .wd-hero-stats { gap: 20px; }
  .wd-plans-grid { grid-template-columns: 1fr; }
  .wd-trust-bar { justify-content: center; gap: 20px; }
  .wd-timeline::before { left: 22px; }
  .wd-timeline-dot { width: 46px; height: 46px; font-size: 18px; }
  .wd-features-grid { grid-template-columns: 1fr; }
}
.wd-plan-image{height:150px;overflow:hidden;background:#102a43;position:relative}.wd-plan-image img{width:100%;height:100%;object-fit:cover;opacity:.72;filter:saturate(1.3)}.wd-plan-image:after{content:'';position:absolute;inset:0;background:linear-gradient(135deg,rgba(31,122,92,.75),rgba(15,23,42,.2))}.wd-plan-image-professional:after{background:linear-gradient(135deg,rgba(255,122,48,.75),rgba(15,23,42,.2))}.wd-plan-image-custom:after{background:linear-gradient(135deg,rgba(99,102,241,.75),rgba(15,23,42,.2))}.wd-split-section{display:none!important}
/* The public page no longer exposes the internal technology-stack section. */
.wd-tech-section{display:none!important}
/* Website portfolio cards: visual previews make each project scannable. */
.wd-work-card{overflow:hidden;padding-top:0!important;display:flex!important;flex-direction:column!important;align-items:flex-start!important}
.wd-work-card:before{content:"";display:block;width:calc(100% + 0px);height:142px;flex:0 0 142px;background:linear-gradient(135deg,rgba(6,63,53,.12),rgba(255,122,48,.1)),url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&w=900&q=82') center/cover no-repeat;border-bottom:1px solid #eee7df}
.wd-work-card:nth-child(2n):before{background-image:linear-gradient(135deg,rgba(20,33,61,.12),rgba(99,102,241,.12)),url('https://images.unsplash.com/photo-1558655146-d09347e92766?auto=format&fit=crop&w=900&q=82')}
.wd-work-card:nth-child(3n):before{background-image:linear-gradient(135deg,rgba(31,122,92,.12),rgba(255,122,48,.12)),url('https://images.unsplash.com/photo-1559028012-481c04fa702d?auto=format&fit=crop&w=900&q=82')}
.wd-work-card>*{margin-left:26px;margin-right:26px}
.wd-work-card .wd-work-icon{margin-top:20px}
.wd-work-rating small{font-size:0}
.wd-work-rating small:after{content:'Professional website design & development';font-size:13px;color:#667085;font-weight:500}
@media(max-width:700px){.wd-work-card:before{height:125px;flex-basis:125px}.wd-work-card>*{margin-left:20px;margin-right:20px}}
/* ── Portfolio Work Cards with Image Backgrounds ──────────────────────── */
.wd-work-card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  width: 280px;
  flex: 0 0 280px;
  padding: 0 !important;
  border-radius: 16px;
  border: none;
  box-shadow: 0 8px 30px rgba(0,0,0,.15);
  transition: transform .35s ease, box-shadow .35s ease;
  background-size: cover;
  background-position: center;
  text-decoration: none !important;
}

.wd-work-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0,0,0,.3);
  text-decoration: none !important;
}

.wd-work-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16,24,32,.4) 0%, rgba(16,24,32,.85) 100%);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  transition: background .3s ease;
}

.wd-work-card:hover .wd-work-overlay {
  background: linear-gradient(180deg, rgba(16,24,32,.2) 0%, rgba(16,24,32,.92) 100%);
}

.wd-work-overlay .wd-work-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 20px;
  color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.12);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  transition: background .3s ease, transform .3s ease;
}

.wd-work-card:hover .wd-work-overlay .wd-work-icon {
  background: rgba(255,122,48,.7);
  transform: rotate(45deg);
}

.wd-work-overlay strong {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.wd-work-rating {
  font-size: 14px;
  color: #FBBF24;
  margin-bottom: 4px;
}

.wd-work-rating small {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,.7);
  font-weight: 400;
  margin-top: 3px;
}

.wd-work-overlay > small {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  margin-bottom: 12px;
}

.wd-work-view {
  display: inline-block;
  padding: 8px 18px;
  border: 1.5px solid rgba(255,255,255,.3);
  border-radius: 40px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  transition: background .3s ease, border-color .3s ease;
}

.wd-work-card:hover .wd-work-view {
  background: #FF7A30;
  border-color: #FF7A30;
}

/* Adjust work track for new card sizes */
.wd-work-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: wdWorkSlide 40s linear infinite;
  padding: 8px 0;
}

@keyframes wdWorkSlide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Remove old work-card styles that conflict */
.wd-work-card:before {
  display: none !important;
}
.wd-work-card > * {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* Responsive adjustments for portfolio */
@media (max-width: 768px) {
  .wd-work-card {
    min-height: 220px;
    width: 220px;
    flex: 0 0 220px;
  }
  .wd-work-overlay {
    padding: 20px 16px;
  }
  .wd-work-overlay strong {
    font-size: 17px;
  }
}

@media (max-width: 480px) {
  .wd-work-card {
    min-height: 180px;
    width: 180px;
    flex: 0 0 180px;
  }
  .wd-work-overlay {
    padding: 14px 12px;
  }
  .wd-work-overlay strong {
    font-size: 15px;
  }
  .wd-work-rating {
    font-size: 12px;
  }
}

/* Hide the revenue split section as requested */
.wd-split-section {
  display: none !important;
}

/* The public page no longer exposes the internal technology-stack section. */
.wd-tech-section {
  display: none !important;
}
/* ── View Details Toggle for Plan Features ── */
.wd-toggle-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
  padding: 8px 0;
  font-size: 12px;
  color: rgba(255,255,255,.5);
  cursor: pointer;
  user-select: none;
  transition: color .2s;
  border-top: 1px solid rgba(255,255,255,.06);
}
.wd-toggle-row:hover {
  color: rgba(255,255,255,.8);
}
.wd-toggle-arrow {
  display: inline-block;
  transition: transform .3s ease;
  font-size: 11px;
}
.wd-plan-card.open .wd-toggle-arrow {
  transform: rotate(180deg);
}
.wd-plan-card.open .wd-feature-hidden {
  display: block !important;
}
.wd-plan-card.open .wd-feature-more-toggle {
  display: none !important;
}

/* ── Feature with description ── */
.wd-plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(255,255,255,.82);
  line-height: 1.45;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.wd-plan-features li:last-child {
  border-bottom: none;
}
.wd-plan-check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 900;
  margin-top: 1px;
  background: rgba(31,122,92,.25);
  color: #4ade80;
}
.wd-plan-featured .wd-plan-check {
  background: rgba(255,255,255,.15);
  color: #4ade80;
}
.wd-feat-label {
  flex: 1;
  min-width: 0;
}
.wd-feat-label strong {
  font-weight: 600;
  color: #fff;
}
.wd-feat-desc {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  line-height: 1.5;
  margin-top: 2px;
}
.wd-plan-card.open .wd-feat-desc {
  color: rgba(255,255,255,.7);
}
.wd-feature-more-toggle {
  cursor: pointer;
  color: rgba(255,255,255,.5) !important;
  font-size: 12px !important;
  padding: 6px 0 !important;
  border-bottom: none !important;
}
.wd-feature-more-toggle:hover {
  color: rgba(255,255,255,.8) !important;
}
.wd-feature-more-toggle .wd-toggle-arrow {
  display: inline-block;
  transition: transform .3s;
}
.wd-plan-card.open .wd-feature-more-toggle .wd-toggle-arrow {
  transform: rotate(180deg);
}
.wd-feature-hidden {
  display: none;
}
.wd-plan-card.open .wd-feature-hidden {
  display: flex !important;
}
.wd-plan-card.open .wd-feature-more-toggle {
  display: none !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .wd-feat-desc {
    font-size: 11px;
  }
  .wd-plan-features li {
    font-size: 12.5px;
    padding: 6px 0;
  }
}
/* ── Professional Plan Orange Theme ── */
.wd-plan-featured .wd-plan-cta-primary {
    background: #ff7a30 !important;
    border-color: #ff7a30 !important;
    box-shadow: 0 6px 22px rgba(255,122,48,.4) !important;
}
.wd-plan-featured .wd-plan-cta-primary:hover {
    background: #e86a20 !important;
    box-shadow: 0 10px 30px rgba(255,122,48,.5) !important;
}

/* ── Plan Card Image Styles ── */
.wd-plan-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 2; /* matches 1200x800 image size — full image shows, nothing gets cropped */
    overflow: hidden;
    background: #0a0d14;
    flex-shrink: 0;
}
.wd-plan-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}
.wd-plan-card:hover .wd-plan-image {
    transform: scale(1.05);
}
.wd-plan-featured-tag {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #ff7a30;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 30px;
    letter-spacing: .03em;
    box-shadow: 0 4px 16px rgba(255,122,48,.35);
}

/* ── Plan Content ── */
.wd-plan-content {
    padding: 22px 26px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.wd-plan-card {
    display: flex;
    flex-direction: column;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s;
    position: relative;
}
.wd-plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 60px rgba(0,0,0,.55);
}
.wd-plan-card.wd-plan-featured {
    border-color: #ff7a30;
    box-shadow: 0 0 0 1px #ff7a30, 0 16px 48px rgba(255,122,48,.18);
}

/* ── View Details Toggle ── */
.wd-toggle-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 14px;
    padding: 8px 0;
    font-size: 12px;
    color: rgba(255,255,255,.5);
    cursor: pointer;
    user-select: none;
    transition: color .2s;
    border-top: 1px solid rgba(255,255,255,.06);
}
.wd-toggle-row:hover {
    color: rgba(255,255,255,.8);
}
.wd-toggle-arrow {
    display: inline-block;
    transition: transform .3s ease;
    font-size: 11px;
}
.wd-plan-card.open .wd-toggle-arrow {
    transform: rotate(180deg);
}
.wd-plan-card.open .wd-feature-hidden {
    display: block !important;
}
.wd-plan-card.open .wd-feature-more-toggle {
    display: none !important;
}
.wd-feature-hidden {
    display: none;
}
.wd-feature-more-toggle {
    cursor: pointer;
}
.wd-feature-more-toggle span {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
}

/* ── Feature with description ── */
.wd-plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    color: rgba(255,255,255,.82);
    line-height: 1.45;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,.05);
}
.wd-plan-features li:last-child {
    border-bottom: none;
}
.wd-plan-check {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 900;
    margin-top: 1px;
    background: rgba(31,122,92,.25);
    color: #4ade80;
}
.wd-plan-featured .wd-plan-check {
    background: rgba(255,255,255,.15);
    color: #4ade80;
}
.wd-feat-label {
    flex: 1;
    min-width: 0;
}
.wd-feat-label strong {
    font-weight: 600;
    color: #fff;
}
.wd-feat-desc {
    font-size: 12px;
    color: rgba(255,255,255,.5);
    line-height: 1.5;
    margin-top: 2px;
}
.wd-plan-card.open .wd-feat-desc {
    color: rgba(255,255,255,.7);
}

/* Responsive */
@media (max-width: 768px) {
    .wd-plan-content {
        padding: 18px 18px 14px;
    }
}