:root {
  --wm-bg: #020617;
  --wm-surface: #0b1120;
  --wm-surface-alt: #111827;
  --wm-primary: #38328E;
  --wm-secondary: #863C91;
  --wm-accent: #F97316;
  --wm-text: #e5e7eb;
  --wm-muted: #9ca3af;
  --wm-border: rgba(148, 163, 184, 0.4);
}

/* RESET / BASE */

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

html{scroll-behavior:smooth;scroll-padding-top:68px}
html, body {
  margin: 0;
  padding: 0;
}

body {
  background: radial-gradient(circle at top left, #0b1120 0, #020617 45%, #020617 100%);
  color: var(--wm-text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

/* LAYOUT */

.wm-container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.wm-section {
  padding: 4rem 0;
}

.wm-section-alt {
  background-color: var(--wm-surface-alt);
}

/* HEADER */

.wm-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(2, 6, 23, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--wm-border);
}

.wm-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.75rem 1.25rem;
}

.wm-logo-main {
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 1.05rem;
}

.wm-logo-tag {
  display: block;
  font-size: 0.75rem;
  color: var(--wm-muted);
}

.wm-nav {
  display: flex;
  gap: 1.25rem;
  font-size: 0.9rem;
}

.wm-nav a {
  color: var(--wm-muted);
  text-decoration: none;
  position: relative;
}

.wm-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--wm-primary), var(--wm-secondary));
  transition: width 0.2s ease-out;
}

.wm-nav a:hover {
  color: var(--wm-text);
}

.wm-nav a:hover::after {
  width: 100%;
}

.wm-header-phone {
  font-size: 0.85rem;
  color: var(--wm-accent);
  text-decoration: none;
  white-space: nowrap;
}

/* HERO */

.wm-hero {
  padding-top: 5rem;
  padding-bottom: 4rem;
}

.wm-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 3rem;
  align-items: center;
}

.wm-eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--wm-accent);
  margin: 0 0 0.75rem;
}

.wm-hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.1rem);
  line-height: 1.1;
  margin: 0 0 1rem;
}

.wm-highlight {
  background: linear-gradient(120deg, var(--wm-primary), var(--wm-secondary), var(--wm-accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.wm-hero-text {
  max-width: 34rem;
  color: var(--wm-muted);
  margin: 0 0 1.5rem;
}

.wm-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.wm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.65rem 1.4rem;
  font-size: 0.95rem;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.12s ease-out, box-shadow 0.12s ease-out, background 0.2s ease-out, border-color 0.2s ease-out;
}

.wm-btn-primary {
  background: linear-gradient(135deg, var(--wm-primary), var(--wm-secondary));
  color: white;
  box-shadow: 0 10px 30px rgba(56, 50, 142, 0.45);
}

.wm-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 40px rgba(56, 50, 142, 0.6);
}

.wm-btn-ghost {
  background: transparent;
  color: var(--wm-text);
  border-color: var(--wm-border);
}

.wm-btn-ghost:hover {
  border-color: var(--wm-accent);
  color: var(--wm-accent);
}

.wm-hero-note {
  font-size: 0.85rem;
  color: var(--wm-muted);
}

.wm-hero-side {
  display: flex;
  justify-content: flex-end;
}

.wm-hero-card {
  background: radial-gradient(circle at top left, rgba(134, 60, 145, 0.55), transparent 60%),
              rgba(15, 23, 42, 0.98);
  border-radius: 1.5rem;
  padding: 1.5rem 1.75rem;
  border: 1px solid var(--wm-border);
  box-shadow: 0 16px 45px rgba(15, 23, 42, 0.9);
  max-width: 22rem;
}

.wm-hero-card h2 {
  margin: 0 0 0.5rem;
}

.wm-hero-card p {
  margin: 0.25rem 0;
}

.wm-hero-phone {
  display: block;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0.75rem 0 0.5rem;
  color: white;
  text-decoration: none;
}

.wm-hero-whatsapp {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: var(--wm-accent);
  text-decoration: none;
}

.wm-hero-small {
  font-size: 0.8rem;
  color: var(--wm-muted);
}

/* SECTIONS / CARDS */

.wm-section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.wm-section-header-left {
  text-align: left;
}

.wm-section-header h2 {
  font-size: 1.8rem;
  margin: 0 0 0.5rem;
}

.wm-section-header p {
  margin: 0;
  color: var(--wm-muted);
}

.wm-grid {
  display: grid;
  gap: 1.5rem;
}

.wm-grid-services {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.wm-grid-plans {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.wm-grid-process {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.wm-card {
  background-color: var(--wm-surface);
  border-radius: 1.25rem;
  padding: 1.5rem 1.7rem;
  border: 1px solid var(--wm-border);
}

.wm-card h3 {
  margin-top: 0.75rem;
  margin-bottom: 0.25rem;
}

.wm-badge {
  display: inline-block;
  font-size: 0.8rem;
  border-radius: 999px;
  padding: 0.2rem 0.7rem;
  background-color: rgba(249, 115, 22, 0.12);
  color: var(--wm-accent);
}

/* PLANS */

.wm-plan {
  position: relative;
}

.wm-plan-label {
  position: absolute;
  top: 1.1rem;
  right: 1.3rem;
  font-size: 0.85rem;
  font-weight: 700;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  border: 1px solid var(--wm-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--wm-muted);
}

.wm-plan-price {
  margin: 0.25rem 0 0.5rem;
  font-weight: 700;
}

.wm-plan-text {
  margin: 0;
  color: var(--wm-muted);
}

/* PROCESS */

.wm-step {
  background-color: var(--wm-surface);
  border-radius: 1rem;
  padding: 1.25rem 1.4rem;
  border: 1px dashed var(--wm-border);
}

.wm-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--wm-primary), var(--wm-secondary));
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

/* ABOUT / CONTACT / LIST */

.wm-about {
  max-width: 720px;
}

.wm-about p {
  margin-top: 0;
  color: var(--wm-muted);
}

.wm-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 480px;
}

.wm-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--wm-muted);
}

.wm-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.1rem;
  font-size: 0.9rem;
  color: var(--wm-accent);
}

.wm-contact {
  max-width: 720px;
}

.wm-contact-block {
  background-color: var(--wm-surface);
  border-radius: 1.5rem;
  padding: 1.75rem 1.9rem;
  border: 1px solid var(--wm-border);
}

.wm-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1.5rem;
  margin-top: 1.25rem;
  margin-bottom: 1rem;
}

.wm-contact-grid h3 {
  margin: 0 0 0.25rem;
}

.wm-contact-grid p {
  margin: 0;
}

.wm-contact-grid a {
  color: var(--wm-text);
  text-decoration: none;
}

.wm-contact-grid a:hover {
  color: var(--wm-accent);
}

.wm-contact-note {
  font-size: 0.9rem;
  color: var(--wm-muted);
}

/* FOOTER */

.wm-footer {
  border-top: 1px solid var(--wm-border);
  padding: 1.25rem 0 1.75rem;
  background-color: #020617;
}

.wm-footer-inner {
  text-align: center;
  font-size: 0.8rem;
  color: var(--wm-muted);
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .wm-header-inner {
    flex-wrap: wrap;
  }
  .wm-nav {
    display: none; /* keep simple for test */
  }
}

@media (max-width: 800px) {
  .wm-hero-inner {
    grid-template-columns: 1fr;
  }
  .wm-hero-side {
    justify-content: flex-start;
  }
}

/* ERROR PAGE */

.wm-hero-error {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.wm-hero-error-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.wm-hero-actions-center {
  justify-content: center;
}

/* Lang Switch */
.wm-header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.wm-lang-switch {
  display: flex;
  gap: 0.5rem;
  font-size: 0.85rem;
}

.wm-lang-switch a {
  color: var(--wm-muted);
  text-decoration: none;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  border: 1px solid transparent;
}

.wm-lang-switch a.is-active {
  border-color: var(--wm-border);
  color: var(--wm-text);
}

/* MOVING STORIES PAGE */
.wm-post-images img {
	border-radius: 8px;
	width: 256px;
	height: 256px;
}