/* ============================================================
   Web Design Services — PPC landing page
   Prefix: .wds-*
   Optimised for Google Ads landing page quality score.
============================================================ */

/* ===== Minimal landing nav ===== */
.wds-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in oklab, var(--bg) 92%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.wds-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}
.wds-nav .logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--fg);
  font-weight: 500;
}
.wds-nav .logo img { width: 28px; height: 28px; }
.wds-nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.wds-nav-phone {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--fg);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.wds-nav-phone svg { opacity: 0.7; }
.wds-nav .btn { font-size: 13px; padding: 10px 18px; }
.wds-theme-toggle {
  width: 34px; height: 34px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--fg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}
.wds-theme-toggle:hover {
  background: color-mix(in oklab, var(--fg) 5%, transparent);
  border-color: var(--fg);
}
@media (max-width: 720px) {
  .wds-nav-phone span.label { display: none; }
}

/* ===== HERO ===== */
.wds-hero {
  padding: clamp(48px, 7vw, 96px) 0 clamp(56px, 7vw, 104px);
  background: linear-gradient(180deg, var(--bg) 0%, color-mix(in oklab, var(--fg) 2%, var(--bg)) 100%);
  position: relative;
}
.wds-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
}
.wds-hero-copy { padding-top: 8px; }
.wds-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--accent);
  color: var(--accent-ink);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 24px;
}
.wds-hero-eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent-ink);
  animation: wdsPulse 2s ease-in-out infinite;
}
@keyframes wdsPulse { 50% { opacity: 0.4; } }

.wds-hero-head {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(36px, 5.2vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  text-wrap: balance;
}
.wds-hero-head em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--fg);
}
.wds-hero-sub {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(16px, 1.3vw, 20px);
  color: var(--fg);
  margin: 0 0 14px;
}
.wds-hero-sub strong {
  color: var(--fg);
  background: color-mix(in oklab, var(--accent) 45%, transparent);
  padding: 2px 8px;
  border-radius: 4px;
}
.wds-hero-tag {
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.55;
  color: var(--fg-soft);
  margin: 0 0 28px;
  max-width: 52ch;
}

.wds-hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  gap: 12px;
  max-width: 46ch;
}
.wds-hero-bullet {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.45;
  color: var(--fg);
}
.wds-hero-bullet svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent-ink);
  background: var(--accent);
  border-radius: 50%;
  padding: 3px;
  width: 18px; height: 18px;
}

.wds-hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.wds-hero-ctas .btn { font-size: 14px; padding: 14px 24px; }
.wds-hero-ctas-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--fg);
}
.wds-hero-ctas-phone a {
  color: var(--fg);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.wds-hero-ctas-phone a:hover { color: var(--accent); }

/* ===== HERO FORM CARD ===== */
.wds-form-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.28), 0 1px 0 color-mix(in oklab, var(--fg) 6%, transparent);
  position: sticky;
  top: 80px;
}
[data-theme="light"] .wds-form-card {
  background: #fff;
  box-shadow: 0 30px 80px rgba(0,0,0,0.08), 0 1px 0 color-mix(in oklab, var(--fg) 6%, transparent);
}
.wds-form-card-head {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.wds-form-card-title {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}
.wds-form-card-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}
.wds-form-card-sub {
  font-size: 13px;
  color: var(--fg-soft);
  margin: 0;
}
.wds-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.wds-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.wds-field { display: flex; flex-direction: column; gap: 6px; }
.wds-field label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.wds-field label .req { color: var(--accent); margin-left: 3px; }
.wds-field input,
.wds-field select,
.wds-field textarea {
  font-family: var(--font-sans);
  font-size: 14px;
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--fg);
  outline: none;
  -webkit-appearance: none; appearance: none;
  transition: border-color .2s;
}
.wds-field input:focus,
.wds-field select:focus,
.wds-field textarea:focus { border-color: var(--fg); }
.wds-field textarea { min-height: 90px; resize: vertical; line-height: 1.5; }
.wds-field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23808088' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; background-size: 14px;
  padding-right: 36px;
}
.wds-form button[type=submit] {
  margin-top: 4px;
  width: 100%;
  justify-content: center;
  font-size: 14px;
  padding: 14px;
}
.wds-form button[type=submit]:disabled { opacity: 0.5; cursor: not-allowed; }
.wds-form-privacy {
  font-size: 11px;
  color: var(--fg-muted);
  text-align: center;
  margin: 4px 0 0;
  line-height: 1.4;
}
.wds-form-alert {
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.45;
}
.wds-form-alert-success {
  background: color-mix(in oklab, var(--accent) 18%, transparent);
  border: 1px solid color-mix(in oklab, var(--accent) 45%, transparent);
}
.wds-form-alert-error {
  background: color-mix(in oklab, #ef4444 12%, transparent);
  border: 1px solid color-mix(in oklab, #ef4444 40%, transparent);
}
.wds-honeypot {
  position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden;
}

@media (max-width: 980px) {
  .wds-hero-grid { grid-template-columns: 1fr; }
  .wds-form-card { position: static; margin-top: 16px; }
}
@media (max-width: 600px) {
  .wds-hero { padding: 32px 0 56px; }
  .wds-form-row { grid-template-columns: 1fr; }
  .wds-form-card { padding: 22px; }
}

/* ===== TRUST STRIP ===== */
.wds-trust {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.wds-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: center;
}
.wds-trust-tile {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
  position: relative;
}
.wds-trust-tile:not(:last-child)::after {
  content: "";
  position: absolute; right: -12px; top: 10%; bottom: 10%;
  width: 1px; background: var(--border);
}
.wds-trust-k {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing: -0.02em;
  color: var(--fg);
  line-height: 1;
}
.wds-trust-l {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
@media (max-width: 760px) {
  .wds-trust-grid { grid-template-columns: repeat(2, 1fr); gap: 16px 12px; }
  .wds-trust-tile:nth-child(2n)::after { display: none; }
  .wds-trust-tile:nth-child(-n+2) { padding-bottom: 14px; border-bottom: 1px solid var(--border); }
  .wds-trust-tile:nth-child(-n+2)::after { display: none; }
}

/* ===== SECTION BASE ===== */
.wds-sec {
  padding: clamp(64px, 8vw, 120px) 0;
}
.wds-sec-head {
  text-align: left;
  max-width: 60ch;
  margin-bottom: clamp(32px, 4vw, 56px);
}
.wds-sec-head-center { text-align: center; margin-left: auto; margin-right: auto; }
.wds-sec-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.wds-sec-eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
}
.wds-sec-h2 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 18px;
  text-wrap: balance;
}
.wds-sec-h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}
.wds-sec-lede {
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.6;
  color: var(--fg-soft);
  margin: 0;
}

/* ===== BENEFITS ===== */
.wds-benefits {
  padding: clamp(64px, 8vw, 120px) 0;
  background: color-mix(in oklab, var(--fg) 2%, transparent);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.wds-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.wds-benefit {
  padding: 28px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: transform .3s ease, border-color .2s;
}
.wds-benefit:hover { transform: translateY(-4px); border-color: var(--fg); }
.wds-benefit-icon {
  width: 44px; height: 44px;
  background: var(--accent);
  color: var(--accent-ink);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.wds-benefit h3 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
}
.wds-benefit p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--fg-soft);
  margin: 0;
}
@media (max-width: 900px) { .wds-benefits-grid { grid-template-columns: 1fr; } }

/* ===== SERVICES GRID ===== */
.wds-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.wds-service {
  padding: 32px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--bg);
  transition: background .2s;
}
.wds-service:hover { background: color-mix(in oklab, var(--fg) 3%, transparent); }
.wds-service-graphic {
  aspect-ratio: 16 / 10;
  border-radius: 10px;
  margin-bottom: 8px;
  background: linear-gradient(135deg,
    color-mix(in oklab, var(--accent) 18%, var(--bg)) 0%,
    color-mix(in oklab, var(--fg) 6%, var(--bg)) 100%);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.wds-service-graphic::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, color-mix(in oklab, var(--border) 40%, transparent) 1px, transparent 1px),
    linear-gradient(to bottom, color-mix(in oklab, var(--border) 40%, transparent) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.3;
  pointer-events: none;
}
.wds-service-graphic svg {
  position: relative;
  z-index: 1;
  width: 60%;
  max-width: 160px;
  height: auto;
  color: var(--fg);
  transition: transform .4s cubic-bezier(.2,.7,.1,1);
}
.wds-service:hover .wds-service-graphic svg { transform: scale(1.08) rotate(-1deg); }
.wds-service h3 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.01em;
  margin: 0;
}
.wds-service p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--fg-soft);
  margin: 0;
}
@media (max-width: 900px) { .wds-services-grid { grid-template-columns: 1fr; } }

/* ===== HOSTING CALLOUT ===== */
.wds-hosting {
  padding: clamp(64px, 8vw, 120px) 0;
  background: #0E0E10;
  color: #F5F1EA;
}
.wds-hosting-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.wds-hosting-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--accent);
  color: var(--accent-ink);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 22px;
}
.wds-hosting h2 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 18px;
  color: #F5F1EA;
}
.wds-hosting h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.wds-hosting p {
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(245, 241, 234, 0.72);
  margin: 0 0 24px;
  max-width: 54ch;
}
.wds-hosting-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}
.wds-hosting-spec {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(245, 241, 234, 0.08);
  border: 1px solid rgba(245, 241, 234, 0.10);
  border-radius: 8px;
  font-size: 13.5px;
  color: #F5F1EA;
}
.wds-hosting-spec svg {
  flex-shrink: 0;
  color: var(--accent);
}
.wds-hosting-small {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(245, 241, 234, 0.5);
  margin: 0;
}
.wds-hosting-visual {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 14px;
  background: color-mix(in oklab, var(--bg) 8%, var(--fg));
}
.wds-hosting-visual img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  opacity: 0.85;
}
@media (max-width: 900px) {
  .wds-hosting-grid { grid-template-columns: 1fr; }
  .wds-hosting-specs { grid-template-columns: 1fr; }
}

/* ===== PRICING ===== */
.wds-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.wds-pkg {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: transform .3s ease, border-color .2s, box-shadow .3s;
}
.wds-pkg:hover {
  transform: translateY(-4px);
  border-color: var(--fg);
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}
.wds-pkg-popular {
  border-color: var(--accent);
  background: color-mix(in oklab, var(--accent) 10%, var(--bg));
}
.wds-pkg-popular::before {
  content: "Most Popular";
  position: absolute;
  top: -12px; left: 20px;
  padding: 4px 12px;
  background: var(--accent);
  color: var(--accent-ink);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  font-weight: 500;
}

.wds-pkg h3 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--fg);
}
.wds-pkg-price {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(32px, 3.4vw, 44px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--fg);
}
.wds-pkg-price sup {
  font-size: 0.5em;
  font-weight: 400;
  vertical-align: super;
  margin-right: 2px;
  color: var(--fg-muted);
}
.wds-pkg-price-quote {
  font-size: clamp(22px, 2.4vw, 28px);
  white-space: nowrap;
}
.wds-pkg ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.wds-pkg li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--fg-soft);
}
.wds-pkg li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent-ink);
  background: var(--accent);
  border-radius: 50%;
  padding: 2px;
  width: 14px; height: 14px;
}
.wds-pkg .btn {
  width: 100%;
  justify-content: center;
  font-size: 13px;
  padding: 12px;
}
.wds-pricing-foot {
  text-align: center;
  margin-top: 32px;
  font-size: 14px;
  color: var(--fg-soft);
}
.wds-pricing-foot a { color: var(--fg); border-bottom: 1px solid var(--fg); padding-bottom: 1px; }
@media (max-width: 1100px) { .wds-pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .wds-pricing-grid { grid-template-columns: 1fr; } }

/* ===== PROCESS ===== */
.wds-process {
  background: color-mix(in oklab, var(--fg) 2%, transparent);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.wds-process-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.wds-process-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
  padding: 32px 0;
  border-top: 1px solid var(--border);
}
.wds-process-item:first-child { border-top: none; }
.wds-process-n {
  font-family: var(--font-sans);
  font-size: clamp(32px, 3vw, 44px);
  font-weight: 400;
  color: var(--fg-muted);
  line-height: 1;
}
.wds-process-body h3 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(20px, 1.8vw, 26px);
  letter-spacing: -0.015em;
  margin: 0 0 10px;
}
.wds-process-body p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--fg-soft);
  margin: 0;
  max-width: 68ch;
}
@media (max-width: 760px) {
  .wds-process-item { grid-template-columns: 1fr; gap: 14px; padding: 28px 0; }
  .wds-process-n { font-size: 26px; }
}

/* ===== Why Choose — 5 narrow tall columns ===== */
.wds-whychoose-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.wds-whychoose-item {
  padding: 28px 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 300px;
  transition: transform .3s ease, border-color .2s;
}
.wds-whychoose-item:hover { transform: translateY(-4px); border-color: var(--fg); }
.wds-whychoose-n {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--fg-muted);
  font-weight: 500;
}
.wds-whychoose-item h3 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin: 0;
  color: var(--fg);
}
.wds-whychoose-item p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--fg-soft);
  margin: 0;
}
@media (max-width: 1100px) {
  .wds-whychoose-grid { grid-template-columns: repeat(3, 1fr); }
  .wds-whychoose-item { min-height: auto; }
}
@media (max-width: 640px) {
  .wds-whychoose-grid { grid-template-columns: 1fr; gap: 12px; }
}

/* Project card when wrapped in <a> — keep link styling neutral */
a.wds-project-link {
  text-decoration: none;
  color: inherit;
  display: flex;
}
a.wds-project-link:hover { text-decoration: none; color: inherit; }
a.wds-project-link .wds-project-url { color: var(--fg-soft); }
a.wds-project-link:hover .wds-project-url { color: var(--accent); }

/* ===== RECENT PROJECTS — advanced mockup gallery ===== */
.wds-projects {
  padding: clamp(64px, 8vw, 120px) 0;
  background: radial-gradient(ellipse at top,
    color-mix(in oklab, var(--accent) 8%, var(--bg)) 0%,
    var(--bg) 60%);
  overflow: hidden;
  position: relative;
}
.wds-projects-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 14px 0 28px;
}
.wds-projects-filter-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-right: 8px;
}
.wds-projects-filter button {
  padding: 7px 14px;
  font-family: var(--font-sans);
  font-size: 12.5px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: transparent;
  color: var(--fg);
  cursor: pointer;
  transition: background .2s, border-color .2s;
}
.wds-projects-filter button:hover { background: color-mix(in oklab, var(--fg) 5%, transparent); }
.wds-projects-filter button.is-active {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}

.wds-projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.wds-project {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: color-mix(in oklab, var(--fg) 3%, var(--bg));
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform .5s cubic-bezier(.2,.7,.1,1), box-shadow .5s, border-color .3s;
}
.wds-project:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 30px 60px rgba(0,0,0,0.20);
}
.wds-project-mock {
  position: relative;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  background: color-mix(in oklab, var(--fg) 5%, var(--bg));
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wds-project-mock::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, color-mix(in oklab, var(--accent) 15%, transparent) 0%, transparent 70%);
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}
.wds-project-mock img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  filter: drop-shadow(0 24px 40px rgba(0,0,0,0.35));
  transition: transform .6s cubic-bezier(.2,.7,.1,1);
}
.wds-project:hover .wds-project-mock img { transform: scale(1.04); }

.wds-project-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 2;
}
.wds-project-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.wds-project-industry {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.wds-project-num {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
}
.wds-project-name {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.015em;
  margin: 0;
  line-height: 1.2;
}
.wds-project-url {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-soft);
  text-decoration: none;
  margin-top: 6px;
}
.wds-project-url:hover { color: var(--accent); }
.wds-project-url svg { opacity: 0.6; }
.wds-project-notag {
  margin-top: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-muted);
}
@media (max-width: 980px) {
  .wds-projects-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .wds-projects-grid { grid-template-columns: 1fr; }
}

/* ===== REVIEWS ===== */
.wds-reviews-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.wds-reviews-rating {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg);
}
.wds-reviews-stars {
  display: inline-flex;
  gap: 2px;
  color: var(--accent);
}
.wds-reviews-rating-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.wds-reviews-rating-score {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 15px;
  color: var(--fg);
}
.wds-reviews-rating-count {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-muted);
}
.wds-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.wds-review {
  padding: 24px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.wds-review-stars {
  display: inline-flex;
  gap: 2px;
  color: var(--accent);
}
.wds-review-body {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--fg);
  margin: 0;
  flex: 1;
}
.wds-review-attr {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.wds-review-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 13px;
  flex-shrink: 0;
}
.wds-review-name {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 13.5px;
  color: var(--fg);
}
.wds-review-source {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--fg-muted);
}
@media (max-width: 900px) { .wds-reviews-grid { grid-template-columns: 1fr; } }

/* ===== FAQ ===== */
.wds-faq-list {
  max-width: 960px;
}
.wds-faq-item { border-top: 1px solid var(--border); }
.wds-faq-item:last-child { border-bottom: 1px solid var(--border); }
.wds-faq-q {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 22px 0;
  display: grid;
  grid-template-columns: 1fr 28px;
  gap: 16px;
  align-items: center;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.4;
  color: var(--fg);
  letter-spacing: -0.01em;
}
.wds-faq-plus {
  width: 28px; height: 28px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: background .2s, color .2s, border-color .2s, transform .25s;
}
.wds-faq-item-open .wds-faq-plus {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
  transform: rotate(180deg);
}
.wds-faq-a {
  padding: 0 0 22px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--fg-soft);
  max-width: 72ch;
}

/* ===== FINAL CTA ===== */
.wds-final {
  padding: clamp(72px, 9vw, 120px) 0;
  background: #0E0E10;
  color: #F5F1EA;
  text-align: center;
}
.wds-final h2 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 auto 18px;
  max-width: 18ch;
  color: #F5F1EA;
}
.wds-final h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.wds-final p {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(245, 241, 234, 0.68);
  max-width: 54ch;
  margin: 0 auto 32px;
}
.wds-final-ctas {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.wds-final-ctas .btn { background: var(--accent); color: var(--accent-ink); font-size: 15px; padding: 16px 28px; }
.wds-final-ctas-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 15px;
  color: #F5F1EA;
}
.wds-final-ctas-phone a { color: #F5F1EA; font-weight: 500; }
.wds-final-ctas-phone a:hover { color: var(--accent); }

/* ===== FOOTER (minimal) ===== */
.wds-foot {
  padding: 36px 0;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12.5px;
  color: var(--fg-muted);
  font-family: var(--font-mono);
}
.wds-foot-links a { color: var(--fg-muted); margin-right: 16px; }
.wds-foot-links a:hover { color: var(--fg); }

/* ============= MOBILE FIXES — additional (≤760px) ============= */
@media (max-width: 760px) {
  .wds-hero-grid,
  .wds-hosting-grid { grid-template-columns: 1fr !important; gap: 24px; }
  .wds-trust-grid,
  .wds-services-grid,
  .wds-projects-grid,
  .wds-reviews-grid,
  .wds-pricing-grid,
  .wds-benefits-grid,
  .wds-whychoose-grid { grid-template-columns: 1fr !important; gap: 16px; }
  .wds-form-row { grid-template-columns: 1fr !important; }
  .wds-hero-head { font-size: clamp(40px, 11vw, 60px) !important; }
}
