/*
Theme Name: Digiweave
Theme URI: https://digiweave.co.uk
Description: Custom theme for Digiweave - a UK-based managed web design service.
Version: 1.1.4
Author: Digiweave
Author URI: https://digiweave.co.uk
Text Domain: digiweave
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

:root {
  --color-primary: #111a33;
  --color-primary-soft: #1c2952;
  --color-primary-alt: #24356b;
  --color-accent: #2f74ff;
  --color-accent-hover: #235fe0;
  --color-accent-violet: #6e46ff;
  --color-accent-cyan: #41d1ff;
  --color-accent-gold: #d4b06d;
  --color-text: #15203b;
  --color-text-light: #53627f;
  --color-text-muted: #73819a;
  --color-text-inverse: #ffffff;
  --color-bg: #f5f7fc;
  --color-bg-alt: #edf2fb;
  --color-bg-deep: #0d152c;
  --color-surface: #ffffff;
  --color-surface-strong: #f9fbff;
  --color-border: rgba(17, 26, 51, 0.1);
  --color-border-strong: rgba(17, 26, 51, 0.18);
  --gradient-brand: linear-gradient(135deg, #45d8ff 0%, #2f74ff 46%, #6e46ff 100%);
  --gradient-surface: linear-gradient(145deg, rgba(69, 216, 255, 0.1) 0%, rgba(47, 116, 255, 0.08) 45%, rgba(110, 70, 255, 0.12) 100%);
  --gradient-hero: radial-gradient(circle at top right, rgba(65, 209, 255, 0.18), transparent 34%), radial-gradient(circle at bottom left, rgba(110, 70, 255, 0.12), transparent 28%), linear-gradient(180deg, #f9fbff 0%, #eef3fb 100%);
  --font-heading: "Fraunces", Georgia, serif;
  --font-body: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  --font-mono: "SFMono-Regular", Consolas, monospace;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.4rem;
  --text-5xl: 3.4rem;
  --text-6xl: 4.4rem;
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 5rem;
  --space-5xl: 7rem;
  --container-max: 1240px;
  --container-narrow: 860px;
  --container-wide: 1380px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 10px 24px rgba(16, 26, 55, 0.06);
  --shadow-md: 0 18px 44px rgba(16, 26, 55, 0.09);
  --shadow-lg: 0 30px 70px rgba(16, 26, 55, 0.12);
  --shadow-xl: 0 40px 90px rgba(8, 16, 36, 0.18);
  --transition-fast: 180ms ease;
  --transition-base: 280ms ease;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.75;
  color: var(--color-text);
  background:
    radial-gradient(circle at top, rgba(65, 209, 255, 0.08), transparent 28%),
    linear-gradient(180deg, #f8faff 0%, var(--color-bg) 100%);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

a:hover {
  color: var(--color-accent-hover);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 var(--space-md);
  font-family: var(--font-heading);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--color-primary);
}

h1 {
  font-size: var(--text-6xl);
}

h2 {
  font-size: var(--text-4xl);
}

h3 {
  font-size: var(--text-2xl);
}

h4 {
  font-size: var(--text-xl);
}

p {
  margin: 0 0 var(--space-lg);
  color: var(--color-text-light);
}

ul,
ol {
  margin: 0 0 var(--space-lg);
  padding-left: 1.25rem;
}

li {
  margin-bottom: 0.55rem;
  color: var(--color-text-light);
}

strong {
  color: var(--color-text);
}

blockquote {
  margin: var(--space-xl) 0;
  padding: var(--space-lg) 0 var(--space-lg) var(--space-xl);
  border-left: 3px solid rgba(47, 116, 255, 0.35);
  color: var(--color-text-light);
}

.dw-container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.dw-container--narrow {
  max-width: var(--container-narrow);
}

.dw-container--wide {
  max-width: var(--container-wide);
}

.dw-section {
  position: relative;
  padding: var(--space-5xl) 0;
}

.dw-section--alt {
  background:
    radial-gradient(circle at top right, rgba(65, 209, 255, 0.12), transparent 25%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.65), rgba(237, 242, 251, 0.9));
}

.dw-section--dark {
  background:
    radial-gradient(circle at top right, rgba(65, 209, 255, 0.16), transparent 22%),
    linear-gradient(145deg, #0b1430 0%, #111d42 65%, #1a2550 100%);
  color: var(--color-text-inverse);
}

.dw-section--dark h1,
.dw-section--dark h2,
.dw-section--dark h3,
.dw-section--dark h4,
.dw-section--dark p,
.dw-section--dark li {
  color: var(--color-text-inverse);
}

.dw-section--dark p,
.dw-section--dark li {
  color: rgba(255, 255, 255, 0.78);
}

.dw-section--dark .dw-label {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.82);
}

.dw-section-header {
  max-width: 720px;
  margin: 0 auto var(--space-3xl);
  text-align: center;
}

.dw-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: var(--space-md);
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(47, 116, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--color-accent);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 620ms ease, transform 620ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  border-bottom: 1px solid rgba(17, 26, 51, 0.08);
  background: rgba(249, 251, 255, 0.8);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: box-shadow var(--transition-base), background-color var(--transition-base);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 48px rgba(17, 26, 51, 0.08);
}

.site-header .dw-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  gap: var(--space-xl);
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  color: var(--color-primary);
}

.site-logo:hover {
  color: var(--color-primary);
}

.site-logo__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.site-logo__mark--transparent {
  width: 54px;
  height: 54px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.site-logo__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-logo__lockup {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.site-logo__title {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--color-primary);
}

.site-logo__tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--color-text-muted);
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-nav li {
  margin: 0;
}

.primary-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  color: var(--color-text-light);
  font-size: var(--text-sm);
  font-weight: 700;
}

.primary-nav a:not(.dw-btn):hover,
.primary-nav .current-menu-item a,
.primary-nav .current_page_item a {
  background: rgba(47, 116, 255, 0.08);
  color: var(--color-primary);
}

.header-cta {
  margin-left: 0.5rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--color-primary);
  padding: 0.35rem;
  cursor: pointer;
}

.nav-toggle svg {
  width: 1.55rem;
  height: 1.55rem;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.nav-toggle .close-icon {
  display: none;
}

.nav-toggle.active .menu-icon {
  display: none;
}

.nav-toggle.active .close-icon {
  display: block;
}

.dw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 48px;
  padding: 0.9rem 1.35rem;
  border: 0;
  border-radius: 999px;
  font-size: var(--text-sm);
  font-weight: 800;
  letter-spacing: -0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

.dw-btn:hover {
  transform: translateY(-1px);
}

.dw-btn--primary {
  background: var(--gradient-brand);
  color: var(--color-text-inverse);
  box-shadow: 0 18px 38px rgba(47, 116, 255, 0.24);
}

.dw-btn--primary:hover,
.primary-nav .dw-btn--primary:hover,
.header-cta .dw-btn--primary:hover {
  background: var(--gradient-brand);
  color: var(--color-text-inverse);
  box-shadow: 0 20px 42px rgba(47, 116, 255, 0.3);
  transform: translateY(-2px);
}

.primary-nav .dw-btn--primary,
.primary-nav .dw-btn--primary:visited,
.header-cta .dw-btn--primary,
.header-cta .dw-btn--primary:visited {
  color: var(--color-text-inverse);
}

.dw-btn--secondary {
  background: rgba(17, 26, 51, 0.04);
  color: var(--color-primary);
  box-shadow: inset 0 0 0 1px rgba(17, 26, 51, 0.1);
}

.dw-btn--secondary:hover {
  color: var(--color-primary);
  background: rgba(17, 26, 51, 0.07);
}

.dw-btn--outline-light {
  background: transparent;
  color: var(--color-text-inverse);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.dw-btn--outline-light:hover {
  color: var(--color-text-inverse);
  background: rgba(255, 255, 255, 0.08);
}

.dw-btn--lg {
  min-height: 56px;
  padding: 1rem 1.55rem;
  font-size: var(--text-base);
}

.dw-btn--sm {
  min-height: 42px;
  padding: 0.75rem 1.15rem;
}

.dw-btn--full {
  width: 100%;
}

.dw-hero {
  position: relative;
  overflow: hidden;
  padding: calc(92px + var(--space-4xl)) 0 var(--space-5xl);
  background: var(--gradient-hero);
}

.dw-hero::before {
  content: "";
  position: absolute;
  top: -10rem;
  right: -6rem;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: rgba(110, 70, 255, 0.12);
  filter: blur(50px);
  pointer-events: none;
}

.dw-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  align-items: center;
  gap: var(--space-3xl);
  position: relative;
  z-index: 1;
}

.dw-hero__content {
  max-width: 670px;
}

.dw-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: var(--space-lg);
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(47, 116, 255, 0.1);
  color: var(--color-accent);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.dw-hero h1 {
  margin-bottom: var(--space-lg);
}

.dw-hero h1 .accent {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.dw-hero__subtitle {
  max-width: 600px;
  margin-bottom: var(--space-xl);
  font-size: 1.15rem;
}

.dw-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: var(--space-2xl);
}

.dw-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 0 0 var(--space-xl);
}

.dw-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 0 0 1px rgba(17, 26, 51, 0.07);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-primary);
}

.dw-pill::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--gradient-brand);
}

.dw-hero__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-md);
}

.dw-hero__meta-item {
  padding: 1rem 1.15rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: inset 0 0 0 1px rgba(17, 26, 51, 0.06), var(--shadow-sm);
}

.dw-hero__meta-value {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--color-primary);
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.dw-hero__meta-label {
  color: var(--color-text-light);
  font-size: var(--text-sm);
}

.dw-media-card,
.dw-proof-card,
.dw-feature-card,
.dw-pricing-card,
.dw-step,
.dw-contact-form,
.dw-contact-info-card,
.dw-editorial-panel,
.dw-story-panel,
.dw-compare-card {
  border: 1px solid rgba(17, 26, 51, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-md);
}

.dw-media-card {
  margin: 0;
  padding: 0;
  line-height: 0;
  overflow: hidden;
}

.dw-story-panel > :last-child,
.dw-editorial-panel > :last-child,
.dw-contact-info-card > :last-child,
.dw-compare-card > :last-child {
  margin-bottom: 0;
}

.dw-section--dark .dw-feature-card,
.dw-section--dark .dw-compare-card,
.dw-section--dark .dw-story-panel,
.dw-section--dark .dw-editorial-panel {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.dw-section--dark .dw-feature-card h3,
.dw-section--dark .dw-compare-card h3,
.dw-section--dark .dw-story-panel h3,
.dw-section--dark .dw-editorial-panel h3 {
  color: var(--color-text-inverse);
}

.dw-section--dark .dw-feature-card p,
.dw-section--dark .dw-compare-card p,
.dw-section--dark .dw-story-panel p,
.dw-section--dark .dw-editorial-panel p {
  color: rgba(255, 255, 255, 0.72);
}

.dw-media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dw-media-card__caption {
  padding: 1rem 1.1rem 1.15rem;
  color: var(--color-text-light);
  font-size: var(--text-sm);
}

.dw-hero__media .dw-media-card {
  position: relative;
  overflow: hidden;
  transform: rotate(1.5deg);
}

.dw-hero__media .dw-media-card::after {
  content: "";
  position: absolute;
  inset: auto 1.25rem -1.25rem 1.25rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(17, 26, 51, 0.12);
  filter: blur(24px);
}

.dw-page-hero {
  position: relative;
  padding: calc(92px + var(--space-3xl)) 0 var(--space-3xl);
  background:
    radial-gradient(circle at top left, rgba(65, 209, 255, 0.12), transparent 28%),
    linear-gradient(180deg, #f8faff 0%, #edf2fb 100%);
  text-align: center;
}

.dw-page-hero h1 {
  max-width: 820px;
  margin: 0 auto var(--space-md);
}

.dw-page-hero p {
  max-width: 680px;
  margin: 0 auto;
  font-size: var(--text-lg);
}

.dw-proof-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--space-xl);
}

.dw-proof-card {
  overflow: hidden;
  grid-column: span 4;
}

.dw-proof-card--wide {
  grid-column: span 6;
}

.dw-proof-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.dw-proof-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dw-proof-card__body {
  padding: 1.3rem 1.35rem 1.45rem;
}

.dw-proof-card__eyebrow {
  display: inline-flex;
  margin-bottom: 0.65rem;
  color: var(--color-accent);
  font-size: var(--text-xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.dw-proof-card h3 {
  margin-bottom: 0.55rem;
  font-size: 1.45rem;
}

.dw-proof-card p {
  margin-bottom: 0;
  font-size: var(--text-sm);
}

.dw-features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-xl);
}

.dw-feature-card {
  padding: 1.6rem;
}

.dw-feature-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.3rem;
  height: 3.3rem;
  margin-bottom: 1rem;
  border-radius: 1rem;
  background: var(--gradient-surface);
  color: var(--color-accent);
}

.dw-feature-card__icon svg {
  width: 1.45rem;
  height: 1.45rem;
  stroke: currentColor;
  stroke-width: 1.9;
  fill: none;
}

.dw-feature-card h3 {
  margin-bottom: 0.55rem;
  font-size: 1.35rem;
}

.dw-feature-card p {
  margin-bottom: 0;
  font-size: var(--text-sm);
}

.dw-two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--space-3xl);
  align-items: center;
}

.dw-two-col--reverse {
  direction: rtl;
}

.dw-two-col--reverse > * {
  direction: ltr;
}

.dw-check-list {
  list-style: none;
  padding: 0;
}

.dw-check-list li {
  position: relative;
  padding-left: 2rem;
}

.dw-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--gradient-brand);
  box-shadow: 0 0 0 6px rgba(47, 116, 255, 0.08);
}

.dw-included-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem 1.5rem;
}

.dw-included-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1.1rem 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: inset 0 0 0 1px rgba(17, 26, 51, 0.06);
}

.dw-included-item__icon {
  flex-shrink: 0;
  width: 1.45rem;
  height: 1.45rem;
  color: var(--color-accent);
}

.dw-included-item__icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.dw-included-item h4 {
  margin-bottom: 0.2rem;
  font-size: 1rem;
}

.dw-included-item p {
  margin-bottom: 0;
  font-size: var(--text-sm);
}

.dw-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-xl);
  counter-reset: step-counter;
}

.dw-step {
  position: relative;
  padding: 1.65rem;
  counter-increment: step-counter;
}

.dw-step::before {
  content: counter(step-counter);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.7rem;
  height: 2.7rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: var(--color-text-inverse);
  font-size: var(--text-sm);
  font-weight: 800;
}

.dw-step h3 {
  margin-bottom: 0.5rem;
}

.dw-step p {
  margin-bottom: 0;
}

.dw-pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-xl);
  max-width: 980px;
  margin: 0 auto;
}

.dw-pricing-card {
  display: flex;
  flex-direction: column;
  padding: 2rem;
}

.dw-pricing-card--featured {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 245, 255, 0.96));
}

.dw-pricing-card--featured::before {
  content: "Most Popular";
  position: absolute;
  top: 1.1rem;
  right: 1.15rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(47, 116, 255, 0.12);
  color: var(--color-accent);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dw-pricing-card__name {
  margin-bottom: 0.3rem;
  font-size: 1.8rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--color-primary);
}

.dw-pricing-card__desc {
  margin-bottom: 1.35rem;
  font-size: var(--text-sm);
}

.dw-pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  margin-bottom: 1.35rem;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid rgba(17, 26, 51, 0.08);
}

.dw-pricing-card__amount {
  font-size: 3.4rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--color-primary);
}

.dw-pricing-card__period {
  color: var(--color-text-light);
  font-weight: 700;
}

.dw-pricing-card__features {
  flex: 1 1 auto;
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.dw-pricing-card__features li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.85rem;
  color: var(--color-text-light);
  font-size: var(--text-sm);
}

.dw-pricing-card__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.9rem;
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 50%;
  background: var(--gradient-brand);
}

.dw-pricing-card .dw-btn {
  margin-top: auto;
}

.dw-pricing-note {
  margin-top: 1.35rem;
  text-align: center;
  font-size: var(--text-sm);
}

.dw-compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-xl);
}

.dw-compare-card {
  padding: 1.7rem;
}

.dw-compare-card h3 {
  margin-bottom: 0.55rem;
}

.dw-compare-card p:last-child {
  margin-bottom: 0;
}

.dw-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: var(--space-2xl);
  align-items: start;
}

.dw-contact-form {
  padding: 1.8rem;
}

.dw-form-group {
  margin-bottom: 1.1rem;
}

.dw-form-group label {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--color-primary);
  font-size: var(--text-sm);
  font-weight: 700;
}

.dw-form-group input,
.dw-form-group textarea,
.dw-form-group select {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(17, 26, 51, 0.12);
  border-radius: 16px;
  background: #fff;
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--color-text);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.dw-form-group input:focus,
.dw-form-group textarea:focus,
.dw-form-group select:focus {
  outline: none;
  border-color: rgba(47, 116, 255, 0.42);
  box-shadow: 0 0 0 4px rgba(47, 116, 255, 0.08);
}

.dw-form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.dw-contact-form .is-hidden {
  display: none !important;
}

.dw-form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.dw-form-notice {
  display: none;
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  font-size: var(--text-sm);
  font-weight: 600;
  line-height: 1.5;
}

.dw-form-notice.is-visible {
  display: block;
}

.dw-form-notice.is-error {
  background: rgba(190, 24, 93, 0.08);
  color: #9f1239;
  box-shadow: inset 0 0 0 1px rgba(190, 24, 93, 0.14);
}

.dw-form-notice.is-success {
  background: rgba(34, 197, 94, 0.09);
  color: #166534;
  box-shadow: inset 0 0 0 1px rgba(34, 197, 94, 0.14);
}

.dw-form-group.has-error input,
.dw-form-group.has-error textarea,
.dw-form-group.has-error select {
  border-color: rgba(190, 24, 93, 0.42);
  box-shadow: 0 0 0 4px rgba(190, 24, 93, 0.08);
}

.dw-form-error {
  min-height: 1.15rem;
  margin: 0.45rem 0 0;
  color: #9f1239;
  font-size: var(--text-sm);
  font-weight: 600;
  line-height: 1.35;
}

.dw-contact-form button.is-loading {
  cursor: progress;
}

.dw-contact-form__success {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
  padding: 1.35rem;
  border-radius: 24px;
  background:
    radial-gradient(circle at top left, rgba(65, 209, 255, 0.13), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  box-shadow: inset 0 0 0 1px rgba(17, 26, 51, 0.08), var(--shadow-sm);
}

.dw-contact-form__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: var(--color-text-inverse);
  box-shadow: 0 16px 32px rgba(47, 116, 255, 0.22);
}

.dw-contact-form__icon svg {
  width: 1.35rem;
  height: 1.35rem;
  stroke: currentColor;
  stroke-width: 2.4;
  fill: none;
}

.dw-contact-form__success h4 {
  margin-bottom: 0;
}

.dw-contact-form__success p {
  margin-bottom: 0;
}

.dw-contact-form__summary {
  display: grid;
  gap: 0;
  padding: 0.2rem 0;
  border-top: 1px solid rgba(17, 26, 51, 0.08);
  border-bottom: 1px solid rgba(17, 26, 51, 0.08);
}

.dw-contact-form__summary-row {
  display: grid;
  grid-template-columns: minmax(110px, 140px) minmax(0, 1fr);
  gap: 1rem;
  padding: 0.8rem 0;
  align-items: start;
}

.dw-contact-form__summary-row + .dw-contact-form__summary-row {
  border-top: 1px solid rgba(17, 26, 51, 0.06);
}

.dw-contact-form__summary-row span:first-child {
  color: var(--color-text-muted);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dw-contact-form__summary-row span:last-child {
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1.5;
  word-break: break-word;
}

.dw-contact-form__edit {
  justify-self: start;
}

.dw-contact-info {
  display: grid;
  gap: 1rem;
}

.dw-contact-info-card,
.dw-editorial-panel,
.dw-story-panel {
  padding: 1.35rem;
}

.dw-contact-info-card h3,
.dw-editorial-panel h3,
.dw-story-panel h3 {
  margin-bottom: 0.55rem;
}

.dw-contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.dw-contact-info-item:last-child {
  margin-bottom: 0;
}

.dw-contact-info-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 14px;
  background: var(--gradient-surface);
  color: var(--color-accent);
  flex-shrink: 0;
}

.dw-contact-info-item__icon svg {
  width: 1.1rem;
  height: 1.1rem;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.dw-contact-info-item h4 {
  margin-bottom: 0.15rem;
  font-size: 1rem;
}

.dw-contact-info-item p {
  margin-bottom: 0;
  font-size: var(--text-sm);
}

.dw-cta {
  position: relative;
  overflow: hidden;
  padding: var(--space-5xl) 0;
  background:
    radial-gradient(circle at top left, rgba(65, 209, 255, 0.18), transparent 24%),
    radial-gradient(circle at bottom right, rgba(110, 70, 255, 0.16), transparent 22%),
    linear-gradient(135deg, #0a1330 0%, #111d42 55%, #19275a 100%);
  color: var(--color-text-inverse);
  text-align: center;
}

.dw-cta h2 {
  max-width: 760px;
  margin: 0 auto 1rem;
  color: var(--color-text-inverse);
}

.dw-cta p {
  max-width: 640px;
  margin: 0 auto 1.6rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.08rem;
}

.dw-cta__actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.dw-faq-list {
  max-width: 880px;
  margin: 0 auto;
}

.dw-faq-item {
  border-bottom: 1px solid rgba(17, 26, 51, 0.08);
}

.dw-faq-item:first-child {
  border-top: 1px solid rgba(17, 26, 51, 0.08);
}

.dw-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.2rem 0;
  border: 0;
  background: none;
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.dw-faq-question::after {
  content: "";
  width: 1.1rem;
  height: 1.1rem;
  margin-left: 1rem;
  border-right: 2px solid var(--color-text-muted);
  border-bottom: 2px solid var(--color-text-muted);
  transform: rotate(45deg);
  transition: transform var(--transition-fast);
}

.dw-faq-item.active .dw-faq-question::after {
  transform: rotate(-135deg);
}

.dw-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 360ms ease, padding 360ms ease;
}

.dw-faq-item.active .dw-faq-answer {
  max-height: 420px;
  padding-bottom: 1.15rem;
}

.dw-faq-answer p:last-child {
  margin-bottom: 0;
}

.dw-page-content {
  padding: var(--space-4xl) 0;
}

.dw-page-content .dw-container {
  max-width: var(--container-narrow);
}

.dw-page-content h2 {
  margin-top: var(--space-2xl);
}

.dw-page-content h3 {
  margin-top: var(--space-xl);
}

.site-footer {
  padding: var(--space-4xl) 0 0;
  background:
    radial-gradient(circle at top left, rgba(65, 209, 255, 0.12), transparent 20%),
    linear-gradient(180deg, #0b1330 0%, #0a1128 100%);
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
}

.footer-brand {
  padding-right: 1rem;
}

.footer-brand .site-logo {
  align-items: center;
  gap: 1.05rem;
  margin-bottom: 1rem;
}

.footer-brand .site-logo__mark--transparent {
  width: 56px;
  height: 56px;
}

.footer-brand .site-logo__title,
.footer-brand .site-logo__tag,
.footer-col h4 {
  color: var(--color-text-inverse);
}

.footer-brand .site-logo__tag {
  color: rgba(255, 255, 255, 0.58);
}

.footer-brand p {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.62);
  font-size: var(--text-sm);
}

.footer-col h4 {
  margin-bottom: 0.9rem;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin-bottom: 0.6rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: var(--text-sm);
}

.footer-col a {
  color: rgba(255, 255, 255, 0.68);
}

.footer-col a:hover,
.footer-bottom a:hover {
  color: var(--color-text-inverse);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: var(--space-3xl);
  padding: 1.2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p,
.footer-bottom a {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--text-xs);
}

.footer-legal-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }

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

.wp-block-group {
  margin-bottom: var(--space-lg);
}

.alignwide {
  max-width: var(--container-wide);
  margin-left: auto;
  margin-right: auto;
}

.alignfull {
  width: 100%;
  max-width: 100%;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  max-width: 100%;
}

.wp-caption-text {
  margin-top: 0.75rem;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  text-align: center;
}

@media (max-width: 1100px) {
  .dw-hero__layout,
  .dw-two-col,
  .dw-contact-grid,
  .dw-compare-grid {
    grid-template-columns: 1fr;
  }

  .dw-hero__content {
    max-width: 100%;
  }

  .dw-hero__media {
    max-width: 760px;
  }

  .dw-features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dw-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .site-header .dw-container {
    min-height: 82px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
  }

  .primary-nav {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 999;
    width: min(94vw, 360px);
    max-width: 360px;
    min-height: 100dvh;
    height: 100dvh;
    padding: calc(82px + 1rem) 1rem calc(1.2rem + env(safe-area-inset-bottom));
    flex-direction: column;
    align-items: stretch;
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.98);
    border-left: 1px solid rgba(17, 26, 51, 0.08);
    box-shadow: var(--shadow-xl);
    transform: translateX(100%);
    transition: transform var(--transition-base);
  }

  .primary-nav.active {
    transform: translateX(0);
  }

  .primary-nav ul {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .primary-nav a {
    justify-content: flex-start;
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: 18px;
  }

  .header-cta {
    width: 100%;
    margin: 0.65rem 0 0;
  }

  .header-cta .dw-btn {
    width: 100%;
  }

  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 17, 40, 0.4);
    z-index: 998;
  }

  .nav-overlay.active {
    display: block;
  }

  .dw-proof-card,
  .dw-proof-card--wide {
    grid-column: span 6;
  }

  .dw-pricing-grid,
  .dw-included-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  :root {
    --text-6xl: 3rem;
    --text-5xl: 2.55rem;
    --text-4xl: 2rem;
    --text-3xl: 1.7rem;
    --space-5xl: 5rem;
    --space-4xl: 4rem;
  }

  .dw-container {
    padding: 0 1.15rem;
  }

  .dw-section {
    padding: var(--space-4xl) 0;
  }

  .dw-hero {
    padding: calc(82px + var(--space-3xl)) 0 var(--space-4xl);
  }

  .dw-hero__meta {
    grid-template-columns: 1fr;
  }

  .dw-features-grid,
  .dw-steps {
    grid-template-columns: 1fr;
  }

  .dw-proof-card,
  .dw-proof-card--wide {
    grid-column: span 12;
  }

  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  :root {
    --text-6xl: 2.55rem;
    --text-5xl: 2.2rem;
  }

  .site-logo__tag {
    display: none;
  }

  .dw-hero__actions,
  .dw-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .dw-hero__actions .dw-btn,
  .dw-cta__actions .dw-btn {
    width: 100%;
  }

  .dw-contact-form__summary-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
}

.dw-proof-grid--home {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-xl);
  align-items: stretch;
}

.dw-proof-grid--home .dw-proof-card,
.dw-proof-grid--home .dw-proof-card--wide {
  display: grid;
  grid-column: auto;
  grid-template-rows: auto 1fr;
  min-height: 100%;
}

.dw-proof-grid--home .dw-proof-card__media {
  aspect-ratio: 16 / 10.5;
}

.dw-proof-grid--home .dw-proof-card__media img {
  transform: scale(1.08);
  transform-origin: center top;
}

.dw-proof-grid--home .dw-proof-card__body {
  display: flex;
  flex-direction: column;
}

/* Home hero layout and icon recovery */
.home .dw-hero__layout {
  align-items: start;
  row-gap: 0;
}

.home .dw-hero__content {
  display: contents;
}

.home .dw-hero__content[data-reveal] {
  opacity: 1;
  transform: none;
}

.home .dw-hero__eyebrow,
.home .dw-hero h1,
.home .dw-hero__subtitle,
.home .dw-pill-row,
.home .dw-hero__actions {
  grid-column: 1;
}

.home .dw-hero__eyebrow {
  width: fit-content;
  justify-self: start;
}

.home .dw-hero__media {
  grid-column: 2;
  grid-row: 1 / span 5;
  align-self: center;
}

.home .dw-hero__meta {
  grid-column: 1 / -1;
  grid-row: 6;
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  grid-template-columns: repeat(4, 180px);
  gap: var(--space-md);
  justify-content: center;
  align-items: stretch;
}

.home .dw-hero__meta-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100%;
  padding: 1.45rem 1.45rem;
  text-align: center;
  border-radius: 30px;
  border-color: rgba(255, 255, 255, 0.88);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 251, 255, 0.96) 100%);
  box-shadow:
    0 22px 44px rgba(47, 116, 255, 0.12),
    0 10px 24px rgba(17, 26, 51, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.7);
}

.home .dw-hero__meta-value {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  margin-bottom: 0.55rem;
  color: var(--color-primary);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.03em;
  text-align: center;
}

.home .dw-hero__meta-value::before {
  content: "";
  display: block;
  width: 4.5rem;
  height: 4.5rem;
  flex: 0 0 auto;
  background-image: var(--dw-hero-icon);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  filter: drop-shadow(0 12px 22px rgba(47, 116, 255, 0.18));
}

.home .dw-feature-card__icon::before {
  content: "";
  display: block;
  background-color: currentColor;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.home .dw-hero__meta-label {
  display: block;
  width: 100%;
  color: var(--color-text-light);
  font-size: 0.84rem;
  line-height: 1.55;
  text-align: center;
}

.home .dw-hero__meta-item:nth-child(1) {
  --dw-hero-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 88 88'%3E%3Cdefs%3E%3ClinearGradient id='g1' x1='16' y1='12' x2='70' y2='76' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%238fc1ff'/%3E%3Cstop offset='1' stop-color='%232f74ff'/%3E%3C/linearGradient%3E%3C/defs%3E%3Ccircle cx='44' cy='44' r='36' fill='url(%23g1)'/%3E%3Cpath d='M29 45.5l9.5 9.5L58.5 35' fill='none' stroke='%23ffffff' stroke-width='7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.home .dw-hero__meta-item:nth-child(2) {
  --dw-hero-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 88 88'%3E%3Cdefs%3E%3ClinearGradient id='g2' x1='16' y1='12' x2='70' y2='76' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%238fc1ff'/%3E%3Cstop offset='1' stop-color='%232f74ff'/%3E%3C/linearGradient%3E%3C/defs%3E%3Ccircle cx='44' cy='44' r='36' fill='url(%23g2)'/%3E%3Cg transform='translate(18 18) scale(2.15)'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M12 7h.01m3.486 1.513h.01m-6.978 0h.01M6.99 12H7m9 4h2.706a1.957 1.957 0 0 0 1.883-1.325A9 9 0 1 0 3.043 12.89 9.1 9.1 0 0 0 8.2 20.1a8.62 8.62 0 0 0 3.769.9 2.013 2.013 0 0 0 2.03-2v-.857A2.036 2.036 0 0 1 16 16Z'/%3E%3C/g%3E%3C/svg%3E");
}

.home .dw-hero__meta-item:nth-child(3) {
  --dw-hero-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 88 88'%3E%3Cdefs%3E%3ClinearGradient id='g3' x1='16' y1='12' x2='70' y2='76' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%238fc1ff'/%3E%3Cstop offset='1' stop-color='%232f74ff'/%3E%3C/linearGradient%3E%3C/defs%3E%3Ccircle cx='44' cy='44' r='36' fill='url(%23g3)'/%3E%3Cg transform='translate(18 18) scale(2.15)'%3E%3Cpath fill='%23ffffff' fill-rule='evenodd' clip-rule='evenodd' d='M12 2a7 7 0 0 0-7 7 3 3 0 0 0-3 3v2a3 3 0 0 0 3 3h1a1 1 0 0 0 1-1V9a5 5 0 1 1 10 0v7.083A2.919 2.919 0 0 1 14.083 19H14a2 2 0 0 0-2-2h-1a2 2 0 0 0-2 2v1a2 2 0 0 0 2 2h1a2 2 0 0 0 1.732-1h.351a4.917 4.917 0 0 0 4.83-4H19a3 3 0 0 0 3-3v-2a3 3 0 0 0-3-3 7 7 0 0 0-7-7Zm1.45 3.275a4 4 0 0 0-4.352.976 1 1 0 0 0 1.452 1.376 2.001 2.001 0 0 1 2.836-.067 1 1 0 1 0 1.386-1.442 4 4 0 0 0-1.321-.843Z'/%3E%3C/g%3E%3C/svg%3E");
}

.home .dw-hero__meta-item:nth-child(4) {
  --dw-hero-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 88 88'%3E%3Cdefs%3E%3ClinearGradient id='g4' x1='16' y1='12' x2='70' y2='76' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%238fc1ff'/%3E%3Cstop offset='1' stop-color='%232f74ff'/%3E%3C/linearGradient%3E%3C/defs%3E%3Ccircle cx='44' cy='44' r='36' fill='url(%23g4)'/%3E%3Ccircle cx='41' cy='39' r='13' fill='none' stroke='%23ffffff' stroke-width='5.5'/%3E%3Cpath d='M50 48l10 10' fill='none' stroke='%23ffffff' stroke-width='5.5' stroke-linecap='round'/%3E%3Cpath d='M35.5 39l4 4 7-8' fill='none' stroke='%23ffffff' stroke-width='4.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.home .dw-features-grid .dw-feature-card:nth-child(1) {
  --dw-feature-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='16' rx='2.5'/%3E%3Cpath d='M3 9h18'/%3E%3Cpath d='M9 20V9'/%3E%3C/svg%3E");
}

.home .dw-features-grid .dw-feature-card:nth-child(2) {
  --dw-feature-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l7 3v6c0 5-3.8 8.7-7 9.9C8.8 20.7 5 17 5 12V6l7-3z'/%3E%3Cpath d='M9.5 12.5l1.9 1.9 3.6-4'/%3E%3C/svg%3E");
}

.home .dw-features-grid .dw-feature-card:nth-child(3) {
  --dw-feature-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 2v6h-6'/%3E%3Cpath d='M3 12a9 9 0 0 1 15.5-6.36L21 8'/%3E%3Cpath d='M3 22v-6h6'/%3E%3Cpath d='M21 12a9 9 0 0 1-15.5 6.36L3 16'/%3E%3C/svg%3E");
}

.home .dw-features-grid .dw-feature-card:nth-child(4) {
  --dw-feature-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='6.5'/%3E%3Cpath d='M16 16l5 5'/%3E%3C/svg%3E");
}

.home .dw-features-grid .dw-feature-card:nth-child(5) {
  --dw-feature-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z'/%3E%3Cpath d='M8 9h8'/%3E%3Cpath d='M8 13h5'/%3E%3C/svg%3E");
}

.home .dw-features-grid .dw-feature-card:nth-child(6) {
  --dw-feature-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M3 12h18'/%3E%3Cpath d='M12 3a14 14 0 0 1 4 9 14 14 0 0 1-4 9 14 14 0 0 1-4-9 14 14 0 0 1 4-9z'/%3E%3C/svg%3E");
}

.home .dw-feature-card__icon::before {
  width: 1.45rem;
  height: 1.45rem;
  -webkit-mask-image: var(--dw-feature-icon);
  mask-image: var(--dw-feature-icon);
}

@media (max-width: 1000px) {
  .home .dw-hero__meta {
    grid-template-columns: repeat(2, 180px);
  }
}

@media (max-width: 1100px) {
  .home .dw-hero__layout {
    max-width: 920px;
    margin-inline: auto;
    column-gap: var(--space-2xl);
    row-gap: 0;
  }

  .home .dw-hero h1 {
    max-width: 880px;
  }

  .home .dw-hero__subtitle {
    max-width: 760px;
  }

  .home .dw-hero__media {
    grid-column: 1;
    grid-row: 6;
    width: min(100%, 760px);
    margin-inline: auto;
    margin-bottom: var(--space-2xl);
  }

  .home .dw-hero__meta {
    grid-column: 1;
    grid-row: 7;
  }
}

.page-about .dw-cta__actions {
  justify-content: center;
  align-items: center;
}

.page-about .dw-cta__actions .dw-btn {
  width: auto;
}

@media (max-width: 720px) {
  .dw-proof-grid--home {
    grid-template-columns: 1fr;
  }

  .dw-proof-grid--home .dw-proof-card,
  .dw-proof-grid--home .dw-proof-card--wide {
    grid-column: auto;
  }

  .home .dw-hero__meta-item {
    padding: 1.3rem 1.1rem;
  }

  .home .dw-hero__meta-value {
    gap: 0.45rem;
    font-size: 1.08rem;
  }

  .home .dw-hero__meta-label {
    font-size: 0.78rem;
  }

  .home .dw-hero__meta {
    width: min(100%, 376px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
