@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300;400;500;600;700&family=Sora:wght@400;500;600;700;800&display=swap');

:root {
    /* Color Palette: Rose */
    --ws-primary: #be185d; /* Primary */
    --ws-secondary: #9d174d; /* Secondary */
    --ws-accent: #14b8a6; /* Accent */
    --ws-background: #fdf2f8; /* Background */
    --ws-text: #500724; /* Text */
    --ws-muted: #f9a8d4; /* Muted */

    /* Surface tones */
    --ws-surface: #f8fafc; /* For cards/section-alt backgrounds */
    --ws-surface-alt: #f1f5f9;
    --ws-border: #e2e8f0;

    /* Typography */
    --ws-font-heading: 'Sora', sans-serif;
    --ws-font-body: 'IBM Plex Sans', sans-serif;
    --ws-text-light: #fefefe;
    --ws-text-dark: #1f2937;

    /* Spacing Scale (8pt grid) */
    --ws-space-xxs: 4px;
    --ws-space-xs: 8px;
    --ws-space-sm: 16px;
    --ws-space-md: 24px;
    --ws-space-lg: 32px;
    --ws-space-xl: 48px;
    --ws-space-xxl: 64px;
    --ws-space-xxxl: 96px;
    --ws-space-xxxxl: 128px;

    /* Border Radius */
    --ws-radius-sm: 4px;
    --ws-radius-md: 8px; /* Consistent card/button radius */
    --ws-radius-lg: 12px;
    --ws-radius-xl: 16px;

    /* Shadows */
    --ws-shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --ws-shadow-md: 0 4px 20px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.06);
    --ws-shadow-lg: 0 10px 30px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.05);
}

/* Base Styles & Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 100%;
}

body {
    font-family: var(--ws-font-body);
    line-height: 1.75; /* 1.65-1.75 */
    color: var(--ws-text);
    background-color: var(--ws-background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 1.125rem; /* 1.0625-1.125rem (17-18px) */
}

::selection {
    background-color: var(--ws-primary);
    color: var(--ws-text-light);
}

/* Typography Scale */
h1,
.ws-h1 {
    font-family: var(--ws-font-heading);
    font-weight: 800; /* 700-800 */
    font-size: clamp(2.5rem, 5vw, 4.5rem); /* 48-72px desktop / 36-44px mobile */
    letter-spacing: -0.02em;
    line-height: 1.05;
    color: var(--ws-text-dark);
}

h2,
.ws-h2 {
    font-family: var(--ws-font-heading);
    font-weight: 700;
    font-size: clamp(2rem, 3.5vw, 3rem); /* 32-44px desktop */
    letter-spacing: -0.015em;
    line-height: 1.15;
    color: var(--ws-text-dark);
}

h3,
.ws-h3 {
    font-family: var(--ws-font-heading);
    font-weight: 600;
    font-size: 1.875rem; /* 1.5-1.875rem */
    letter-spacing: -0.01em;
    line-height: 1.2;
    color: var(--ws-text-dark);
}

h4,
.ws-h4 {
    font-family: var(--ws-font-heading);
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 1.3;
    color: var(--ws-text-dark);
}

p {
    margin-bottom: var(--ws-space-sm);
    max-width: 65ch; /* Max width 65ch on prose blocks */
}

a {
    color: var(--ws-primary);
    text-decoration: none;
    transition: color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
    color: var(--ws-secondary);
}

ul {
    list-style: none;
}

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

/* Utility Classes */
.ws-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--ws-space-md);
}

.ws-section {
    padding: var(--ws-space-xxxl) 0; /* Min 96px desktop */
    position: relative;
}

.ws-section-alt {
    background-color: var(--ws-surface);
    padding: var(--ws-space-xxxl) 0;
}

.ws-text-center {
    text-align: center;
}

.ws-grid {
    display: grid;
    gap: var(--ws-space-lg);
}

.ws-grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.ws-grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.ws-grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.ws-flex {
    display: flex;
    gap: var(--ws-space-md);
}

.ws-flex-col {
    flex-direction: column;
}

.ws-justify-center {
    justify-content: center;
}

.ws-items-center {
    align-items: center;
}

/* Icons */
.ws-icon {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}
.ws-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--ws-muted);
    border-radius: var(--ws-radius-md);
    padding: var(--ws-space-sm);
}
.ws-icon-large {
    width: 48px;
    height: 48px;
    color: var(--ws-primary);
}

/* Buttons */
.ws-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--ws-space-sm) var(--ws-space-lg);
    border-radius: var(--ws-radius-md); /* 8-12px */
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    text-decoration: none;
    font-family: var(--ws-font-body);
    font-size: 1rem;
}

.ws-button-primary {
    background-color: var(--ws-primary);
    color: var(--ws-text-light);
}

.ws-button-primary:hover {
    background-color: var(--ws-secondary);
    transform: translateY(-2px);
}

.ws-button-secondary {
    background-color: var(--ws-secondary);
    color: var(--ws-text-light);
}

.ws-button-secondary:hover {
    background-color: var(--ws-primary);
    transform: translateY(-2px);
}

.ws-button-outline {
    background-color: transparent;
    color: var(--ws-primary);
    border-color: var(--ws-primary);
}

.ws-button-outline:hover {
    background-color: var(--ws-primary);
    color: var(--ws-text-light);
    transform: translateY(-2px);
}

.ws-link {
    color: var(--ws-primary);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    display: inline-block;
}

.ws-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--ws-primary);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.ws-link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* Header & Navigation (Transparent Overlay Nav) */
.ws-header {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: rgba(253, 242, 248, 0.95); /* Semi-transparent background */
    padding: var(--ws-space-sm) 0; /* 24px vertical */
    z-index: 1000;
    box-shadow: var(--ws-shadow-sm);
}

.ws-header > .ws-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ws-logo {
    font-family: var(--ws-font-heading);
    font-weight: 700;
    font-size: 1.75rem;
    color: var(--ws-text-dark);
    text-decoration: none;
}

.ws-nav-list {
    display: flex;
    gap: var(--ws-space-lg);
}

.ws-nav-item {
    position: relative;
}

.ws-nav-link {
    color: var(--ws-text);
    font-weight: 500;
    font-size: 1.0625rem;
    padding: var(--ws-space-xs) 0;
    position: relative;
}

.ws-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--ws-primary);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

.ws-nav-link:hover::after, .ws-nav-link.active::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.ws-mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: var(--ws-space-md);
    cursor: pointer;
    color: var(--ws-text);
}

.ws-cart-icon-wrapper {
    position: relative;
    margin-left: var(--ws-space-lg);
}

.ws-cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--ws-accent);
    color: var(--ws-text-light);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Hero Section (Compact hero) */
.ws-hero {
    background-color: var(--ws-background);
    min-height: 40vh; /* max 40vh */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--ws-space-xxl) 0;
    position: relative;
    overflow: hidden;
}

.ws-hero-content {
    max-width: 800px;
    z-index: 10;
    position: relative;
}

.ws-hero-content .ws-h1 {
    margin-bottom: var(--ws-space-sm);
}

.ws-hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: var(--ws-space-lg);
    color: var(--ws-text);
    max-width: 65ch;
    margin-left: auto;
    margin-right: auto;
}

.ws-hero-cta {
    display: flex;
    gap: var(--ws-space-md);
    justify-content: center;
}

.hero-search-bar {
    width: 100%;
    max-width: 600px;
    padding: var(--ws-space-sm) var(--ws-space-md);
    border: 2px solid var(--ws-border);
    border-radius: var(--ws-radius-md);
    font-size: 1.125rem;
    font-family: var(--ws-font-body);
    color: var(--ws-text);
}

.hero-featured-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--ws-space-sm);
    margin-top: var(--ws-space-lg);
}

.hero-chip {
    background-color: var(--ws-surface-alt);
    color: var(--ws-text);
    padding: var(--ws-space-xs) var(--ws-space-md);
    border-radius: 20px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.25s ease;
}

.hero-chip:hover {
    background-color: var(--ws-muted);
    color: var(--ws-text-light);
}


/* Ecommerce Trust Strip */
.ecommerce-trust-strip {
    background-color: var(--ws-surface-alt);
    padding: var(--ws-space-lg) 0;
    text-align: center;
}

.ecommerce-trust-strip .ws-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    align-items: center;
    justify-content: center;
}

.ecommerce-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--ws-space-xs);
    padding: var(--ws-space-sm);
}

.ecommerce-trust-item .ws-icon {
    color: var(--ws-primary);
    width: 32px;
    height: 32px;
}

.ecommerce-trust-item strong {
    font-size: 1rem;
    font-weight: 600;
    color: var(--ws-text-dark);
}

.ecommerce-trust-item span {
    font-size: 0.8rem;
    color: var(--ws-text);
}

/* Product Grid (Main 4-col) */
.ws-product-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--ws-space-lg);
    margin-top: var(--ws-space-lg);
}

.ws-product-card {
    background-color: var(--ws-surface);
    border-radius: var(--ws-radius-md);
    box-shadow: var(--ws-shadow-sm);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.ws-product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ws-shadow-md);
}

.ws-product-card-image {
    width: 100%;
    height: 200px; /* Square image */
    object-fit: cover;
    border-bottom: 1px solid var(--ws-border);
}

.ws-product-card-content {
    padding: var(--ws-space-md);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.ws-product-card-title {
    font-family: var(--ws-font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--ws-text-dark);
    margin-bottom: var(--ws-space-xs);
}

.ws-product-card-price {
    font-family: var(--ws-font-body);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ws-primary);
    margin-top: auto;
    margin-bottom: var(--ws-space-sm);
    display: flex;
    align-items: baseline;
    gap: var(--ws-space-xs);
}

.ws-product-card-price .original-price {
    text-decoration: line-through;
    color: var(--ws-text);
    font-size: 0.9rem;
    font-weight: 400;
}

.ws-product-card-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--ws-space-xxs);
    margin-bottom: var(--ws-space-sm);
}

.ws-product-card-badge {
    background-color: var(--ws-accent);
    color: var(--ws-text-light);
    font-size: 0.75rem;
    padding: var(--ws-space-xxs) var(--ws-space-xs);
    border-radius: var(--ws-radius-sm);
    font-weight: 500;
}

.ws-product-card-status {
    background-color: #d1fae5; /* Green for in stock */
    color: #065f46;
    font-size: 0.75rem;
    padding: var(--ws-space-xxs) var(--ws-space-xs);
    border-radius: var(--ws-radius-sm);
    font-weight: 500;
    position: absolute;
    top: var(--ws-space-sm);
    right: var(--ws-space-sm);
}

.ws-product-card-actions {
    display: flex;
    gap: var(--ws-space-xs);
    margin-top: var(--ws-space-sm);
}

.ws-product-card-actions .ws-button {
    flex-grow: 1;
    padding: var(--ws-space-sm) var(--ws-space-md);
    font-size: 0.9rem;
    border-radius: 20px; /* Pill shape */
}

.ws-product-card-actions .ws-button-primary .ws-icon {
    margin-right: var(--ws-space-xxs);
    width: 20px;
    height: 20px;
}

/* Hero image grid collage */
.ws-hero-grid-collage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--ws-space-lg);
    padding: var(--ws-space-xxxl) 0;
    align-items: center;
    min-height: 80vh;
    background-color: var(--ws-background);
}

.ws-hero-grid-collage .ws-hero-text {
    max-width: 550px;
}

.ws-hero-grid-collage .ws-hero-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--ws-space-sm);
}

.ws-hero-grid-collage .ws-hero-images img {
    border-radius: var(--ws-radius-md);
    object-fit: cover;
    width: 100%;
}

.ws-hero-grid-collage .ws-hero-images img:nth-child(1) {
    grid-row: span 2;
    height: 100%;
}

.ws-hero-grid-collage .ws-hero-images img:nth-child(2) {
    height: 180px;
}

.ws-hero-grid-collage .ws-hero-images img:nth-child(3) {
    height: 220px;
}

/* Trust Logo Grid */
.ws-trust-logos {
    background-color: var(--ws-surface);
    padding: var(--ws-space-xl) 0;
    text-align: center;
}

.ws-trust-logos h3 {
    font-size: 1.125rem;
    color: var(--ws-text);
    margin-bottom: var(--ws-space-lg);
    font-weight: 500;
}

.ws-logo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--ws-space-lg);
}

.ws-logo-grid img {
    height: 80px;
    width: auto;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.ws-logo-grid img:hover {
    opacity: 1;
}

/* Value Use Cases Tabs */
.ws-tabs-section .ws-h2 {
    text-align: center;
    margin-bottom: var(--ws-space-sm);
}

.ws-tabs-section .ws-subheading {
    text-align: center;
    margin-bottom: var(--ws-space-xxl);
    font-size: 1.25rem;
    color: var(--ws-text);
}

.ws-tabs-nav {
    display: flex;
    justify-content: center;
    gap: var(--ws-space-md);
    margin-bottom: var(--ws-space-xl);
    border-bottom: 2px solid var(--ws-surface-alt);
}

.ws-tab-button {
    background: none;
    border: none;
    padding: var(--ws-space-sm) var(--ws-space-md);
    font-family: var(--ws-font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--ws-text);
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
}

.ws-tab-button::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--ws-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.ws-tab-button.active {
    color: var(--ws-primary);
}

.ws-tab-button.active::after {
    transform: scaleX(1);
}

.ws-tab-content {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: var(--ws-space-xxl);
    align-items: center;
}

.ws-tab-content.active {
    display: grid;
}

.ws-tab-image {
    border-radius: var(--ws-radius-lg);
    box-shadow: var(--ws-shadow-md);
}

.ws-tab-text h3 {
    margin-bottom: var(--ws-space-md);
    color: var(--ws-text-dark);
}

.ws-tab-text ul {
    list-style: none;
}

.ws-tab-text ul li {
    display: flex;
    align-items: center;
    gap: var(--ws-space-xs);
    margin-bottom: var(--ws-space-sm);
    color: var(--ws-text);
    font-size: 1rem;
}

.ws-tab-text ul li .ws-icon {
    color: var(--ws-primary);
    width: 20px;
    height: 20px;
}

/* Stats with Chart */
.ws-stats-chart-section {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--ws-space-xxl);
    align-items: center;
}

.ws-stats-column h2 {
    margin-bottom: var(--ws-space-xl);
}

.ws-stat-item {
    display: flex;
    align-items: center;
    gap: var(--ws-space-md);
    margin-bottom: var(--ws-space-lg);
}

.ws-stat-item .ws-icon-large {
    flex-shrink: 0;
}

.ws-stat-item .text h3 {
    margin-bottom: var(--ws-space-xs);
}

.ws-stat-item .text p {
    font-size: 0.95rem;
    color: var(--ws-text);
}

.ws-chart-container {
    background-color: var(--ws-surface);
    border-radius: var(--ws-radius-lg);
    padding: var(--ws-space-xl);
    box-shadow: var(--ws-shadow-md);
    position: relative;
    height: 350px;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    gap: var(--ws-space-sm);
}

.ws-chart-bar {
    width: 40px;
    background-color: var(--ws-primary);
    border-radius: var(--ws-radius-sm) var(--ws-radius-sm) 0 0;
    transition: height 0.5s ease-out;
    position: relative;
}

.ws-chart-bar:nth-child(1) { height: 60%; }
.ws-chart-bar:nth-child(2) { height: 80%; background-color: var(--ws-secondary); }
.ws-chart-bar:nth-child(3) { height: 70%; }
.ws-chart-bar:nth-child(4) { height: 90%; background-color: var(--ws-secondary); }
.ws-chart-bar:nth-child(5) { height: 65%; }

.ws-chart-bar::after {
    content: attr(data-label);
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    color: var(--ws-text);
}

/* Case Study Single Featured */
.ws-case-study-featured .ws-h2 {
    text-align: center;
    margin-bottom: var(--ws-space-sm);
}

.ws-case-study-featured .ws-subheading {
    text-align: center;
    margin-bottom: var(--ws-space-xxl);
    font-size: 1.25rem;
    color: var(--ws-text);
}

.ws-case-study-cover {
    width: 100%;
    height: 50vh;
    object-fit: cover;
    border-radius: var(--ws-radius-lg);
    margin-bottom: var(--ws-space-xl);
}

.ws-case-study-content {
    max-width: 900px;
    margin: 0 auto;
}

.ws-case-study-content .client-info {
    font-size: 1.125rem;
    color: var(--ws-muted);
    margin-bottom: var(--ws-space-xs);
}

.ws-case-study-content h3 {
    margin-bottom: var(--ws-space-md);
}

.ws-case-study-content p {
    margin-bottom: var(--ws-space-xl);
}

.ws-case-study-stats {
    display: flex;
    justify-content: space-around;
    gap: var(--ws-space-md);
    margin-bottom: var(--ws-space-xxl);
    padding: var(--ws-space-lg);
    background-color: var(--ws-surface);
    border-radius: var(--ws-radius-md);
    box-shadow: var(--ws-shadow-sm);
}

.ws-case-study-stat-item {
    text-align: center;
}

.ws-case-study-stat-item .number {
    font-family: var(--ws-font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--ws-primary);
}

.ws-case-study-stat-item .label {
    font-size: 0.9rem;
    color: var(--ws-text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ws-case-study-cta {
    text-align: center;
}

/* Social Review Stars Panel */
.ws-review-panel {
    background-color: var(--ws-surface-alt);
    padding: var(--ws-space-xxxl) 0;
}

.ws-review-panel .ws-h2 {
    text-align: center;
    margin-bottom: var(--ws-space-xl);
}

.ws-review-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--ws-space-md);
    margin-bottom: var(--ws-space-xxl);
    font-size: 1.5rem;
    color: var(--ws-text-dark);
}

.ws-review-summary .stars {
    display: flex;
    gap: var(--ws-space-xs);
}

.ws-review-summary .ws-icon.star {
    color: gold; /* Specific color for stars */
    width: 28px;
    height: 28px;
}

.ws-review-summary span strong {
    font-weight: 700;
    color: var(--ws-primary);
}

.ws-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--ws-space-lg);
}

.ws-testimonial-card {
    background-color: var(--ws-surface);
    border-radius: var(--ws-radius-lg);
    padding: var(--ws-space-xl);
    box-shadow: var(--ws-shadow-md);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.ws-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ws-shadow-lg);
}

.ws-testimonial-quote {
    font-size: 1rem;
    font-style: italic;
    color: var(--ws-text);
    margin-bottom: var(--ws-space-md);
    flex-grow: 1;
}

.ws-testimonial-cite {
    font-weight: 600;
    color: var(--ws-text-dark);
    font-size: 0.95rem;
    display: block;
}

.ws-testimonial-cite span {
    font-weight: 400;
    color: var(--ws-text);
    font-size: 0.85rem;
}

.ws-testimonial-stars {
    margin-bottom: var(--ws-space-sm);
    display: flex;
    gap: var(--ws-space-xs);
}

.ws-testimonial-stars .ws-icon {
    color: gold;
    width: 20px;
    height: 20px;
}

/* Comparison Table */
.ws-comparison-table-section .ws-h2 {
    text-align: center;
    margin-bottom: var(--ws-space-xl);
}

.ws-comparison-table-wrapper {
    overflow-x: auto;
    margin-top: var(--ws-space-xl);
}

.ws-comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    min-width: 700px;
}

.ws-comparison-table th,
.ws-comparison-table td {
    padding: var(--ws-space-md);
    border: 1px solid var(--ws-border);
}

.ws-comparison-table thead th {
    background-color: var(--ws-surface-alt);
    font-family: var(--ws-font-heading);
    font-weight: 600;
    color: var(--ws-text-dark);
    font-size: 1.1rem;
}

.ws-comparison-table tbody tr:nth-child(odd) {
    background-color: var(--ws-surface);
}

.ws-comparison-table tbody tr:hover {
    background-color: var(--ws-surface-alt);
}

.ws-comparison-table .feature-col {
    font-weight: 500;
    color: var(--ws-text-dark);
}

.ws-comparison-table .our-column {
    background-color: rgba(var(--ws-primary-rgb), 0.1) !important; /* Semi-transparent primary */
    font-weight: 600;
    color: var(--ws-text-dark);
}

.ws-comparison-table .icon-cell {
    text-align: center;
}

.ws-comparison-table .icon-cell .ws-icon.check {
    color: var(--ws-accent);
    width: 24px;
    height: 24px;
}

.ws-comparison-table .icon-cell .ws-icon.cross {
    color: var(--ws-secondary);
    width: 24px;
    height: 24px;
    transform: rotate(45deg); /* Simple cross effect */
}

/* FAQ Accordion */
.ws-faq-section .ws-h2 {
    text-align: center;
    margin-bottom: var(--ws-space-xxl);
}

.ws-faq-item {
    background-color: var(--ws-surface);
    border: 1px solid var(--ws-border);
    border-radius: var(--ws-radius-md);
    margin-bottom: var(--ws-space-sm);
    overflow: hidden;
    transition: all 0.3s ease;
}

.ws-faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--ws-space-md) var(--ws-space-lg);
    font-family: var(--ws-font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--ws-text-dark);
    cursor: pointer;
    background-color: var(--ws-surface-alt);
}

.ws-faq-q .ws-icon.arrow {
    transition: transform 0.3s ease;
}

.ws-faq-item.active .ws-faq-q .ws-icon.arrow {
    transform: rotate(90deg);
}

.ws-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 var(--ws-space-lg);
    color: var(--ws-text);
}

.ws-faq-item.active .ws-faq-a {
    max-height: 500px; /* Sufficiently large to cover content */
    padding: var(--ws-space-xs) var(--ws-space-lg) var(--ws-space-md) var(--ws-space-lg);
}

/* CTA Dark Band (value-first) */
.ws-cta {
    background-color: var(--ws-text-dark); /* Dark background */
    padding: var(--ws-space-xxxl) 0; /* 96px vertical padding */
    color: var(--ws-text-light);
    text-align: center;
}

.ws-cta .ws-h2 {
    color: var(--ws-text-light);
    margin-bottom: var(--ws-space-sm);
}

.ws-cta-content p {
    font-size: 1.25rem;
    margin-bottom: var(--ws-space-xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255,255,255,0.9);
}

.ws-cta-buttons {
    display: flex;
    gap: var(--ws-space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.ws-cta-buttons .ws-button-primary {
    background-color: var(--ws-accent);
    color: var(--ws-text-dark);
}

.ws-cta-buttons .ws-button-primary:hover {
    background-color: #10a08e;
}

.ws-cta-buttons .ws-button-outline {
    border-color: var(--ws-text-light);
    color: var(--ws-text-light);
}

.ws-cta-buttons .ws-button-outline:hover {
    background-color: var(--ws-text-light);
    color: var(--ws-text-dark);
}

/* Form Styling */
.ws-contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--ws-surface);
    padding: var(--ws-space-xl);
    border-radius: var(--ws-radius-lg);
    box-shadow: var(--ws-shadow-md);
}

.ws-form-group {
    margin-bottom: var(--ws-space-md);
}

.ws-form-label {
    display: block;
    margin-bottom: var(--ws-space-xs);
    font-weight: 500;
    color: var(--ws-text-dark);
    font-size: 0.95rem;
}

.ws-form-input, .ws-form-textarea {
    width: 100%;
    padding: var(--ws-space-sm) var(--ws-space-md);
    border: 1px solid var(--ws-border);
    border-radius: var(--ws-radius-md);
    font-family: var(--ws-font-body);
    font-size: 1rem;
    color: var(--ws-text-dark);
    background-color: var(--ws-background);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ws-form-input:focus, .ws-form-textarea:focus {
    border-color: var(--ws-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(var(--ws-primary-rgb), 0.2);
}

.ws-form-textarea {
    min-height: 120px;
    resize: vertical;
}

.ws-form-error {
    color: var(--ws-secondary);
    font-size: 0.85rem;
    margin-top: var(--ws-space-xxs);
    display: none;
}

.ws-form-success {
    background-color: #d1fae5;
    color: #065f46;
    padding: var(--ws-space-md);
    border-radius: var(--ws-radius-md);
    text-align: center;
    font-weight: 500;
    margin-top: var(--ws-space-md);
    display: none;
}

/* Footer */
.ws-footer {
    background-color: var(--ws-text-dark);
    color: rgba(255,255,255,0.7);
    padding: var(--ws-space-xxxl) 0 var(--ws-space-md) 0;
    font-size: 0.95rem;
}

.ws-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--ws-space-xl);
    margin-bottom: var(--ws-space-xxl);
}

.ws-footer-col h4 {
    font-family: var(--ws-font-heading);
    font-weight: 600;
    color: var(--ws-text-light);
    margin-bottom: var(--ws-space-md);
    font-size: 1.125rem;
}

.ws-footer-col p {
    margin-bottom: var(--ws-space-md);
    line-height: 1.6;
}

.ws-footer-list {
    list-style: none;
}

.ws-footer-list li {
    margin-bottom: var(--ws-space-sm);
}

.ws-footer-link {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.ws-footer-link:hover {
    color: var(--ws-primary);
}

.ws-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: var(--ws-space-lg);
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

.ws-social-links {
    display: flex;
    gap: var(--ws-space-md);
    margin-top: var(--ws-space-md);
}

.ws-social-links a {
    color: rgba(255,255,255,0.7);
    font-size: 1.5rem;
}

.ws-social-links a:hover {
    color: var(--ws-primary);
}

/* Editorial Moments */
.ws-pullquote {
    font-family: var(--ws-font-heading);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-style: italic;
    text-align: center;
    max-width: 800px;
    margin: var(--ws-space-xxxl) auto;
    color: var(--ws-text-dark);
    position: relative;
    line-height: 1.2;
}

.ws-pullquote::before {
    content: '“';
    font-size: 6rem;
    color: var(--ws-primary);
    position: absolute;
    left: 50%;
    top: -2rem;
    transform: translateX(-50%);
    line-height: 1;
    opacity: 0.2;
    z-index: 1;
}

.ws-pullquote span {
    position: relative;
    z-index: 2;
    display: block;
}

.ws-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--ws-space-lg);
    text-align: center;
    margin: var(--ws-space-xxxl) 0;
}

.ws-stat-number {
    font-family: var(--ws-font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem); /* 56-72px numbers */
    font-weight: 700;
    color: var(--ws-primary);
    line-height: 1;
    margin-bottom: var(--ws-space-sm);
}

.ws-stat-label {
    font-size: 0.9rem;
    color: var(--ws-text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ws-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.ws-animate.ws-animated {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .ws-section {
        padding: var(--ws-space-xxl) 0; /* 64px vertical for tablets */
    }

    .ws-hero-grid-collage {
        grid-template-columns: 1fr;
        padding: var(--ws-space-xxl) 0;
        min-height: auto;
    }

    .ws-hero-grid-collage .ws-hero-text {
        text-align: center;
        margin-bottom: var(--ws-space-xl);
    }

    .ws-hero-grid-collage .ws-hero-images {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .ws-hero-grid-collage .ws-hero-images img:nth-child(1) {
        grid-row: auto;
        height: 300px;
    }
    .ws-hero-grid-collage .ws-hero-images img:nth-child(2), .ws-hero-grid-collage .ws-hero-images img:nth-child(3) {
        height: 200px;
    }

    .ws-tabs-content {
        grid-template-columns: 1fr;
    }

    .ws-stats-chart-section {
        grid-template-columns: 1fr;
    }

    .ws-chart-container {
        height: 300px;
    }

    .ws-case-study-stats {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 1rem;
    }

    h1, .ws-h1 {
        font-size: clamp(2rem, 8vw, 3.5rem);
        line-height: 1.1;
    }

    h2, .ws-h2 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    h3, .ws-h3 {
        font-size: 1.375rem;
    }

    .ws-header {
        padding: var(--ws-space-sm) 0;
    }

    .ws-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--ws-background);
        box-shadow: var(--ws-shadow-md);
        padding: var(--ws-space-md) var(--ws-space-md);
    }

    .ws-nav.ws-active {
        display: flex;
    }

    .ws-nav-list {
        flex-direction: column;
        gap: var(--ws-space-sm);
    }

    .ws-nav-link {
        padding: var(--ws-space-sm) 0;
        display: block;
        text-align: center;
    }

    .ws-mobile-toggle {
        display: block;
    }

    .ecommerce-trust-strip .ws-grid {
        grid-template-columns: 1fr;
    }

    .ws-product-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .ws-cta-buttons {
        flex-direction: column;
    }

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

@media (max-width: 480px) {
    .ws-container {
        padding: 0 var(--ws-space-sm);
    }

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

    .ws-product-card-actions {
        flex-direction: column;
    }

    .ws-pullquote {
        font-size: 1.5rem;
    }

    .ws-stat-number {
        font-size: 3rem;
    }
}

/* Custom properties for RGB use in rgba() */
:root {
    --ws-primary-rgb: 190, 24, 93; /* #be185d */
    --ws-secondary-rgb: 157, 23, 77; /* #9d174d */
    --ws-accent-rgb: 20, 184, 166; /* #14b8a6 */
}

.ws-h1 .ws-headline-highlight {
    position: relative;
    display: inline-block;
}

.ws-h1 .ws-headline-highlight span[data-decor-slot="headline_scribble"] {
    position: absolute;
    bottom: -5px; /* Adjust as needed */
    left: 0;
    width: 100%;
    height: 10px; /* Or size of SVG */
    color: var(--ws-primary);
}

.ws-card-feature .ws-icon-wrapper {
    margin-bottom: var(--ws-space-md);
    width: 64px;
    height: 64px;
    border-radius: 50%;
}

.ws-card-feature .ws-icon-wrapper .ws-icon.ws-icon-large {
    width: 32px;
    height: 32px;
}

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

.ws-check-item {
    display: flex;
    align-items: flex-start;
    gap: var(--ws-space-sm);
    margin-bottom: var(--ws-space-xs);
    color: var(--ws-text);
    font-size: 1rem;
}

.ws-check-item .ws-icon {
    color: var(--ws-primary);
    flex-shrink: 0;
    margin-top: 3px;
}

.ws-sidebar-filter {
    background-color: var(--ws-surface);
    padding: var(--ws-space-md);
    border-radius: var(--ws-radius-md);
}

.ws-sidebar-filter h3 {
    margin-bottom: var(--ws-space-md);
}

.ws-sidebar-filter ul {
    list-style: none;
}

.ws-sidebar-filter li {
    margin-bottom: var(--ws-space-xs);
}

.ws-sidebar-filter a {
    display: block;
    color: var(--ws-text);
    padding: var(--ws-space-xxs) 0;
}

.ws-sidebar-filter a:hover {
    color: var(--ws-primary);
}

.ws-filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: var(--ws-space-sm);
    margin-bottom: var(--ws-space-lg);
}

.ws-filter-chip {
    background-color: var(--ws-surface-alt);
    color: var(--ws-text);
    padding: var(--ws-space-xs) var(--ws-space-md);
    border-radius: 20px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.25s ease;
}

.ws-filter-chip.active, .ws-filter-chip:hover {
    background-color: var(--ws-primary);
    color: var(--ws-text-light);
}

.ws-product-rating .ws-icon.star {
    color: orange;
    width: 18px;
    height: 18px;
}

.ws-product-reviews-summary {
    display: flex;
    align-items: center;
    gap: var(--ws-space-xs);
    font-size: 0.9rem;
    color: var(--ws-text);
}

.ws-product-reviews-summary .stars {
    display: flex;
}

.ws-product-reviews-summary strong {
    color: var(--ws-text-dark);
}

.ws-price-range {
    display: flex;
    gap: var(--ws-space-sm);
    align-items: center;
}

.ws-price-range input {
    width: 80px;
    text-align: center;
}

.ws-newsletter-strip {
    background-color: var(--ws-muted);
    padding: var(--ws-space-xl) 0;
    text-align: center;
}

.ws-newsletter-strip h3 {
    color: var(--ws-text-dark);
    margin-bottom: var(--ws-space-md);
}

.ws-newsletter-strip p {
    color: var(--ws-text);
    margin-bottom: var(--ws-space-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.ws-newsletter-form {
    display: flex;
    justify-content: center;
    gap: var(--ws-space-sm);
    max-width: 500px;
    margin: 0 auto;
}

.ws-newsletter-form .ws-form-input {
    flex-grow: 1;
    border: 1px solid var(--ws-border);
    background-color: var(--ws-background);
}

.ws-newsletter-form .ws-button {
    flex-shrink: 0;
    background-color: var(--ws-primary);
    color: var(--ws-text-light);
}

.ws-newsletter-form .ws-button:hover {
    background-color: var(--ws-secondary);
}

/* === Quality polish === */
.ws-card, [class*="ws-card"] { transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.2s ease; }
.ws-card:hover, [class*="ws-card"]:hover { transform: scale(1.02); box-shadow: 0 10px 28px rgba(0,0,0,0.10); }

/* FAQ collapsed-by-default — hard fallback (any language, any topic) */
.ws-faq-a, [class*="faq-a"], [class*="faq-answer"] { display: none !important; max-height: 0; overflow: hidden; padding: 0 22px; transition: none; }
.ws-faq-item.active .ws-faq-a, [class*="faq-item"].active [class*="faq-a"], [class*="faq-item"].active [class*="faq-answer"] { display: block !important; max-height: none !important; padding: 0 22px 18px; }
.ws-faq-q, [class*="faq-q"], [class*="faq-question"] { cursor: pointer; user-select: none; }
.ws-faq-q *, [class*="faq-q"] * { pointer-events: none; }

/* === PREMIUM SCAFFOLD (class-contract baseline) === */
/* Layout */
.ws-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.ws-section { padding: 96px 0; background: #fdf2f8; }
.ws-section-alt { padding: 96px 0; background: color-mix(in srgb, #be185d 4%, #fdf2f8); }
.ws-grid { display: grid; gap: 32px; }
.ws-grid-2 { display: grid; gap: 32px; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.ws-grid-3 { display: grid; gap: 32px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.ws-grid-4 { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.ws-text-center { text-align: center; }
/* Header / Nav */
.ws-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.94); backdrop-filter: saturate(180%) blur(12px); border-bottom: 1px solid color-mix(in srgb, #500724 8%, transparent); }
.ws-header > .ws-container, .ws-header .ws-container { display: flex; align-items: center; gap: 32px; padding-top: 12px; padding-bottom: 12px; min-height: 64px; }
.ws-brand, .ws-logo { display: inline-flex; align-items: center; gap: 10px; font-family: Sora; font-weight: 700; font-size: 1.05rem; line-height: 1; color: #be185d; letter-spacing: -0.015em; text-decoration: none; flex-shrink: 0; max-width: 220px; margin-right: 24px; }
.ws-brand-mark { display: inline-flex; color: #be185d; flex-shrink: 0; }
.ws-brand-mark svg { display: block; width: 24px; height: 24px; }
.ws-brand-name { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; padding-left: 2px; }
.ws-nav-list, .ws-nav-links { display: flex; gap: 28px; list-style: none; margin: 0 0 0 auto; padding: 0; align-items: center; }
.ws-nav-link { color: #500724; font-weight: 500; font-size: 0.95rem; padding: 6px 0; position: relative; text-decoration: none; }
.ws-nav-link + .ws-nav-link { margin-left: 0; }
.ws-nav-link:hover { color: #be185d; }
.ws-mobile-toggle { display: none; background: none; border: 0; padding: 6px; cursor: pointer; margin-left: auto; font-size: 1.4rem; line-height: 1; }
/* Hero */
.ws-hero { padding: 112px 0 96px; background: radial-gradient(circle at 82% 18%, color-mix(in srgb, #be185d 12%, transparent), transparent 34%), linear-gradient(180deg, color-mix(in srgb, #be185d 7%, #fdf2f8) 0%, #fdf2f8 100%); position: relative; overflow: hidden; }
/* Hero hardening — kill AI-generated giant ghost/background text & accidental absolute-positioned mockups */
.ws-hero [class*="ghost"], .ws-hero [class*="bg-text"], .ws-hero [class*="watermark"], .ws-hero [class*="hero-bg"], .ws-hero [aria-hidden="true"][class*="text"], .ws-hero [data-decorative="true"] { display: none !important; }
.ws-hero .ws-hero-image, .ws-hero .ws-dashboard-mockup { position: relative !important; }
.ws-hero .ws-hero-image { max-width: 100%; }
.ws-hero .ws-hero-image > * { max-width: 100%; }
.ws-hero .ws-stats { position: static !important; }
.ws-hero > .ws-container { max-width: 1200px; }
.ws-hero h1, .ws-hero .ws-h1 { font-family: Sora; font-size: clamp(2.75rem, 5.2vw, 4.75rem); line-height: 1.04; letter-spacing: -0.025em; font-weight: 800; color: #500724; margin: 0; max-width: 720px; width: 100%; text-wrap: balance; word-break: normal; overflow-wrap: break-word; hyphens: none; }
.ws-hero p, .ws-hero .ws-hero-sub, .ws-hero .ws-hero-subtitle { font-size: clamp(1.125rem, 1.5vw, 1.3rem); line-height: 1.7; color: #f9a8d4; max-width: 48ch; margin: 0; }
.ws-hero-content { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr); gap: 72px; align-items: center; }
.ws-hero-text { display: flex; flex-direction: column; gap: 24px; align-items: flex-start; }
.ws-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.ws-hero-image { position: relative; }
.ws-hero-image::before { content: ''; position: absolute; inset: 22px -18px -18px 22px; border-radius: 24px; background: color-mix(in srgb, #be185d 12%, transparent); z-index: 0; }
.ws-hero-image img { position: relative; z-index: 1; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 24px; box-shadow: 0 36px 90px -34px rgba(0,0,0,0.42), 0 2px 10px rgba(0,0,0,0.08); }
.ws-hero-subtitle { font-size: 1.25rem; line-height: 1.6; color: #f9a8d4; max-width: 60ch; }
.ws-h1 { font-family: Sora; font-size: clamp(2.5rem, 5vw, 4.25rem); line-height: 1.05; letter-spacing: -0.02em; font-weight: 800; color: #500724; margin: 0; }
.ws-h2 { font-family: Sora; font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1.15; letter-spacing: -0.015em; font-weight: 700; color: #500724; margin: 0 0 24px; }
.ws-h3 { font-family: Sora; font-size: 1.5rem; line-height: 1.3; font-weight: 700; color: #500724; margin: 0 0 12px; }
.ws-subheading { font-size: 1.125rem; line-height: 1.7; color: #f9a8d4; max-width: 720px; margin: 0 auto 64px; }
/* Buttons */
.ws-button { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 10px; font-weight: 600; font-size: 1rem; text-decoration: none; cursor: pointer; border: 2px solid transparent; transition: all 0.25s cubic-bezier(0.4,0,0.2,1); white-space: nowrap; line-height: 1; }
.ws-button-primary { background: #be185d; color: #fff; border-color: #be185d; }
.ws-button-primary:hover { background: #9d174d; border-color: #9d174d; color: #fff; transform: translateY(-2px); box-shadow: 0 12px 24px -8px color-mix(in srgb, #be185d 50%, transparent); }
.ws-button-secondary { background: #9d174d; color: #fff; border-color: #9d174d; }
.ws-button-secondary:hover { transform: translateY(-2px); filter: brightness(1.05); color: #fff; }
.ws-button-outline { background: transparent; color: #be185d; border-color: #be185d; }
.ws-button-outline:hover { background: #be185d; color: #fff; }
.ws-link { color: #be185d; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.ws-link:hover { gap: 10px; }
/* Cards */
.ws-card { background: #fff; border: 1px solid color-mix(in srgb, #500724 6%, transparent); border-radius: 14px; padding: 32px; transition: transform 0.3s ease, box-shadow 0.3s ease; box-shadow: 0 4px 20px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.06); display: flex; flex-direction: column; gap: 16px; }
.ws-card:hover { transform: translateY(-4px); box-shadow: 0 24px 48px -16px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06); }
.ws-card-feature, .ws-card-service, .ws-card-process { text-align: left; }
/* Icons */
.ws-icon-wrapper { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 12px; background: color-mix(in srgb, #be185d 10%, transparent); color: #be185d; }
.ws-icon-wrapper svg, .ws-icon-wrapper .ws-icon { width: 28px; height: 28px; stroke: #be185d; }
.ws-icon { width: 20px; height: 20px; stroke: currentColor; flex-shrink: 0; }
.ws-icon-large { width: 48px; height: 48px; stroke: #be185d; }
/* Check list */
.ws-check-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; }
.ws-check-item { display: flex; align-items: flex-start; gap: 12px; line-height: 1.6; }
.ws-check-item .ws-icon { color: #be185d; margin-top: 4px; }
/* Editorial */
.ws-pullquote { font-family: Sora; font-style: italic; font-size: clamp(1.5rem, 2.5vw, 2.25rem); line-height: 1.4; color: #500724; max-width: 900px; margin: 64px auto; padding: 0 32px; position: relative; text-align: center; }
.ws-pullquote::before { content: '"'; font-size: 6rem; line-height: 0.8; color: #be185d; opacity: 0.3; position: absolute; left: 0; top: -16px; }
.ws-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 48px; padding: 64px 0; }
.ws-stat-item { text-align: center; }
.ws-stat-number { display: block; font-family: Sora; font-size: clamp(3rem, 5vw, 4.5rem); font-weight: 800; color: #be185d; line-height: 1; letter-spacing: -0.03em; }
.ws-stat-label { display: block; margin-top: 12px; font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: #f9a8d4; }
/* Testimonials */
.ws-testimonial-grid { display: grid; gap: 32px; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.ws-testimonial-card { background: #fff; padding: 32px; border-radius: 14px; box-shadow: 0 4px 20px rgba(0,0,0,0.04); border: 1px solid color-mix(in srgb, #500724 6%, transparent); }
.ws-testimonial-quote { font-style: italic; line-height: 1.7; color: #500724; margin-bottom: 16px; }
.ws-testimonial-cite { font-weight: 600; color: #be185d; font-size: 0.95rem; }
.ws-testimonial-stars { color: #14b8a6; margin-bottom: 12px; }
/* FAQ */
.ws-faq { display: flex; flex-direction: column; gap: 12px; max-width: 820px; margin: 0 auto; }
.ws-faq-item { background: #fff; border: 1px solid color-mix(in srgb, #500724 8%, transparent); border-radius: 12px; overflow: hidden; transition: box-shadow 0.2s ease; }
.ws-faq-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.ws-faq-q { padding: 20px 24px; cursor: pointer; user-select: none; font-weight: 600; color: #500724; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.ws-faq-q::after { content: '+'; font-size: 1.5rem; color: #be185d; transition: transform 0.3s ease; flex-shrink: 0; }
.ws-faq-item.active .ws-faq-q::after { transform: rotate(45deg); }
/* CTA */
.ws-cta { padding: 96px 0; background: linear-gradient(135deg, #be185d 0%, #9d174d 100%); color: #fff; text-align: center; }
.ws-cta .ws-h2, .ws-cta h2 { color: #fff; }
.ws-cta-content { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 24px; align-items: center; }
.ws-cta .ws-button-primary { background: #fff; color: #be185d; border-color: #fff; }
.ws-cta .ws-button-primary:hover { background: #fdf2f8; color: #be185d; }
/* Form */
.ws-form, .ws-contact-form { display: flex; flex-direction: column; gap: 20px; width: min(100%, 680px); margin: 32px auto 0; background: #fff; padding: 44px; border-radius: 24px; border: 1px solid color-mix(in srgb, #500724 7%, transparent); box-shadow: 0 30px 80px -34px rgba(0,0,0,0.32), 0 10px 28px -18px color-mix(in srgb, #be185d 40%, transparent); text-align: left; color: #500724; }
.ws-form-row { display: grid; gap: 20px; grid-template-columns: 1fr 1fr; }
@media (max-width: 600px) { .ws-form-row { grid-template-columns: 1fr; } }
.ws-form-group { display: flex; flex-direction: column; gap: 8px; }
.ws-form-label, .ws-form label { font-weight: 600; font-size: 0.9rem; color: #500724; letter-spacing: 0.01em; }
.ws-form-input, .ws-form-textarea, .ws-form input:not([type="submit"]), .ws-form textarea, .ws-form select { padding: 15px 16px; border: 1.5px solid color-mix(in srgb, #500724 12%, transparent); border-radius: 12px; font-size: 1rem; font-family: inherit; background: color-mix(in srgb, #be185d 2%, #fff); color: #500724; transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease; width: 100%; box-sizing: border-box; }
.ws-form-input:hover, .ws-form-textarea:hover { border-color: color-mix(in srgb, #be185d 35%, transparent); }
.ws-form-input:focus, .ws-form-textarea:focus, .ws-form input:focus, .ws-form textarea:focus { outline: none; border-color: #be185d; box-shadow: 0 0 0 4px color-mix(in srgb, #be185d 18%, transparent); }
.ws-form-textarea, .ws-form textarea { min-height: 140px; resize: vertical; }
/* Form messages — HIDDEN BY DEFAULT, only shown when JS adds .is-visible or removes [hidden] */
.ws-form-error, [class*="form-error"], [class*="form-message-error"] { display: none; color: #dc2626; font-size: 0.875rem; padding: 10px 12px; background: color-mix(in srgb, #dc2626 8%, transparent); border-radius: 8px; }
.ws-form-success, [class*="form-success"], [class*="form-message-success"] { display: none; color: #047857; font-weight: 600; padding: 12px 14px; background: color-mix(in srgb, #059669 10%, transparent); border-radius: 8px; }
.ws-form-error[hidden], .ws-form-success[hidden], [class*="form-error"][hidden], [class*="form-success"][hidden] { display: none !important; }
.ws-form-error.is-visible, .ws-form-success.is-visible { display: block; }
.ws-cta .ws-form, .ws-cta .ws-contact-form { color: #500724; }
.ws-cta .ws-form button[type="submit"], .ws-cta .ws-contact-form button[type="submit"] { background: #be185d; color: #fff; border-color: #be185d; }
/* Footer */
.ws-footer { background: #500724; color: color-mix(in srgb, #fff 80%, transparent); padding: 96px 0 32px; }
.ws-footer .ws-h3, .ws-footer h3, .ws-footer h4 { color: #fff; font-family: Sora; font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 20px; }
.ws-footer .ws-logo { color: #fff; }
.ws-footer-grid { display: grid; gap: 48px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); margin-bottom: 64px; }
.ws-footer-col { display: flex; flex-direction: column; gap: 12px; }
.ws-footer-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.ws-footer-link { color: color-mix(in srgb, #fff 70%, transparent); font-size: 0.95rem; }
.ws-footer-link:hover { color: #fff; }
.ws-footer-bottom { padding-top: 32px; border-top: 1px solid color-mix(in srgb, #fff 12%, transparent); font-size: 0.875rem; color: color-mix(in srgb, #fff 60%, transparent); text-align: center; }
.ws-social-links { display: flex; gap: 16px; }
.ws-social-links a { color: color-mix(in srgb, #fff 70%, transparent); }
.ws-social-links a:hover { color: #fff; }
/* Responsive */
@media (max-width: 900px) {
  .ws-hero { padding: 80px 0 64px; }
  .ws-hero-content { grid-template-columns: 1fr; gap: 40px; }
  .ws-section, .ws-section-alt { padding: 64px 0; }
  .ws-cta { padding: 64px 0; }
  .ws-footer { padding: 64px 0 24px; }
}
@media (max-width: 720px) {
  .ws-nav-list { display: none; }
  .ws-mobile-toggle { display: inline-flex; }
  .ws-nav.active .ws-nav-list, .ws-header.active .ws-nav-list, .ws-nav-list.active, .ws-nav-links.active { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #fff; padding: 24px; gap: 16px; box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
  .ws-card { padding: 24px; }
  .ws-form, .ws-contact-form { padding: 28px; border-radius: 18px; }
}

/* === STYLE FAMILY: ecommerce_showcase === */
.ws-hero { min-height: 80vh; background-size: cover; background-position: center; }
.ws-card { border-radius: 8px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.05); transition: transform 0.25s ease, box-shadow 0.25s ease; }
.ws-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); }
.ws-card img { aspect-ratio: 1/1; object-fit: cover; }
.ws-button-primary { background: #be185d; color: #fff; border-radius: 999px; padding: 14px 32px; font-weight: 600; }
.ws-section-alt { background: #faf6f0; }