@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;700;800&family=Cabin:wght@400;600&display=swap');

:root {
    --b8s-primary: #0891b2;
    --b8s-secondary: #0e7490;
    --b8s-accent: #a855f7;
    --b8s-background: #ecfeff;
    --b8s-text: #164e63;
    --b8s-muted: #67e8f9;
    --b8s-surface: #fffcf5; /* Ink serif classic surface tone */

    --b8s-heading-font: 'Archivo', sans-serif;
    --b8s-body-font: 'Cabin', sans-serif;

    --b8s-border-radius-card: 4px; /* Ink serif classic border radius */
    --b8s-border-radius-button: 4px;
    --b8s-border-radius-image: 4px;

    --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;
}

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

html {
    scroll-behavior: smooth;
}

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

::selection {
    background-color: var(--b8s-muted);
    color: var(--b8s-text);
}

/* Typography Scale */
h1, .ws-h1 {
    font-family: var(--b8s-heading-font);
    font-size: clamp(2.5rem, 5vw, 4.5rem); /* 40px, 72px */
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.05;
    color: var(--b8s-text);
    margin-bottom: var(--ws-space-lg);
}

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

h3, .ws-h3 {
    font-family: var(--b8s-heading-font);
    font-size: 1.75rem; /* 28px */
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.2;
    color: var(--b8s-text);
    margin-bottom: var(--ws-space-md);
}

p {
    margin-bottom: var(--ws-space-md);
    max-width: 70ch; /* Editorial constraint */
}

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

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

strong {
    font-weight: 700;
}

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

.ws-section {
    padding-top: var(--ws-space-xxxl);
    padding-bottom: var(--ws-space-xxxl);
    position: relative;
}

.ws-section-alt {
    background-color: var(--b8s-surface);
    padding-top: var(--ws-space-xxxl);
    padding-bottom: var(--ws-space-xxxl);
    position: relative;
}

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

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

@media (min-width: 768px) {
    .ws-grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.ws-grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--ws-space-lg);
}

@media (min-width: 768px) {
    .ws-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .ws-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.ws-grid-4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--ws-space-lg);
}

@media (min-width: 768px) {
    .ws-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .ws-grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

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

.ws-subheading {
    font-size: 1.125rem; /* 18px */
    color: var(--b8s-text);
    line-height: 1.5;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Header and Navigation */
.ws-header {
    background-color: var(--b8s-background);
    padding: var(--ws-space-md) 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.ws-logo span {
    color: var(--b8s-primary);
}

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

.ws-nav-link {
    color: var(--b8s-text);
    font-weight: 600;
    padding: var(--ws-space-xs) 0;
    position: relative;
}

.ws-nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: var(--b8s-primary);
    transition: width 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.ws-nav-link:hover::after {
    width: 100%;
}

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

@media (max-width: 768px) {
    .ws-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--b8s-background);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        padding: var(--ws-space-sm) var(--ws-space-md);
        transition: transform 0.3s ease-out;
        transform: translateY(-100%);
    }

    .ws-nav.active {
        display: flex;
        transform: translateY(0);
    }

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

    .ws-nav-link {
        width: 100%;
        padding: var(--ws-space-sm) 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

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

/* Hero Section */
.ws-hero {
    background-color: var(--b8s-background);
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding-top: var(--ws-space-xxxxl);
    padding-bottom: var(--ws-space-xxxxl);
    position: relative;
    overflow: hidden;
}

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

@media (min-width: 1024px) {
    .ws-hero-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

.ws-hero-text {
    max-width: 600px;
}

.ws-hero-text .ws-h1 {
    margin-bottom: var(--ws-space-md);
}

.ws-hero-text .ws-hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem); /* 18px, 22px */
    line-height: 1.5;
    color: var(--b8s-text);
    margin-bottom: var(--ws-space-xl);
}

.ws-hero-image {
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ws-hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--b8s-border-radius-image);
    box-shadow: 0 4px 20px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.06);
}

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

.ws-button-primary {
    background-color: var(--b8s-primary);
    color: #595959;
    border: 1px solid var(--b8s-primary);
}

.ws-button-primary:hover {
    background-color: var(--b8s-secondary);
    border-color: var(--b8s-secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.ws-button-secondary {
    background-color: var(--b8s-text);
    color: #595959;
    border: 1px solid var(--b8s-text);
}

.ws-button-secondary:hover {
    background-color: rgba(22, 78, 99, 0.8);
    border-color: rgba(22, 78, 99, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

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

.ws-button-outline:hover {
    background-color: var(--b8s-primary);
    color: #595959;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.ws-link {
    color: var(--b8s-primary);
    text-decoration: underline;
    font-weight: 600;
}

.ws-link:hover {
    color: var(--b8s-secondary);
}

/* Icons */
.ws-icon {
    width: 1.25em;
    height: 1.25em;
    stroke-width: 2;
    flex-shrink: 0;
}

.ws-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(8, 145, 178, 0.1);
    border-radius: var(--b8s-border-radius-card);
    width: var(--ws-space-xxl);
    height: var(--ws-space-xxl);
    color: var(--b8s-primary);
}

.ws-icon-wrapper .ws-icon {
    width: var(--ws-space-xl);
    height: var(--ws-space-xl);
}

.ws-icon-large .ws-icon {
    width: var(--ws-space-xxl);
    height: var(--ws-space-xxl);
}

/* Cards */
.ws-card {
    background-color: var(--b8s-surface);
    border-radius: var(--b8s-border-radius-card);
    padding: var(--ws-space-xl);
    box-shadow: 0 4px 20px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.06);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.ws-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.08);
}

.ws-card-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.ws-card-feature .ws-icon-wrapper {
    margin-bottom: var(--ws-space-md);
}

.ws-card-service {
    display: flex;
    flex-direction: column;
    gap: var(--ws-space-sm);
}

.ws-card-service h3 {
    margin-bottom: var(--ws-space-xs);
}

.ws-card-process {
    display: flex;
    flex-direction: column;
}

.ws-check-list {
    list-style: none;
    margin-top: var(--ws-space-md);
}

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

.ws-check-item .ws-icon {
    color: var(--b8s-primary);
    margin-top: var(--ws-space-xxs);
}

/* Editorial Moments */
.ws-pullquote {
    font-family: var(--b8s-heading-font);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-style: italic;
    line-height: 1.3;
    color: var(--b8s-text);
    margin: var(--ws-space-xxl) auto;
    max-width: 800px;
    text-align: center;
    position: relative;
    padding: 0 var(--ws-space-md);
}

.ws-pullquote::before {
    content: '“';
    font-size: clamp(4rem, 10vw, 8rem);
    color: var(--b8s-muted);
    position: absolute;
    top: -var(--ws-space-md);
    left: var(--ws-space-md);
    line-height: 1;
    z-index: -1;
    opacity: 0.7;
}

.ws-stats {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: var(--ws-space-lg);
    text-align: center;
    margin-top: var(--ws-space-xl);
}

@media (min-width: 768px) {
    .ws-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .ws-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

.ws-stat-item {
    padding: var(--ws-space-md);
    background-color: var(--b8s-surface);
    border-radius: var(--b8s-border-radius-card);
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.ws-stat-number {
    font-family: var(--b8s-heading-font);
    font-size: clamp(3rem, 6vw, 4.5rem); /* 48px, 72px */
    font-weight: 800;
    color: var(--b8s-primary);
    line-height: 1;
    margin-bottom: var(--ws-space-xs);
}

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

/* Testimonials */
.ws-testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--ws-space-lg);
}

@media (min-width: 768px) {
    .ws-testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .ws-testimonial-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.ws-testimonial-card {
    background-color: var(--b8s-surface);
    border-radius: var(--b8s-border-radius-card);
    padding: var(--ws-space-xl);
    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: var(--ws-space-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    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: 0 8px 30px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.08);
}

.ws-testimonial-quote {
    font-size: 1.125rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--b8s-text);
}

.ws-testimonial-cite {
    display: flex;
    align-items: center;
    gap: var(--ws-space-sm);
    margin-top: var(--ws-space-md);
}

.ws-testimonial-cite img {
    width: var(--ws-space-xl);
    height: var(--ws-space-xl);
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.ws-testimonial-cite span {
    font-weight: 600;
    color: var(--b8s-text);
}

.ws-testimonial-cite small {
    display: block;
    font-size: 0.875rem;
    color: rgba(22, 78, 99, 0.7);
}

.ws-testimonial-stars {
    display: flex;
    gap: var(--ws-space-xs);
    color: gold;
}

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

/* FAQ */
.ws-faq-two-column {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--ws-space-lg);
}

@media (min-width: 768px) {
    .ws-faq-two-column {
        grid-template-columns: repeat(2, 1fr);
    }
}

.ws-faq-item {
    background-color: var(--b8s-surface);
    border-radius: var(--b8s-border-radius-card);
    padding: var(--ws-space-md);
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: var(--ws-space-sm);
    overflow: hidden;
    cursor: pointer;
}

.ws-faq-q {
    font-weight: 700;
    color: var(--b8s-text);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--ws-space-xs) 0;
}

.ws-faq-q::after {
    content: '+';
    font-size: 1.5rem;
    margin-left: var(--ws-space-md);
    transition: transform 0.3s ease;
}

.ws-faq-item.active .ws-faq-q::after {
    transform: rotate(45deg);
}

.ws-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding-top 0.3s ease-out;
    color: rgba(22, 78, 99, 0.8);
}

.ws-faq-item.active .ws-faq-a {
    max-height: 500px; /* Sufficiently large for content */
    padding-top: var(--ws-space-sm);
}

.ws-faq-a p {
    margin-bottom: 0;
}

/* CTA */
.ws-cta {
    background-color: var(--b8s-text);
    color: #595959;
    padding-top: var(--ws-space-xxxl);
    padding-bottom: var(--ws-space-xxxl);
    text-align: center;
}

.ws-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.ws-cta-content .ws-h2 {
    color: #595959;
    margin-bottom: var(--ws-space-md);
}

.ws-cta-content .ws-subheading {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--ws-space-xl);
}

.ws-cta-content .ws-button {
    margin: 0 var(--ws-space-sm) var(--ws-space-sm) 0;
}

.ws-cta-content .ws-button-outline {
    color: #595959;
    border-color: #fff;
}

.ws-cta-content .ws-button-outline:hover {
    background-color: #fff;
    color: var(--b8s-text);
}

/* Forms */
.ws-contact-form {
    display: grid;
    gap: var(--ws-space-md);
}

.ws-form-group {
    margin-bottom: var(--ws-space-sm);
    position: relative;
}

.ws-form-label {
    display: block;
    margin-bottom: var(--ws-space-xs);
    font-weight: 600;
    color: var(--b8s-text);
}

.ws-form-input, .ws-form-textarea {
    width: 100%;
    padding: var(--ws-space-sm);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--b8s-border-radius-button);
    font-family: var(--b8s-body-font);
    font-size: 1rem;
    color: var(--b8s-text);
    background-color: var(--b8s-background);
    transition: border-color 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.ws-form-input:focus, .ws-form-textarea:focus {
    outline: none;
    border-color: var(--b8s-primary);
    box-shadow: 0 0 0 2px rgba(8, 145, 178, 0.2);
}

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

.ws-form-error {
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: var(--ws-space-xs);
    display: none;
}

.ws-form-success {
    background-color: rgba(16, 185, 129, 0.1);
    color: #09675f;
    padding: var(--ws-space-md);
    border-radius: var(--b8s-border-radius-button);
    margin-top: var(--ws-space-md);
    display: none;
}

/* Footer */
.ws-footer {
    background-color: var(--b8s-text);
    color: rgba(255, 255, 255, 0.8);
    padding-top: var(--ws-space-xxxl);
    padding-bottom: var(--ws-space-md);
}

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

@media (min-width: 768px) {
    .ws-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .ws-footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.ws-footer-col h3, .ws-footer-col h4 {
    color: #595959;
    font-size: 1.25rem;
    margin-bottom: var(--ws-space-md);
    font-family: var(--b8s-heading-font);
}

.ws-footer-col p {
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: var(--ws-space-sm);
    max-width: 300px;
}

.ws-footer-col a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
}

.ws-footer-col a:hover {
    color: #595959;
}

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

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

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

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

.ws-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: var(--ws-space-lg);
    height: var(--ws-space-lg);
    border-radius: var(--b8s-border-radius-button);
    background-color: rgba(255, 255, 255, 0.1);
    color: #595959;
    transition: background-color 0.25s cubic-bezier(0.4, 0, 0.2, 1), color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.ws-animate {
    opacity: 0;
    transform: translateY(20px);
}

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

/* Review Zine Specific Styles */
.ws-review-card {
    background-color: var(--b8s-surface);
    border-radius: var(--b8s-border-radius-card);
    padding: var(--ws-space-xl);
    box-shadow: 0 4px 20px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: var(--ws-space-md);
    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-review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.08);
}

.ws-ranking-number {
    font-family: var(--b8s-heading-font);
    font-size: 3rem;
    font-weight: 800;
    color: var(--b8s-primary);
    line-height: 1;
    position: absolute;
    top: var(--ws-space-lg);
    left: var(--ws-space-lg);
    background-color: var(--b8s-background);
    padding: var(--ws-space-xs) var(--ws-space-md);
    border-radius: var(--b8s-border-radius-button);
    border: 1px solid rgba(0,0,0,0.05);
}

.ws-review-image {
    width: 100%;
    height: 200px;
    object-fit: contain;
    border-radius: var(--b8s-border-radius-image);
    margin-bottom: var(--ws-space-md);
    background-color: #f8f8f8;
    padding: var(--ws-space-md);
}

.ws-review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--ws-space-sm);
    flex-wrap: wrap;
}

.ws-review-header h3 {
    margin-bottom: 0;
    flex-grow: 1;
    color: var(--b8s-text);
    padding-left: var(--ws-space-xxl);
}

.ws-score-chip {
    background-color: var(--b8s-primary);
    color: #595959;
    padding: var(--ws-space-xs) var(--ws-space-sm);
    border-radius: var(--b8s-border-radius-button);
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

.ws-pros-cons {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--ws-space-md);
    font-size: 0.95rem;
}

@media (min-width: 768px) {
    .ws-pros-cons {
        grid-template-columns: repeat(2, 1fr);
    }
}

.ws-pros-cons ul {
    list-style: none;
    padding: 0;
}

.ws-pros-cons h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: var(--ws-space-xs);
    color: var(--b8s-text);
}

.ws-pros {
    color: #117e39;
}

.ws-cons {
    color: #a40e0e;
}

.ws-pros li, .ws-cons li {
    display: flex;
    align-items: flex-start;
    gap: var(--ws-space-xs);
    margin-bottom: var(--ws-space-xs);
}

.ws-pros li .ws-icon {
    color: #117e39;
}

.ws-cons li .ws-icon {
    color: #a40e0e;
}

.ws-best-for-tag {
    background-color: var(--b8s-secondary);
    color: #595959;
    padding: var(--ws-space-xs) var(--ws-space-sm);
    border-radius: var(--b8s-border-radius-button);
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: var(--ws-space-sm);
    display: inline-block;
}

.ws-methodology-callout {
    background-color: var(--b8s-muted);
    padding: var(--ws-space-xl);
    border-radius: var(--b8s-border-radius-card);
    margin-top: var(--ws-space-xl);
    margin-bottom: var(--ws-space-xxl);
    color: var(--b8s-text);
    border: 1px solid rgba(0,0,0,0.08);
}

.ws-methodology-callout h3 {
    color: var(--b8s-text);
    margin-bottom: var(--ws-space-sm);
}

.ws-comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: var(--ws-space-xl);
    background-color: var(--b8s-surface);
    border-radius: var(--b8s-border-radius-card);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.06);
}

.ws-comparison-table th, .ws-comparison-table td {
    padding: var(--ws-space-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: left;
}

.ws-comparison-table th {
    background-color: var(--b8s-background);
    font-weight: 600;
    color: var(--b8s-text);
}

.ws-comparison-table tbody tr:nth-child(even) {
    background-color: rgba(8, 145, 178, 0.02);
}

.ws-table-button-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

.ws-table-head-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
    vertical-align: middle;
    margin-right: var(--ws-space-sm);
}

.ws-review-meta-info {
    font-size: 0.9rem;
    color: rgba(22, 78, 99, 0.7);
    margin-top: var(--ws-space-xs);
    display: flex;
    gap: var(--ws-space-sm);
    align-items: center;
}

.ws-review-meta-info span {
    display: flex;
    align-items: center;
    gap: var(--ws-space-xxs);
}

.ws-review-meta-info .ws-icon {
    width: 16px;
    height: 16px;
    color: var(--b8s-primary);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    h1, .ws-h1 {
        font-size: clamp(2.2rem, 6vw, 3.8rem);
    }
    h2, .ws-h2 {
        font-size: clamp(1.8rem, 4.5vw, 2.5rem);
    }
    .ws-section {
        padding-top: var(--ws-space-xxl);
        padding-bottom: var(--ws-space-xxl);
    }
    .ws-section-alt {
        padding-top: var(--ws-space-xxl);
        padding-bottom: var(--ws-space-xxl);
    }
}

@media (max-width: 768px) {
    body {
        font-size: 1rem; /* 16px */
        line-height: 1.7;
    }
    .ws-container {
        padding-left: var(--ws-space-sm);
        padding-right: var(--ws-space-sm);
    }
    .ws-header {
        padding: var(--ws-space-sm) 0;
    }
    .ws-hero-content {
        flex-direction: column-reverse;
    }
    .ws-hero-image {
        height: 300px;
        margin-bottom: var(--ws-space-md);
    }
    .ws-hero-text {
        text-align: center;
        max-width: 100%;
    }
    .ws-hero-text .ws-h1 {
        margin-top: var(--ws-space-md);
    }
    .ws-cta-content .ws-button-group {
        flex-direction: column;
    }
    .ws-cta-content .ws-button {
        width: 100%;
        margin-right: 0;
    }
    .ws-footer-grid {
        grid-template-columns: 1fr;
    }
    .ws-pullquote::before {
        font-size: 5rem;
        top: -var(--ws-space-sm);
        left: var(--ws-space-sm);
    }
    .ws-ranking-number {
        font-size: 2.5rem;
        top: var(--ws-space-md);
        left: var(--ws-space-md);
    }
    .ws-review-header h3 {
        padding-left: var(--ws-space-xxl);
    }
}

@media (max-width: 480px) {
    h1, .ws-h1 {
        font-size: clamp(1.8rem, 8vw, 3rem);
        line-height: 1.15;
    }
    h2, .ws-h2 {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
    h3, .ws-h3 {
        font-size: 1.375rem;
    }
    .ws-section {
        padding-top: var(--ws-space-xxl);
        padding-bottom: var(--ws-space-xxl);
    }
    .ws-section-alt {
        padding-top: var(--ws-space-xxl);
        padding-bottom: var(--ws-space-xxl);
    }
    .ws-logo {
        font-size: 1.5rem;
    }
    .ws-stat-number {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
    }
    .ws-pullquote::before {
        font-size: 4rem;
        top: 0;
        left: 0;
    }
    .ws-ranking-number {
        font-size: 2rem;
    }
    .ws-review-image {
        height: 150px;
    }
    .ws-review-header h3 {
        padding-left: var(--ws-space-xl);
        font-size: 1.3rem;
    }
    .ws-score-chip {
        font-size: 0.8rem;
    }
    .ws-pros-cons {
        gap: var(--ws-space-sm);
    }
    .ws-review-meta-info {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--ws-space-xxs);
    }
}

/* Review Zine Specific Additions */
.ws-review-section-header {
    text-align: center;
    margin-bottom: var(--ws-space-xxl);
}

.ws-review-section-header .ws-h2 {
    margin-bottom: var(--ws-space-md);
}

.ws-review-section-header .ws-subheading {
    max-width: 700px;
}

.ws-hero-category-tag {
    display: inline-block;
    background-color: var(--b8s-primary);
    color: #595959;
    padding: var(--ws-space-xs) var(--ws-space-sm);
    border-radius: var(--b8s-border-radius-button);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--ws-space-sm);
}

.ws-hero-meta-info {
    font-size: 0.9rem;
    color: rgba(22, 78, 99, 0.7);
    margin-top: var(--ws-space-xs);
    display: flex;
    gap: var(--ws-space-md);
    align-items: center;
}

.ws-hero-meta-info span {
    display: flex;
    align-items: center;
    gap: var(--ws-space-xxs);
}
.ws-hero-meta-info .ws-icon {
    width: 16px;
    height: 16px;
    color: var(--b8s-primary);
}

/* Form styling for contact page */
.ws-contact-page-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--ws-space-xxl);
}

@media (min-width: 768px) {
    .ws-contact-page-content {
        grid-template-columns: 1fr 0.7fr;
    }
}

.ws-sidebar-info {
    background-color: var(--b8s-surface);
    padding: var(--ws-space-xl);
    border-radius: var(--b8s-border-radius-card);
    box-shadow: 0 4px 20px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.ws-sidebar-info h3 {
    color: var(--b8s-text);
    margin-bottom: var(--ws-space-md);
}

.ws-sidebar-info p {
    margin-bottom: var(--ws-space-sm);
    font-size: 0.95rem;
    line-height: 1.6;
}

.ws-sidebar-info ul {
    list-style: none;
    margin-top: var(--ws-space-md);
}

.ws-sidebar-info ul li {
    display: flex;
    align-items: center;
    gap: var(--ws-space-sm);
    margin-bottom: var(--ws-space-md);
    font-size: 1rem;
}

.ws-sidebar-info ul li .ws-icon {
    color: var(--b8s-primary);
    width: 24px;
    height: 24px;
}

.ws-sidebar-info ul li a {
    color: var(--b8s-text);
    text-decoration: none;
}

.ws-sidebar-info ul li a:hover {
    color: var(--b8s-primary);
}


/* === 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); }

button, [class*="btn"], [class*="cta"] { transition: all 0.3s ease; cursor: pointer; }
button:hover, [class*="btn"]:hover, [class*="cta"]:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); filter: brightness(1.05); }

/* 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: #ecfeff; }
.ws-section-alt { padding: 96px 0; background: color-mix(in srgb, #0891b2 4%, #ecfeff); }
.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, #164e63 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: Archivo; font-weight: 700; font-size: 1.05rem; line-height: 1; color: #0891b2; letter-spacing: -0.015em; text-decoration: none; flex-shrink: 0; max-width: 220px; margin-right: 24px; }
.ws-brand-mark { display: inline-flex; color: #0891b2; 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: #164e63; 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: #0891b2; }
.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, #0891b2 12%, transparent), transparent 34%), linear-gradient(180deg, color-mix(in srgb, #0891b2 7%, #ecfeff) 0%, #ecfeff 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: Archivo; font-size: clamp(2.75rem, 5.2vw, 4.75rem); line-height: 1.04; letter-spacing: -0.025em; font-weight: 800; color: #164e63; 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: #67e8f9; 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, #0891b2 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: #67e8f9; max-width: 60ch; }
.ws-h1 { font-family: Archivo; font-size: clamp(2.5rem, 5vw, 4.25rem); line-height: 1.05; letter-spacing: -0.02em; font-weight: 800; color: #164e63; margin: 0; }
.ws-h2 { font-family: Archivo; font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1.15; letter-spacing: -0.015em; font-weight: 700; color: #164e63; margin: 0 0 24px; }
.ws-h3 { font-family: Archivo; font-size: 1.5rem; line-height: 1.3; font-weight: 700; color: #164e63; margin: 0 0 12px; }
.ws-subheading { font-size: 1.125rem; line-height: 1.7; color: #67e8f9; 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: #0891b2; color: #fff; border-color: #0891b2; }
.ws-button-primary:hover { background: #0e7490; border-color: #0e7490; color: #fff; transform: translateY(-2px); box-shadow: 0 12px 24px -8px color-mix(in srgb, #0891b2 50%, transparent); }
.ws-button-secondary { background: #0e7490; color: #fff; border-color: #0e7490; }
.ws-button-secondary:hover { transform: translateY(-2px); filter: brightness(1.05); color: #fff; }
.ws-button-outline { background: transparent; color: #0891b2; border-color: #0891b2; }
.ws-button-outline:hover { background: #0891b2; color: #fff; }
.ws-link { color: #0891b2; 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, #164e63 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, #0891b2 10%, transparent); color: #0891b2; }
.ws-icon-wrapper svg, .ws-icon-wrapper .ws-icon { width: 28px; height: 28px; stroke: #0891b2; }
.ws-icon { width: 20px; height: 20px; stroke: currentColor; flex-shrink: 0; }
.ws-icon-large { width: 48px; height: 48px; stroke: #0891b2; }
/* 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: #0891b2; margin-top: 4px; }
/* Editorial */
.ws-pullquote { font-family: Archivo; font-style: italic; font-size: clamp(1.5rem, 2.5vw, 2.25rem); line-height: 1.4; color: #164e63; 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: #0891b2; 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: Archivo; font-size: clamp(3rem, 5vw, 4.5rem); font-weight: 800; color: #0891b2; 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: #67e8f9; }
/* 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, #164e63 6%, transparent); }
.ws-testimonial-quote { font-style: italic; line-height: 1.7; color: #164e63; margin-bottom: 16px; }
.ws-testimonial-cite { font-weight: 600; color: #0891b2; font-size: 0.95rem; }
.ws-testimonial-stars { color: #a855f7; 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, #164e63 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: #164e63; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.ws-faq-q::after { content: '+'; font-size: 1.5rem; color: #0891b2; 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, #0891b2 0%, #0e7490 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: #0891b2; border-color: #fff; }
.ws-cta .ws-button-primary:hover { background: #ecfeff; color: #0891b2; }
/* 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, #164e63 7%, transparent); box-shadow: 0 30px 80px -34px rgba(0,0,0,0.32), 0 10px 28px -18px color-mix(in srgb, #0891b2 40%, transparent); text-align: left; color: #164e63; }
.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: #164e63; 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, #164e63 12%, transparent); border-radius: 12px; font-size: 1rem; font-family: inherit; background: color-mix(in srgb, #0891b2 2%, #fff); color: #164e63; 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, #0891b2 35%, transparent); }
.ws-form-input:focus, .ws-form-textarea:focus, .ws-form input:focus, .ws-form textarea:focus { outline: none; border-color: #0891b2; box-shadow: 0 0 0 4px color-mix(in srgb, #0891b2 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: #164e63; }
.ws-cta .ws-form button[type="submit"], .ws-cta .ws-contact-form button[type="submit"] { background: #0891b2; color: #fff; border-color: #0891b2; }
/* Footer */
.ws-footer { background: #164e63; 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: Archivo; 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: editorial_magazine === */
.ws-hero { padding: 0; min-height: 70vh; position: relative; background-size: cover; background-position: center; }
.ws-hero-content { position: absolute; inset: auto 0 0 0; padding: 64px 24px; background: linear-gradient(180deg, transparent, rgba(0,0,0,0.7)); color: #fff; }
.ws-h1 { font-family: 'Merriweather', Georgia, serif; font-weight: 700; }
.ws-card { border-radius: 4px; box-shadow: none; border-top: 4px solid #0891b2; }
.ws-card img, .ws-card-feature img { border-radius: 4px 4px 0 0; }
.ws-button-primary { background: #111; color: #fff; border-radius: 0; }
.ws-section-alt { background: color-mix(in srgb, #0891b2 6%, #ecfeff); }