/* ========================================
   Web Services Landing Page — Malta
   Conversion-focused landing page for website
   and e-commerce services targeting Malta businesses
   Created: 2026-03-17
   Route: /web-services.html
   Prefix: .ws-
   ======================================== */

/* ========================================
   Dark theme base
   ======================================== */
body.ws-page {
    background-color: #050505;
    color: rgba(255, 255, 255, 0.7);
    overflow-x: hidden;
}

body.ws-page h1,
body.ws-page h2,
body.ws-page h3,
body.ws-page h4 {
    color: var(--white);
}

body.ws-page a {
    color: var(--primary-red-light);
}

/* Buttons must keep white text on red background — extra specificity
   to beat the body.ws-page a { color: red } rule on anchor-based buttons */
body.ws-page a.btn-primary,
body.ws-page a.btn-primary:link,
body.ws-page a.btn-primary:visited,
body.ws-page a.btn-primary:hover,
body.ws-page a.btn-primary:active,
body.ws-page .btn-primary {
    color: #ffffff;
}

/* ========================================
   Navbar — Dark theme override
   ======================================== */
.ws-page .navbar {
    background-color: rgba(5, 5, 5, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.3s ease;
}

.ws-page .navbar.scrolled {
    background-color: rgba(5, 5, 5, 0.95);
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.ws-page .nav-brand .logo {
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.ws-page .nav-link {
    color: rgba(255, 255, 255, 0.7);
}

.ws-page .nav-link:hover {
    color: var(--white);
}

.ws-page .nav-toggle span {
    background-color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 767px) {
    .ws-page .nav-menu.active {
        background: #1a1a1a;
        border-color: rgba(255, 255, 255, 0.08);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    }

    .ws-page .nav-menu.active .nav-link {
        color: rgba(255, 255, 255, 0.7);
    }
}

/* ========================================
   Animated gradient background mesh
   ======================================== */
.ws-gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.ws-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
}

.ws-gradient-orb:nth-child(1) {
    width: 600px;
    height: 600px;
    background: var(--primary-red);
    top: -200px;
    right: -100px;
    animation: wsOrbFloat1 20s ease-in-out infinite;
}

.ws-gradient-orb:nth-child(2) {
    width: 500px;
    height: 500px;
    background: var(--primary-red-dark);
    bottom: -150px;
    left: -100px;
    animation: wsOrbFloat2 25s ease-in-out infinite;
}

.ws-gradient-orb:nth-child(3) {
    width: 400px;
    height: 400px;
    background: var(--primary-red-dark);
    top: 50%;
    left: 50%;
    animation: wsOrbFloat3 18s ease-in-out infinite;
}

@keyframes wsOrbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-80px, 60px) scale(1.1); }
    66% { transform: translate(40px, -40px) scale(0.9); }
}

@keyframes wsOrbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(60px, -80px) scale(1.15); }
    66% { transform: translate(-50px, 30px) scale(0.95); }
}

@keyframes wsOrbFloat3 {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-40%, -60%) scale(1.2); }
}

/* ========================================
   Noise texture overlay
   ======================================== */
.ws-noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

/* All content above gradient */
.ws-page section,
.ws-page nav,
.ws-page footer {
    position: relative;
    z-index: 2;
}

/* ========================================
   Gradient text utility
   ======================================== */
.ws-gradient-text {
    background: linear-gradient(135deg, var(--primary-red-light) 0%, var(--primary-red) 50%, var(--primary-red-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   Section base styles
   ======================================== */
.ws-section {
    padding: clamp(5rem, 12vw, 8rem) 0;
}

.ws-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: var(--font-size-xs);
    font-weight: 700;
    color: var(--primary-red-light);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--spacing-5);
}

.ws-section-label::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--primary-red);
}

.ws-section-header {
    margin-bottom: clamp(3rem, 7vw, 5rem);
}

.ws-section-header h2 {
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: var(--spacing-6);
}

.ws-section-header p {
    font-size: clamp(0.95rem, 2vw, 1.125rem);
    color: rgba(255, 255, 255, 0.45);
    max-width: 550px;
    line-height: 1.7;
}

.ws-section-header.centered {
    text-align: center;
}

.ws-section-header.centered .ws-section-label {
    justify-content: center;
}

.ws-section-header.centered p {
    margin: 0 auto;
}

/* ========================================
   Hero — Full viewport, conversion-focused
   ======================================== */
.ws-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px var(--spacing-4) var(--spacing-16);
    position: relative;
}

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

.ws-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.25);
    border-radius: 100px;
    margin-bottom: var(--spacing-8);
    opacity: 0;
    transform: translateY(20px);
    animation: wsReveal 0.6s ease forwards 0.2s;
}

.ws-hero-badge span {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--primary-red-light);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.ws-hero h1 {
    font-size: clamp(2rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: var(--spacing-6);
    opacity: 0;
    transform: translateY(30px);
    animation: wsReveal 0.7s ease forwards 0.4s;
}

.ws-hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.5);
    max-width: 600px;
    margin: 0 auto var(--spacing-10);
    line-height: 1.7;
    opacity: 0;
    transform: translateY(20px);
    animation: wsReveal 0.7s ease forwards 0.6s;
}

.ws-hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-4);
    margin-bottom: var(--spacing-12);
    opacity: 0;
    transform: translateY(20px);
    animation: wsReveal 0.7s ease forwards 0.8s;
}

/* Glowing primary CTA */
.ws-btn-glow {
    box-shadow: 0 0 30px rgba(220, 38, 38, 0.3);
}

.ws-btn-glow:hover {
    box-shadow: 0 0 50px rgba(220, 38, 38, 0.45);
    transform: translateY(-2px);
}

/* Ghost button */
.ws-btn-ghost {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    color: rgba(255, 255, 255, 0.5);
    font-size: var(--font-size-sm);
    font-weight: 600;
    font-family: var(--font-family);
    text-decoration: none;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.ws-btn-ghost:hover {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.04);
}

/* Hero stats row */
.ws-hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--spacing-10);
    opacity: 0;
    animation: wsReveal 0.7s ease forwards 1s;
}

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

.ws-stat-number {
    display: block;
    font-size: var(--font-size-xl);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
}

.ws-stat-label {
    display: block;
    font-size: var(--font-size-xs);
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: var(--spacing-1);
}

@keyframes wsReveal {
    to { opacity: 1; transform: translateY(0); }
}

/* ========================================
   Social proof strip
   ======================================== */
.ws-proof {
    padding: var(--spacing-10) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    background: rgba(255, 255, 255, 0.015);
}

.ws-proof-text {
    text-align: center;
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: var(--spacing-8);
}

.ws-proof-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-10);
    flex-wrap: wrap;
}

.ws-proof-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
}

.ws-logo-img {
    height: 32px;
    width: auto;
    filter: grayscale(1) brightness(0) invert(1);
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.ws-logo-img:hover {
    opacity: 0.7;
}

.ws-proof-placeholder {
    width: 120px;
    height: 40px;
    border: 1px dashed rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ws-proof-placeholder span {
    font-size: var(--font-size-xs);
    color: rgba(255, 255, 255, 0.2);
}

/* ========================================
   Service tiers — Two-column glass cards
   ======================================== */
.ws-tiers {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-6);
}

.ws-tier-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-2xl);
    padding: clamp(2rem, 5vw, 3rem);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.ws-tier-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.ws-tier-card:hover {
    border-color: rgba(220, 38, 38, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(220, 38, 38, 0.08);
}

.ws-tier-card:hover::after {
    opacity: 1;
}

.ws-tier-badge {
    font-size: var(--font-size-xs);
    font-weight: 700;
    color: var(--primary-red-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-4);
}

.ws-tier-price {
    font-size: var(--font-size-base);
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: var(--spacing-2);
}

.ws-tier-price span {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.03em;
}

.ws-tier-timeline {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: var(--spacing-6);
    padding-bottom: var(--spacing-6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ws-tier-desc {
    font-size: var(--font-size-base);
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-bottom: var(--spacing-6);
}

.ws-tier-features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--spacing-8);
}

.ws-tier-features li {
    padding: var(--spacing-2) 0;
    padding-left: var(--spacing-6);
    position: relative;
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--font-size-sm);
    line-height: 1.6;
}

.ws-tier-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-red-light);
    font-weight: 700;
}

.ws-tier-cta {
    width: 100%;
    text-align: center;
}

/* Featured tier — E-commerce */
.ws-tier-featured {
    border-color: rgba(220, 38, 38, 0.25);
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.06) 0%, rgba(220, 38, 38, 0.02) 100%);
}

.ws-tier-popular {
    position: absolute;
    top: var(--spacing-4);
    right: var(--spacing-4);
    font-size: var(--font-size-xs);
    font-weight: 700;
    color: var(--white);
    background: var(--primary-red);
    padding: 6px 14px;
    border-radius: 100px;
    letter-spacing: 0.03em;
}

/* Add-ons list */
.ws-addons {
    margin-top: clamp(3rem, 6vw, 5rem);
    text-align: center;
}

.ws-addons h3 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: var(--spacing-6);
}

.ws-addons-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-3);
}

.ws-addon-tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
    transition: all 0.3s ease;
}

.ws-addon-tag:hover {
    border-color: rgba(220, 38, 38, 0.2);
    color: rgba(255, 255, 255, 0.75);
}

/* ========================================
   Demo showcase — Three cards
   ======================================== */
.ws-demo-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-6);
}

.ws-demo-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.ws-demo-card:hover {
    border-color: rgba(220, 38, 38, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.ws-demo-screenshot {
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    position: relative;
    overflow: hidden;
}

.ws-demo-screenshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.ws-demo-card:hover .ws-demo-screenshot img {
    transform: scale(1.05);
}

.ws-demo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.ws-demo-placeholder span {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.2);
    font-weight: 500;
    letter-spacing: 0.05em;
}

.ws-demo-info {
    padding: clamp(1.25rem, 3vw, 2rem);
}

.ws-demo-category {
    font-size: var(--font-size-xs);
    font-weight: 700;
    color: var(--primary-red-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-3);
}

.ws-demo-info h3 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: var(--spacing-3);
}

.ws-demo-info p {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
    margin-bottom: var(--spacing-5);
}

.ws-demo-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--primary-red-light);
    text-decoration: none;
    transition: gap 0.3s ease;
}

.ws-demo-link:hover {
    gap: 10px;
}

.ws-demo-link::after {
    content: '→';
}

/* ========================================
   Process — Three steps
   ======================================== */
.ws-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-10);
    position: relative;
}

/* Vertical connector line (mobile) */
.ws-steps::before {
    content: '';
    position: absolute;
    left: 27px;
    top: 56px;
    bottom: 56px;
    width: 1px;
    background: linear-gradient(to bottom, rgba(220, 38, 38, 0.3), rgba(220, 38, 38, 0.1));
}

.ws-step {
    display: flex;
    gap: var(--spacing-5);
    align-items: flex-start;
}

.ws-step-num {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 50%;
    background: #0a0a0a;
    border: 2px solid rgba(220, 38, 38, 0.3);
    color: var(--primary-red-light);
    font-size: var(--font-size-lg);
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.ws-step-body h3 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: var(--spacing-3);
}

.ws-step-body p {
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
}

/* ========================================
   Pricing — Full feature comparison
   ======================================== */
.ws-pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-6);
}

.ws-price-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-2xl);
    padding: clamp(2rem, 5vw, 3rem);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.ws-price-card:hover {
    border-color: rgba(220, 38, 38, 0.15);
    transform: translateY(-2px);
}

.ws-price-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--spacing-4);
}

.ws-price {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.03em;
    margin-bottom: var(--spacing-2);
}

.ws-price span {
    font-size: var(--font-size-base);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0;
}

.ws-price-timeline {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: var(--spacing-8);
    padding-bottom: var(--spacing-6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ws-price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--spacing-8);
}

.ws-price-features li {
    padding: var(--spacing-2) 0;
    padding-left: var(--spacing-6);
    position: relative;
    font-size: var(--font-size-sm);
    line-height: 1.6;
}

.ws-feature-included {
    color: rgba(255, 255, 255, 0.6);
}

.ws-feature-included::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-red-light);
    font-weight: 700;
}

.ws-feature-excluded {
    color: rgba(255, 255, 255, 0.2);
}

.ws-feature-excluded::before {
    content: '—';
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.15);
}

.ws-price-cta {
    width: 100%;
    text-align: center;
}

/* Featured pricing card */
.ws-price-featured {
    border-color: rgba(220, 38, 38, 0.25);
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.06) 0%, rgba(220, 38, 38, 0.02) 100%);
}

.ws-price-badge {
    position: absolute;
    top: var(--spacing-4);
    right: var(--spacing-4);
    font-size: var(--font-size-xs);
    font-weight: 700;
    color: var(--white);
    background: var(--primary-red);
    padding: 6px 14px;
    border-radius: 100px;
    letter-spacing: 0.03em;
}

.ws-pricing-note {
    text-align: center;
    margin-top: clamp(2rem, 4vw, 3rem);
}

.ws-pricing-note p {
    font-size: var(--font-size-base);
    color: rgba(255, 255, 255, 0.5);
}

.ws-pricing-note a {
    color: var(--primary-red-light);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 600;
}

/* ========================================
   Booking — Cal.com inline embed
   No overflow:hidden — dropdowns need to
   render outside the container bounds
   ======================================== */
.ws-booking-embed {
    max-width: 1000px;
    margin: 0 auto var(--spacing-8);
    min-height: 500px;
    position: relative;
    z-index: 3;
}

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

.ws-booking-fallback p {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: var(--spacing-2);
}

.ws-booking-fallback a {
    color: var(--primary-red-light);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ========================================
   FAQ — CSS-only accordion
   ======================================== */
.ws-faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.ws-faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-xl);
    margin-bottom: var(--spacing-4);
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.ws-faq-item[open] {
    border-color: rgba(220, 38, 38, 0.2);
}

.ws-faq-question {
    padding: var(--spacing-5) var(--spacing-6);
    cursor: pointer;
    font-weight: 600;
    font-size: var(--font-size-base);
    color: var(--white);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-4);
    transition: color 0.2s ease;
}

.ws-faq-question::-webkit-details-marker {
    display: none;
}

.ws-faq-question::marker {
    display: none;
    content: '';
}

.ws-faq-question::after {
    content: '+';
    flex-shrink: 0;
    font-size: var(--font-size-xl);
    font-weight: 300;
    color: var(--primary-red-light);
    transition: transform 0.3s ease;
}

.ws-faq-item[open] .ws-faq-question::after {
    content: '\2212';
}

.ws-faq-answer {
    padding: 0 var(--spacing-6) var(--spacing-6);
}

.ws-faq-answer p {
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    font-size: var(--font-size-sm);
}

.ws-faq-answer a {
    color: var(--primary-red-light);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ========================================
   Footer — Dark adjustments
   ======================================== */
.ws-page .footer {
    background-color: #030303;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.ws-page .footer-logo {
    filter: brightness(0) invert(1);
    opacity: 0.7;
}

.ws-page .footer h4 {
    color: rgba(255, 255, 255, 0.5);
}

.ws-page .footer p,
.ws-page .footer li {
    color: rgba(255, 255, 255, 0.35);
}

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

.ws-page .footer a:hover {
    color: rgba(255, 255, 255, 0.7);
}

.ws-page .footer-bottom p {
    color: rgba(255, 255, 255, 0.2);
}

/* ========================================
   Reveal animations
   ======================================== */
.ws-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.ws-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.ws-reveal-delay-1 { transition-delay: 0.1s; }
.ws-reveal-delay-2 { transition-delay: 0.2s; }
.ws-reveal-delay-3 { transition-delay: 0.3s; }

/* ========================================
   Responsive — Tablet (768px+)
   ======================================== */
@media (min-width: 768px) {
    .ws-hero-cta {
        flex-direction: row;
        justify-content: center;
    }

    .ws-tiers {
        grid-template-columns: repeat(2, 1fr);
    }

    .ws-demo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ws-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-10);
    }

    .ws-steps::before {
        display: none;
    }

    .ws-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .ws-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================================
   Responsive — Desktop (1024px+)
   ======================================== */
@media (min-width: 1024px) {
    .ws-demo-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .ws-tier-card {
        padding: var(--spacing-10);
    }

    .ws-price-card {
        padding: var(--spacing-10);
    }
}
