.website-demo-page {
    --wd-accent: #ff6b00;
    --wd-dark: #111317;
    --wd-panel: #171a1f;
    --wd-soft: #f4f5f7;
    --wd-border: rgba(20, 24, 30, .10);
    background: #f4f5f7;
}

.wd-container {
    width: min(1440px, calc(100% - 2rem));
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.wd-intro {
    position: relative;
    overflow: hidden;
    padding: 6rem 0 5rem;
    color: #fff;
    background:
        radial-gradient(circle at 78% 18%, rgba(255,107,0,.22), transparent 30%),
        radial-gradient(circle at 12% 92%, rgba(255,107,0,.08), transparent 26%),
        linear-gradient(135deg, #101216 0%, #20242a 100%);
}

.wd-intro::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .14;
    background-image:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 42px 42px;
}

.wd-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    color: var(--wd-accent);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.wd-eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    background: currentColor;
}

.wd-eyebrow.dark { color: #d85b00; }

.wd-intro h1 {
    max-width: 930px;
    margin-top: 1rem;
    font-size: clamp(2.8rem, 5.4vw, 5rem);
    line-height: 1.01;
    letter-spacing: -.05em;
}

.wd-intro h1 span { color: var(--wd-accent); }

.wd-intro-copy {
    max-width: 820px;
    margin-top: 1.5rem;
    color: rgba(255,255,255,.68);
    font-size: 1.12rem;
    line-height: 1.75;
}

.wd-intro-points {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem 1.5rem;
    margin-top: 2rem;
    color: rgba(255,255,255,.76);
    font-size: .92rem;
}

.wd-intro-points span::before {
    content: "✓";
    margin-right: .45rem;
    color: var(--wd-accent);
    font-weight: 900;
}

.wd-sector-section {
    padding: 4.25rem 0 3.25rem;
    background: #fff;
    border-bottom: 1px solid #e9ebee;
}

.wd-sector-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
    gap: 3rem;
    align-items: end;
    margin-bottom: 2rem;
}

.wd-sector-heading h2 {
    max-width: 780px;
    margin: .8rem 0 0;
    font-size: clamp(2rem, 3.4vw, 3.15rem);
    line-height: 1.07;
    letter-spacing: -.04em;
}

.wd-sector-heading > p {
    margin: 0;
    color: #68717c;
    line-height: 1.75;
}

.wd-sector-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.wd-sector-card {
    min-width: 0;
    min-height: 210px;
    border: 1px solid #e3e6e9;
    border-radius: 20px;
    padding: 1.35rem;
    text-align: left;
    background: #fff;
    color: #20252b;
    cursor: pointer;
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease;
}

.wd-sector-card:hover,
.wd-sector-card:focus-visible {
    transform: translateY(-4px);
    border-color: rgba(255,107,0,.28);
    box-shadow: 0 18px 44px rgba(22,27,34,.09);
    outline: none;
}

.wd-sector-card.active {
    border-color: rgba(255,107,0,.42);
    background: linear-gradient(180deg, rgba(255,107,0,.07), #fff 72%);
    box-shadow: 0 18px 44px rgba(255,107,0,.10);
}

.wd-sector-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 13px;
    color: #d85b00;
    background: rgba(255,107,0,.09);
    font-size: .78rem;
    font-weight: 900;
}

.wd-sector-card strong {
    display: block;
    margin-top: 1.15rem;
    font-size: 1.05rem;
}

.wd-sector-card small {
    display: block;
    margin-top: .55rem;
    color: #707985;
    line-height: 1.55;
}

.wd-sector-cta {
    display: block;
    margin-top: 1rem;
    color: #d85b00;
    font-size: .82rem;
    font-weight: 800;
}

.wd-workspace { padding: 3rem 0 5rem; }

.wd-builder {
    display: grid;
    grid-template-columns: minmax(290px, 360px) minmax(0, 1fr);
    gap: 1.25rem;
    align-items: start;
}

.wd-controls,
.wd-stage {
    border: 1px solid var(--wd-border);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 22px 60px rgba(22,27,34,.08);
}

.wd-controls {
    position: sticky;
    top: 90px;
    overflow: hidden;
}

.wd-controls-head {
    padding: 1.45rem;
    color: #fff;
    background: linear-gradient(135deg, #171a1f, #252b33);
}

.wd-controls-head small {
    display: block;
    margin-bottom: .35rem;
    color: var(--wd-accent);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.wd-controls-head h2 {
    margin: 0;
    font-size: 1.2rem;
}

.wd-controls-head p {
    margin: .45rem 0 0;
    color: rgba(255,255,255,.58);
    font-size: .86rem;
}

.wd-controls-body { padding: 1.35rem; }
.wd-field { margin-bottom: 1.35rem; }
.wd-field:last-child { margin-bottom: 0; }

.wd-field-label {
    display: block;
    margin-bottom: .55rem;
    color: #30343a;
    font-size: .85rem;
    font-weight: 800;
}

.wd-help {
    display: block;
    margin-top: .45rem;
    color: #818995;
    font-size: .74rem;
    line-height: 1.45;
}

.wd-input,
.wd-select {
    width: 100%;
    min-height: 46px;
    border: 1px solid #dfe2e6;
    border-radius: 11px;
    padding: .7rem .85rem;
    background: #fafbfc;
    color: #25282d;
    font-size: 1rem;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.wd-input:focus,
.wd-select:focus {
    border-color: rgba(255,107,0,.65);
    background: #fff;
    box-shadow: 0 0 0 .2rem rgba(255,107,0,.1);
}

.wd-service-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .55rem;
}

.wd-check {
    display: flex;
    align-items: center;
    min-height: 44px;
    border: 1px solid #e3e6e9;
    border-radius: 10px;
    padding: .55rem .65rem;
    background: #fafbfc;
    cursor: pointer;
    font-size: .8rem;
    font-weight: 700;
    transition: border-color .18s ease, background .18s ease, color .18s ease;
}

.wd-check input {
    width: 16px;
    height: 16px;
    margin: 0 .45rem 0 0;
    accent-color: var(--wd-accent);
}

.wd-check:has(input:checked) {
    border-color: rgba(255,107,0,.38);
    background: rgba(255,107,0,.07);
    color: #d85b00;
}

.wd-theme-options { display: grid; gap: .55rem; }

.wd-theme-choice {
    display: flex;
    align-items: center;
    gap: .7rem;
    min-height: 46px;
    border: 1px solid #e3e6e9;
    border-radius: 11px;
    padding: .55rem .7rem;
    background: #fff;
    cursor: pointer;
    font-size: .86rem;
    font-weight: 700;
}

.wd-theme-choice input { accent-color: var(--wd-accent); }

.wd-theme-swatch {
    display: flex;
    gap: 3px;
    width: 46px;
    height: 24px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 6px;
}

.wd-theme-swatch i { flex: 1; display: block; }
.wd-theme-swatch.dark i:nth-child(1) { background: #111317; }
.wd-theme-swatch.dark i:nth-child(2) { background: #ff6b00; }
.wd-theme-swatch.dark i:nth-child(3) { background: #fff; }
.wd-theme-swatch.light i:nth-child(1) { background: #f5f7fa; }
.wd-theme-swatch.light i:nth-child(2) { background: #4c6fff; }
.wd-theme-swatch.light i:nth-child(3) { background: #202936; }
.wd-theme-swatch.corporate i:nth-child(1) { background: #0f2740; }
.wd-theme-swatch.corporate i:nth-child(2) { background: #18a6c9; }
.wd-theme-swatch.corporate i:nth-child(3) { background: #fff; }

.wd-stage-column { min-width: 0; }
.wd-stage { overflow: hidden; }

.wd-stage-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .9rem 1rem;
    border-bottom: 1px solid #e6e8eb;
    background: #f8f9fa;
}

.wd-stage-title {
    display: flex;
    align-items: center;
    gap: .55rem;
    color: #4c535d;
    font-size: .86rem;
    font-weight: 700;
}

.wd-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #2fbf71;
    box-shadow: 0 0 0 4px rgba(47,191,113,.12);
}

.wd-device-switch {
    display: inline-flex;
    gap: .3rem;
    padding: .28rem;
    border-radius: 10px;
    background: #e9ebee;
}

.wd-device-btn {
    min-height: 38px;
    border: 0;
    border-radius: 8px;
    padding: .45rem .75rem;
    background: transparent;
    color: #626a75;
    font-size: .82rem;
    font-weight: 800;
}

.wd-device-btn.active {
    background: #fff;
    color: #22272e;
    box-shadow: 0 3px 10px rgba(0,0,0,.08);
}

.wd-preview-canvas {
    overflow: auto;
    min-height: 760px;
    padding: 1.2rem;
    background:
        linear-gradient(45deg, #eef0f2 25%, transparent 25%),
        linear-gradient(-45deg, #eef0f2 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #eef0f2 75%),
        linear-gradient(-45deg, transparent 75%, #eef0f2 75%),
        #f7f8f9;
    background-size: 22px 22px;
    background-position: 0 0, 0 11px, 11px -11px, -11px 0px;
}

.wd-device-frame {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,.10);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 28px 70px rgba(19,25,32,.16);
    transition: width .28s ease, border-radius .28s ease;
}

.wd-device-frame.mobile {
    width: min(390px, 100%);
    border: 8px solid #171a1f;
    border-radius: 28px;
}

.wd-site {
    --wds-primary: #ff6b00;
    --wds-dark: #111317;
    --wds-bg: #fff;
    --wds-soft: #f4f5f6;
    --wds-text: #1f242b;
    --wds-muted: #6b737d;
    min-width: 0;
    background: var(--wds-bg);
    color: var(--wds-text);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.wd-site[data-theme="light"] {
    --wds-primary: #4c6fff;
    --wds-dark: #202936;
    --wds-bg: #fff;
    --wds-soft: #f4f7fb;
    --wds-text: #222b37;
    --wds-muted: #6c7786;
}

.wd-site[data-theme="corporate"] {
    --wds-primary: #18a6c9;
    --wds-dark: #0f2740;
    --wds-bg: #fff;
    --wds-soft: #eef5f8;
    --wds-text: #173149;
    --wds-muted: #687b8d;
}

.wds-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.8rem;
    color: #fff;
    background: var(--wds-dark);
}

.wds-brand {
    min-width: 0;
    font-size: .96rem;
    font-weight: 900;
    letter-spacing: -.02em;
}

.wds-brand span { color: var(--wds-primary); }

.wds-nav-links {
    display: flex;
    gap: 1.05rem;
    color: rgba(255,255,255,.72);
    font-size: .7rem;
    font-weight: 700;
}

.wds-nav-cta {
    border-radius: 8px;
    padding: .55rem .8rem;
    color: #fff;
    background: var(--wds-primary);
    font-size: .7rem;
    font-weight: 900;
    white-space: nowrap;
}

.wds-hero {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    min-height: 390px;
    overflow: hidden;
    color: #fff;
    background: var(--wds-dark);
}

.wds-hero-copy {
    position: relative;
    z-index: 2;
    padding: 4.1rem 2.5rem;
}

.wds-kicker {
    display: block;
    margin-bottom: .8rem;
    color: var(--wds-primary);
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.wds-hero h2 {
    max-width: 620px;
    margin: 0;
    font-size: clamp(2rem, 4.2vw, 3.6rem);
    line-height: 1.02;
    letter-spacing: -.045em;
}

.wds-hero p {
    max-width: 590px;
    margin: 1rem 0 0;
    color: rgba(255,255,255,.66);
    font-size: .92rem;
    line-height: 1.65;
}

.wds-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    margin-top: 1.35rem;
}

.wds-btn-primary,
.wds-btn-secondary {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: .55rem .9rem;
    font-size: .74rem;
    font-weight: 900;
}

.wds-btn-primary { color: #fff; background: var(--wds-primary); }
.wds-btn-secondary { color: #fff; border: 1px solid rgba(255,255,255,.24); }

.wds-visual {
    position: relative;
    overflow: hidden;
    min-height: 100%;
    background:
        radial-gradient(circle at 50% 45%, color-mix(in srgb, var(--wds-primary) 24%, transparent), transparent 38%),
        linear-gradient(145deg, #282e36, #0e1115);
}

.wds-visual-grid {
    position: absolute;
    inset: 0;
    opacity: .18;
    background-image:
        linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
    background-size: 34px 34px;
}

.wds-visual-card {
    position: absolute;
    left: 50%;
    top: 50%;
    width: min(300px, calc(100% - 3rem));
    transform: translate(-50%, -50%);
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 20px;
    padding: 1.35rem;
    background: rgba(255,255,255,.08);
    box-shadow: 0 26px 60px rgba(0,0,0,.30);
    backdrop-filter: blur(14px);
}

.wds-visual-card small {
    display: block;
    color: var(--wds-primary);
    font-size: .65rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.wds-visual-card strong {
    display: block;
    margin-top: .55rem;
    color: #fff;
    font-size: 1.18rem;
}

.wds-visual-card span {
    display: block;
    margin-top: .35rem;
    color: rgba(255,255,255,.6);
    font-size: .74rem;
}

.wds-visual-card i {
    display: block;
    height: 7px;
    margin-top: .85rem;
    border-radius: 999px;
    background: rgba(255,255,255,.12);
}

.wds-visual-card i:nth-of-type(1) { width: 88%; }
.wds-visual-card i:nth-of-type(2) { width: 68%; }
.wds-visual-card i:nth-of-type(3) { width: 46%; background: color-mix(in srgb, var(--wds-primary) 58%, transparent); }

.wds-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid #eceef0;
    background: #fff;
}

.wds-proof-item {
    padding: 1.15rem 1.35rem;
    border-right: 1px solid #eceef0;
}

.wds-proof-item:last-child { border-right: 0; }
.wds-proof-item strong { display: block; font-size: .82rem; }
.wds-proof-item span { display: block; margin-top: .2rem; color: var(--wds-muted); font-size: .7rem; line-height: 1.45; }

.wds-section { padding: 3.6rem 2.5rem; background: var(--wds-bg); }
.wds-section.soft { background: var(--wds-soft); }

.wds-section-head { max-width: 690px; }
.wds-section-head small {
    color: var(--wds-primary);
    font-size: .65rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.wds-section-head h3 {
    margin: .45rem 0 0;
    font-size: clamp(1.55rem, 2.6vw, 2.35rem);
    line-height: 1.08;
    letter-spacing: -.035em;
}

.wds-section-head p {
    margin: .7rem 0 0;
    color: var(--wds-muted);
    font-size: .83rem;
    line-height: 1.65;
}

.wds-service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .85rem;
    margin-top: 1.6rem;
}

.wds-service-card {
    min-width: 0;
    border: 1px solid rgba(18,24,30,.08);
    border-radius: 14px;
    padding: 1rem;
    background: #fff;
}

.wds-service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    color: var(--wds-primary);
    background: color-mix(in srgb, var(--wds-primary) 10%, white);
    font-size: .65rem;
    font-weight: 900;
}

.wds-service-card strong { display: block; margin-top: .75rem; font-size: .82rem; }
.wds-service-card span:last-child { display: block; margin-top: .35rem; color: var(--wds-muted); font-size: .68rem; line-height: 1.5; }

.wds-value-layout {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: 2rem;
    align-items: start;
}

.wds-value-list { border-top: 1px solid #e6e8eb; }

.wds-value-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: .95rem 0;
    border-bottom: 1px solid #e6e8eb;
    font-size: .75rem;
}

.wds-value-row span { color: var(--wds-muted); }
.wds-value-row b { max-width: 62%; text-align: right; }

.wds-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .85rem;
    margin-top: 1.5rem;
}

.wds-gallery-item {
    position: relative;
    min-height: 145px;
    overflow: hidden;
    border-radius: 14px;
    background:
        linear-gradient(145deg, color-mix(in srgb, var(--wds-primary) 14%, #e9edf1), #d5dae0);
}

.wds-gallery-item::before,
.wds-gallery-item::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    border: 12px solid rgba(255,255,255,.5);
}

.wds-gallery-item::before { width: 90px; height: 90px; right: -12px; top: 15px; }
.wds-gallery-item::after { width: 50px; height: 50px; left: 18px; bottom: 18px; border-width: 7px; }

.wds-gallery-item span {
    position: absolute;
    left: .8rem;
    bottom: .75rem;
    z-index: 2;
    max-width: 70%;
    border-radius: 8px;
    padding: .35rem .5rem;
    color: #fff;
    background: rgba(15,20,26,.72);
    font-size: .67rem;
    font-weight: 800;
}

.wds-conversion-section {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 2rem;
    padding: 3.8rem 2.5rem;
    color: #fff;
    background: var(--wds-dark);
}

.wds-conversion-copy h3 {
    margin: 0;
    font-size: clamp(1.6rem, 2.8vw, 2.45rem);
    line-height: 1.08;
    letter-spacing: -.035em;
}

.wds-conversion-copy p {
    margin-top: .8rem;
    color: rgba(255,255,255,.62);
    font-size: .82rem;
    line-height: 1.65;
}

.wds-conversion-form {
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 18px;
    padding: 1rem;
    background: rgba(255,255,255,.06);
}

.wds-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .65rem;
}

.wds-field { display: grid; gap: .3rem; }
.wds-field.full { grid-column: 1 / -1; }

.wds-field label {
    color: rgba(255,255,255,.72);
    font-size: .64rem;
    font-weight: 800;
}

.wds-field input,
.wds-field select,
.wds-field textarea {
    width: 100%;
    min-height: 38px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 8px;
    padding: .5rem .6rem;
    color: #fff;
    background: rgba(255,255,255,.08);
    font-size: .72rem;
    outline: none;
}

.wds-field select option { color: #222; }
.wds-field textarea { min-height: 72px; resize: vertical; }

.wds-submit {
    width: 100%;
    min-height: 42px;
    margin-top: .7rem;
    border: 0;
    border-radius: 9px;
    padding: .6rem .8rem;
    color: #fff;
    background: var(--wds-primary);
    font-size: .74rem;
    font-weight: 900;
}

.wds-feedback {
    display: none;
    margin: .7rem 0 0;
    border-radius: 8px;
    padding: .65rem;
    color: rgba(255,255,255,.82);
    background: rgba(255,255,255,.07);
    font-size: .68rem;
    line-height: 1.5;
}

.wds-feedback.show { display: block; }

.wd-note {
    margin: .85rem .2rem 0;
    color: #737c87;
    font-size: .8rem;
    line-height: 1.55;
}

.wd-conversion {
    margin-top: 2.5rem;
}

.wd-conversion-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 2rem;
    align-items: center;
    overflow: hidden;
    border-radius: 28px;
    padding: 3rem;
    color: #fff;
    background:
        radial-gradient(circle at 88% 15%, rgba(255,107,0,.20), transparent 25%),
        linear-gradient(135deg, #14171b, #242a31);
    box-shadow: 0 28px 70px rgba(22,27,34,.15);
}

.wd-conversion h2 {
    max-width: 820px;
    margin: .8rem 0 0;
    font-size: clamp(2rem, 3.4vw, 3rem);
    line-height: 1.08;
    letter-spacing: -.04em;
}

.wd-conversion p {
    max-width: 760px;
    margin: .9rem 0 0;
    color: rgba(255,255,255,.64);
    line-height: 1.65;
}

.wd-summary { color: #fff !important; font-weight: 800; }

.wd-conversion-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1.35rem;
}

.wd-cta-primary,
.wd-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 11px;
    padding: .75rem 1rem;
    font-weight: 800;
    text-decoration: none;
}

.wd-cta-primary { color: #fff; background: var(--wd-accent); }
.wd-cta-primary:hover { color: #fff; background: #e85f00; }
.wd-cta-secondary { color: #fff; border: 1px solid rgba(255,255,255,.18); }
.wd-cta-secondary:hover { color: #fff; border-color: rgba(255,255,255,.42); }

.wd-conversion-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 110px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 30px;
    color: var(--wd-accent);
    background: rgba(255,255,255,.05);
    font-size: 3rem;
    font-weight: 300;
}

.wd-device-frame.mobile .wds-nav { padding: .8rem 1rem; }
.wd-device-frame.mobile .wds-nav-links { display: none; }
.wd-device-frame.mobile .wds-nav-cta { font-size: .62rem; padding: .48rem .62rem; }
.wd-device-frame.mobile .wds-hero { grid-template-columns: 1fr; min-height: auto; }
.wd-device-frame.mobile .wds-hero-copy { padding: 2.4rem 1.2rem; }
.wd-device-frame.mobile .wds-hero h2 { font-size: 2.15rem; }
.wd-device-frame.mobile .wds-visual { min-height: 230px; }
.wd-device-frame.mobile .wds-proof { grid-template-columns: 1fr; }
.wd-device-frame.mobile .wds-proof-item { border-right: 0; border-bottom: 1px solid #eceef0; }
.wd-device-frame.mobile .wds-section { padding: 2.4rem 1.15rem; }
.wd-device-frame.mobile .wds-service-grid { grid-template-columns: 1fr; }
.wd-device-frame.mobile .wds-value-layout { grid-template-columns: 1fr; }
.wd-device-frame.mobile .wds-value-row { display: grid; gap: .3rem; }
.wd-device-frame.mobile .wds-value-row b { max-width: none; text-align: left; }
.wd-device-frame.mobile .wds-gallery { grid-template-columns: 1fr; }
.wd-device-frame.mobile .wds-conversion-section { grid-template-columns: 1fr; padding: 2.5rem 1.15rem; }
.wd-device-frame.mobile .wds-form-grid { grid-template-columns: 1fr; }
.wd-device-frame.mobile .wds-field.full { grid-column: auto; }

@media (max-width: 1199.98px) {
    .wd-sector-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .wd-builder { grid-template-columns: 320px minmax(0, 1fr); }
}

@media (max-width: 991.98px) {
    .wd-sector-heading { grid-template-columns: 1fr; gap: 1.2rem; }
    .wd-builder { grid-template-columns: 1fr; }
    .wd-controls { position: static; }
    .wd-controls-body { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
    .wd-field { margin-bottom: 0; }
    .wd-preview-canvas { min-height: 0; }
    .wd-conversion-inner { grid-template-columns: 1fr; }
    .wd-conversion-badge { display: none; }
}

@media (max-width: 767.98px) {
    .wd-intro { padding: 4.5rem 0 3.8rem; }
    .wd-sector-grid { grid-template-columns: 1fr; }
    .wd-sector-card { min-height: 0; }
    .wd-controls-body { grid-template-columns: 1fr; }
    .wd-stage-toolbar { align-items: flex-start; flex-direction: column; }
    .wd-device-switch { width: 100%; }
    .wd-device-btn { flex: 1; }
    .wd-preview-canvas { padding: .7rem; }
    .wds-nav { padding: .8rem 1rem; }
    .wds-nav-links { display: none; }
    .wds-hero { grid-template-columns: 1fr; }
    .wds-hero-copy { padding: 2.8rem 1.35rem; }
    .wds-visual { min-height: 260px; }
    .wds-proof { grid-template-columns: 1fr; }
    .wds-proof-item { border-right: 0; border-bottom: 1px solid #eceef0; }
    .wds-section { padding: 2.6rem 1.3rem; }
    .wds-service-grid { grid-template-columns: 1fr; }
    .wds-value-layout { grid-template-columns: 1fr; }
    .wds-gallery { grid-template-columns: 1fr; }
    .wds-conversion-section { grid-template-columns: 1fr; padding: 2.8rem 1.3rem; }
    .wd-conversion-inner { padding: 2rem 1.4rem; border-radius: 22px; }
}

@media (max-width: 575.98px) {
    .wd-container { width: min(100% - 1rem, 1440px); }
    .wd-intro h1 { font-size: 2.55rem; }
    .wd-intro-points { display: grid; gap: .55rem; }
    .wd-sector-section { padding: 3.4rem 0 2.6rem; }
    .wd-workspace { padding-top: 1.5rem; }
    .wd-controls,
    .wd-stage { border-radius: 18px; }
    .wd-service-options { grid-template-columns: 1fr; }
    .wd-conversion-actions { display: grid; }
    .wd-cta-primary,
    .wd-cta-secondary { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
    .wd-sector-card,
    .wd-device-frame,
    .wd-input,
    .wd-select { transition: none; }
}
