/* ============================================================
   YesWeTicket · Web corporativa · Estils compartits
   ============================================================ */

:root {
    --ywt-primary: #d81921;
    --ywt-primary-dark: #a51319;
    --ywt-primary-light: #ff3b44;
    --ywt-black: #000000;
    --ywt-gray-900: #1a1a1a;
    --ywt-gray-700: #4a4a4a;
    --ywt-gray-500: #767676;
    --ywt-gray-300: #d4d4d4;
    --ywt-gray-100: #f5f5f5;
    --ywt-gray-50: #fafafa;
    --ywt-cta: #f2c94c;
    --ywt-cta-hover: #e8b923;
    --ywt-green: #49b753;
    --ywt-blue: #4a90e2;
    --ywt-white: #ffffff;
    /* Ticketara brand color (verd corporatiu) */
    --tcr-green: #00a86b;
    --tcr-green-dark: #008a58;
    --tcr-green-light: #1bc785;
    --max-width: 1200px;
    --max-width-narrow: 880px;
    --radius: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow-sm: 0 2px 8px rgba(17, 9, 23, 0.06);
    --shadow-md: 0 8px 24px rgba(17, 9, 23, 0.10);
    --shadow-lg: 0 20px 60px rgba(17, 9, 23, 0.15);
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--ywt-gray-900);
    background: var(--ywt-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--ywt-primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--ywt-primary-dark); }

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}
.container-narrow {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
    padding: 0 24px;
}

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

/* ===================== SKIP LINK (a11y) ===================== */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--ywt-black);
    color: var(--ywt-white);
    padding: 8px 16px;
    z-index: 9999;
    text-decoration: none;
}
.skip-link:focus { top: 0; color: var(--ywt-white); }

/* ===================== HEADER ===================== */
header.site-header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: saturate(180%) blur(10px);
    -webkit-backdrop-filter: saturate(180%) blur(10px);
    border-bottom: 1px solid var(--ywt-gray-100);
    z-index: 100;
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--ywt-black);
}
.nav-logo:hover { color: var(--ywt-black); }
.nav-logo-mark {
    width: 36px;
    height: 36px;
    background: var(--ywt-primary);
    color: var(--ywt-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    font-weight: 900;
    font-size: 1rem;
}
.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}
.nav-links a {
    color: var(--ywt-gray-700);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}
.nav-links a:hover,
.nav-links a.active { color: var(--ywt-primary); }
.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -26px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--ywt-primary);
    border-radius: 2px 2px 0 0;
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}
.lang-switcher {
    display: flex;
    gap: 4px;
    font-size: 0.8rem;
    color: var(--ywt-gray-500);
}
.lang-switcher a {
    color: var(--ywt-gray-500);
    padding: 4px 6px;
    text-transform: uppercase;
    font-weight: 600;
}
.lang-switcher a.active { color: var(--ywt-primary); }
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--ywt-black);
    cursor: pointer;
    padding: 8px;
}

/* ===================== BUTTONS ===================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-family: inherit;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-primary {
    background: var(--ywt-primary);
    color: var(--ywt-white);
    border-color: var(--ywt-primary);
}
.btn-primary:hover {
    background: var(--ywt-primary-dark);
    border-color: var(--ywt-primary-dark);
    color: var(--ywt-white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}
.btn-cta {
    background: var(--ywt-cta);
    color: var(--ywt-black);
    border-color: var(--ywt-cta);
    font-weight: 700;
    padding: 16px 32px;
    font-size: 1rem;
}
.btn-cta:hover {
    background: var(--ywt-cta-hover);
    border-color: var(--ywt-cta-hover);
    color: var(--ywt-black);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.btn-outline {
    background: transparent;
    color: var(--ywt-black);
    border-color: var(--ywt-gray-300);
}
.btn-outline:hover {
    background: var(--ywt-black);
    color: var(--ywt-white);
    border-color: var(--ywt-black);
}
.btn-outline-light {
    background: transparent;
    color: var(--ywt-white);
    border-color: rgba(255, 255, 255, 0.3);
}
.btn-outline-light:hover {
    background: var(--ywt-white);
    color: var(--ywt-black);
    border-color: var(--ywt-white);
}
.btn-ghost {
    background: transparent;
    color: var(--ywt-gray-700);
    border-color: transparent;
}
.btn-ghost:hover { color: var(--ywt-primary); }
.btn-large { padding: 16px 32px; font-size: 1.05rem; }

/* ===================== HERO ===================== */
.hero {
    position: relative;
    padding: 90px 0 110px;
    background: #fff;
    color: var(--ywt-gray-900);
    overflow: hidden;
    border-bottom: 1px solid var(--ywt-gray-300);
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    z-index: 1;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--ywt-white);
    border: 1px solid var(--ywt-gray-300);
    color: var(--ywt-primary);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
}
.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--ywt-green);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(73, 183, 83, 0.25);
}
h1.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    line-height: 1.15;
    font-weight: 600;
    color: var(--ywt-gray-900);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
h1.hero-title .highlight {
    color: var(--ywt-primary);
    font-weight: 800;
    position: relative;
    display: inline-block;
}
h1.hero-title .highlight::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 4px;
    height: 12px;
    background: var(--ywt-cta);
    opacity: 0.5;
    z-index: -1;
    border-radius: 4px;
}
.hero-subtitle {
    font-size: 1.2rem;
    color: var(--ywt-gray-700);
    margin-bottom: 32px;
    line-height: 1.6;
    max-width: 580px;
}
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.hero-trust {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--ywt-gray-500);
    font-size: 0.88rem;
    flex-wrap: wrap;
}
.hero-trust-icon {
    color: var(--ywt-green);
    font-size: 1.2rem;
}
.hero-visual {
    position: relative;
}

/* ===================== PAGE HEADER (per a pàgines internes) ===================== */
.page-header {
    background: #fff;
    color: var(--ywt-gray-900);
    padding: 30px 0 30px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--ywt-gray-300);
}
.page-header .container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}
.page-header-eyebrow {
    display: inline-block;
    color: var(--ywt-primary);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 16px;
}
.page-header h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 600;
    color: var(--ywt-gray-900);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.15;
}
.page-header h1 .highlight {
    color: var(--ywt-primary);
    font-weight: 800;
}
.page-header p {
    font-size: 1.1rem;
    color: var(--ywt-gray-700);
    max-width: 540px;
    line-height: 1.6;
}
.page-header-visual {
    text-align: center;
}
.page-header-visual img {
    max-width: 280px;
    margin: 0 auto;
    filter: drop-shadow(0 6px 20px rgba(0,0,0,.08));
}
@media (max-width: 768px) {
    .page-header .container {
        grid-template-columns: 1fr;
    }
    .page-header-visual { display: none; }
}

/* ===================== BREADCRUMBS ===================== */
.breadcrumbs {
    padding: 14px 0;
    background: var(--ywt-primary);
    font-size: 0.82rem;
}
.breadcrumbs ol {
    list-style: none;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.breadcrumbs li { color: rgba(255, 255, 255, 0.65); }
.breadcrumbs li::after {
    content: '›';
    margin-left: 8px;
    color: rgba(255, 255, 255, 0.4);
}
.breadcrumbs li:last-child::after { content: ''; }
.breadcrumbs a { color: rgba(255, 255, 255, 0.65); }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs li[aria-current="page"] { color: #fff; font-weight: 600; }

/* ===================== TRUST BAR ===================== */
.trust-bar {
    padding: 50px 0;
    background: var(--ywt-white);
    border-top: 1px solid var(--ywt-gray-100);
    border-bottom: 1px solid var(--ywt-gray-100);
}
.trust-bar-title {
    text-align: center;
    font-size: 0.85rem;
    color: var(--ywt-gray-500);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 28px;
    font-weight: 600;
}
.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    opacity: 0.7;
}
.trust-logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--ywt-gray-500);
    letter-spacing: -0.5px;
}

/* ===================== SECTIONS COMUNES ===================== */
section { padding: 100px 0; }
.section-bg-light {
    background: var(--ywt-gray-100);
}
.section-bg-cream { background: var(--ywt-white); }
.section-bg-dark {
    background: var(--ywt-black);
    color: var(--ywt-white);
    position: relative;
    overflow: hidden;
}
.section-bg-dark .section-title { color: var(--ywt-white); }
.section-bg-dark .section-subtitle { color: rgba(255, 255, 255, 0.75); }
.section-bg-dark .section-eyebrow { color: var(--ywt-cta); }

/* ===================== PROMISE BAND (decorative dark band) ===================== */
.promise-band {
    background: var(--ywt-primary);
    color: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.promise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}
.promise-item {
    text-align: center;
    padding: 32px 24px;
    background: #fff;
    border: none;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.promise-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.promise-item .icon-wrap {
    width: 96px;
    height: 96px;
    margin: 0 auto 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.promise-item .icon-wrap svg { width: 56px; height: 56px; }
.promise-item:nth-child(1) .icon-wrap { background: rgba(216, 25, 33, 0.10); color: var(--ywt-primary); }
.promise-item:nth-child(2) .icon-wrap { background: rgba(242, 201, 76, 0.15); color: var(--ywt-cta-hover); }
.promise-item:nth-child(3) .icon-wrap { background: rgba(73, 183, 83, 0.12); color: var(--ywt-green); }
.promise-item:nth-child(4) .icon-wrap { background: rgba(216, 25, 33, 0.10); color: var(--ywt-primary); }
.promise-item:hover .icon-wrap { transform: scale(1.1); }
.promise-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ywt-gray-900);
    margin-bottom: 10px;
}
.promise-item p {
    font-size: 0.88rem;
    color: var(--ywt-gray-700);
    line-height: 1.55;
}
.promise-band-title {
    text-align: center;
    margin-bottom: 56px;
}
.promise-band-title .eyebrow {
    display: inline-block;
    color: var(--ywt-cta);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 14px;
    padding: 6px 14px;
    background: rgba(242, 201, 76, 0.12);
    border: 1px solid rgba(242, 201, 76, 0.3);
    border-radius: 999px;
}
.promise-band-title h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    color: var(--ywt-white);
    font-weight: 800;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
}
.promise-band-title p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    max-width: 580px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}
.section-eyebrow {
    display: inline-block;
    color: var(--ywt-primary);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}
h2.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--ywt-black);
    margin-bottom: 16px;
    line-height: 1.15;
    letter-spacing: -0.02em;
}
.section-subtitle {
    font-size: 1.15rem;
    color: var(--ywt-gray-700);
    line-height: 1.6;
}

/* ===================== FEATURES GRID ===================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.feature-card {
    background: var(--ywt-white);
    padding: 28px 28px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border: 2px solid var(--ywt-primary);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.feature-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    background: rgba(216, 25, 33, 0.08);
    color: var(--ywt-primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature-icon svg { width: 36px; height: 36px; }
.feature-card h3 {
    font-size: 1.05rem;
    color: var(--ywt-gray-900);
    margin-bottom: 6px;
    font-weight: 700;
}
.feature-card p {
    color: var(--ywt-gray-700);
    font-size: 0.9rem;
    line-height: 1.55;
}

/* ===================== ALTERNATING ROWS ===================== */
.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row.reverse .feature-row-content { order: 2; }
.feature-row.reverse .feature-row-visual { order: 1; }
.feature-row-content h2,
.feature-row-content h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--ywt-black);
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.01em;
}
.feature-row-content p {
    font-size: 1.05rem;
    color: var(--ywt-gray-700);
    margin-bottom: 24px;
}
.feature-row-list {
    list-style: none;
    margin-bottom: 28px;
}
.feature-row-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--ywt-gray-900);
    font-size: 0.98rem;
}
.feature-row-list li::before {
    content: '✓';
    color: var(--ywt-green);
    font-weight: 800;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.feature-row-visual {
    position: relative;
}
.feature-row-visual svg { width: 100%; height: auto; }

/* ===================== AUDIENCES ===================== */
.audiences-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.audience-card {
    background: var(--ywt-white);
    padding: 36px 32px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border: 1px solid var(--ywt-gray-300);
    text-align: center;
}
.audience-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--ywt-primary);
}
.audience-card .illustration {
    width: 100%;
    max-width: 180px;
    aspect-ratio: 6 / 5;
    height: auto;
    margin: 0 auto 24px;
    border-radius: var(--radius);
    overflow: hidden;
}
.audience-card .illustration svg {
    width: 100%;
    height: 100%;
    display: block;
}
.audience-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--ywt-black);
    font-weight: 700;
}
.audience-card p {
    color: var(--ywt-gray-700);
    font-size: 0.95rem;
    margin-bottom: 16px;
}
.audience-card .tag {
    display: inline-block;
    background: rgba(216, 25, 33, 0.08);
    color: var(--ywt-primary);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
}

/* ===================== STATS ===================== */
.stats {
    background: linear-gradient(135deg, var(--ywt-primary) 0%, var(--ywt-primary-dark) 100%);
    color: var(--ywt-white);
    padding: 80px 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}
.stat-num {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 8px;
}
.stat-label {
    font-size: 0.95rem;
    opacity: 0.85;
}

/* ===================== PROXIMITY / HUMAN ===================== */
.proximity {
    background: #fff;
    position: relative;
    overflow: hidden;
}
.proximity-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
}
.proximity-grid h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: var(--ywt-black);
    margin-bottom: 20px;
    line-height: 1.15;
    letter-spacing: -0.02em;
}
.proximity-grid p {
    font-size: 1.1rem;
    color: var(--ywt-gray-700);
    margin-bottom: 24px;
    line-height: 1.7;
}
.proximity-values {
    list-style: none;
    margin-top: 28px;
}
.proximity-values li {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}
.proximity-values .icon-circle {
    width: 64px;
    height: 64px;
    background: var(--ywt-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
    color: var(--ywt-primary);
}
.proximity-values .icon-circle svg { width: 36px; height: 36px; }
.proximity-values strong {
    display: block;
    color: var(--ywt-black);
    font-size: 1.05rem;
    margin-bottom: 4px;
}
.proximity-values span {
    color: var(--ywt-gray-700);
    font-size: 0.95rem;
}

/* ===================== TEAM / VALUES ===================== */
.team-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 60px;
}
.value-card {
    text-align: center;
    padding: 28px 24px;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 12px rgba(0,0,0,.08);
}
.value-card .icon {
    width: 72px;
    height: 72px;
    background: var(--ywt-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-sm);
    color: var(--ywt-primary);
}
.value-card .icon svg { width: 36px; height: 36px; }
.value-card h3 {
    font-size: 1.1rem;
    color: var(--ywt-black);
    margin-bottom: 12px;
    font-weight: 700;
}
.value-card p {
    font-size: 0.92rem;
    color: var(--ywt-gray-700);
    line-height: 1.6;
}

/* ===================== SERVICE COMPARISON (360º / Pro / Ticketara) ===================== */
.service-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}
.service-options.three-up {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
}
.service-options.three-up .service-card {
    padding: 40px 28px;
}
.service-card {
    background: var(--ywt-white);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--ywt-gray-100);
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.service-card.ywt,
.service-card.pro {
    border-color: var(--ywt-primary);
}
.service-card.pro::before {
    content: 'MARCA BLANCA · RECINTE ÚNIC';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ywt-primary);
    color: var(--ywt-white);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1px;
    white-space: nowrap;
}
.service-card.mp {
    border-color: #b8860b;
}
.service-card.mp::before {
    content: 'MULTI-PROMOTOR · MARCA BLANCA';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #b8860b 0%, #8b6914 100%);
    color: var(--ywt-white);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1px;
    white-space: nowrap;
}
.service-card.mp .service-card-logo span,
.service-card.pro .service-card-logo span { color: var(--ywt-primary); }
.service-card.mp .service-card-logo .badge-360 { color: #b8860b; }
.service-card.ywt::before {
    content: 'MARCA BLANCA';
    position: absolute;
    top: -14px;
    left: 40px;
    background: var(--ywt-primary);
    color: #fff;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
}
.service-card.tcr {
    border-color: var(--tcr-green);
}
.service-card.tcr::before {
    content: 'MARKETPLACE';
    position: absolute;
    top: -14px;
    left: 40px;
    background: var(--tcr-green);
    color: var(--ywt-white);
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
}
.service-card-logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--ywt-black);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}
.service-card.ywt .service-card-logo span { color: var(--ywt-primary); }
.service-card.tcr .service-card-logo span { color: var(--tcr-green); }
.service-card-tagline {
    font-size: 0.95rem;
    color: var(--ywt-gray-500);
    margin-bottom: 28px;
}
.service-card-model {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 20px 24px;
    background: var(--ywt-gray-100);
    border-radius: var(--radius);
    margin-bottom: 28px;
}
.service-card-model .label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--ywt-gray-500);
    font-weight: 600;
}
.service-card-model .value {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--ywt-black);
}
.service-card h3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--ywt-gray-500);
    font-weight: 700;
    margin-bottom: 14px;
    margin-top: 4px;
}
.service-card-features {
    list-style: none;
    margin-bottom: 28px;
    flex-grow: 1;
}
.service-card-features li {
    padding: 10px 0;
    padding-left: 24px;
    border-bottom: 1px solid var(--ywt-gray-100);
    color: var(--ywt-gray-900);
    font-size: 0.95rem;
    position: relative;
}
.service-card-features li:last-child { border-bottom: none; }
.service-card-features li::before {
    content: '✓';
    color: var(--ywt-green);
    font-weight: 800;
    position: absolute;
    left: 0;
}
.service-card-ideal {
    background: var(--ywt-gray-100);
    padding: 16px 20px;
    border-radius: var(--radius);
    font-size: 0.9rem;
    color: var(--ywt-gray-700);
    margin-bottom: 24px;
}
.service-card-ideal strong {
    display: block;
    color: var(--ywt-black);
    margin-bottom: 4px;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.service-card .btn { width: 100%; }

/* ===================== INTEGRATIONS ===================== */
.integrations-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    max-width: 900px;
    margin: 40px auto 0;
}
.integration-card {
    background: var(--ywt-white);
    padding: 24px 16px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.integration-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.integration-name {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--ywt-gray-700);
}

/* ===================== FAQ ===================== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid var(--ywt-gray-100);
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 0;
    text-align: left;
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ywt-black);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: var(--transition);
}
.faq-question:hover { color: var(--ywt-primary); }
.faq-icon {
    font-size: 1.4rem;
    color: var(--ywt-primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--ywt-gray-700);
    font-size: 0.98rem;
    line-height: 1.7;
}
.faq-item.open .faq-answer {
    max-height: 600px;
    padding-bottom: 24px;
}

/* ===================== CONTACT FORM ===================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}
.contact-info h3 {
    font-size: 1.4rem;
    color: var(--ywt-black);
    margin-bottom: 16px;
    font-weight: 700;
}
.contact-info p {
    color: var(--ywt-gray-700);
    margin-bottom: 32px;
    line-height: 1.7;
}
.contact-info ul {
    list-style: none;
}
.contact-info ul li {
    display: flex;
    gap: 14px;
    margin-bottom: 24px;
    align-items: flex-start;
}
.contact-info ul li .icon {
    width: 40px;
    height: 40px;
    background: rgba(216, 25, 33, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ywt-primary);
    flex-shrink: 0;
}
.contact-info ul li .icon svg { width: 18px; height: 18px; }
.contact-info ul li strong {
    display: block;
    color: var(--ywt-black);
    margin-bottom: 2px;
    font-size: 0.95rem;
}
.contact-info ul li span,
.contact-info ul li a {
    color: var(--ywt-gray-700);
    font-size: 0.92rem;
}
.contact-form {
    background: var(--ywt-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--ywt-gray-100);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ywt-black);
    margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--ywt-gray-300);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.95rem;
    background: var(--ywt-white);
    transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--ywt-primary);
    box-shadow: 0 0 0 3px rgba(216, 25, 33, 0.1);
}
.form-group textarea {
    min-height: 120px;
    resize: vertical;
}
.form-checkbox {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.85rem;
    color: var(--ywt-gray-700);
    margin-bottom: 24px;
}
.form-checkbox input { margin-top: 4px; }

/* ===================== CTA FINAL ===================== */
.cta-final {
    background: var(--ywt-gray-100);
    color: var(--ywt-gray-900);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-final h2 {
    font-size: clamp(2rem, 4.5vw, 3rem);
    margin-bottom: 20px;
    color: var(--ywt-gray-900);
    font-weight: 800;
    letter-spacing: -0.02em;
}
.cta-final p {
    font-size: 1.15rem;
    color: var(--ywt-gray-700);
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.cta-final-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===================== FOOTER ===================== */
footer.site-footer {
    background: var(--ywt-black);
    color: rgba(255, 255, 255, 0.7);
    padding: 70px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}
.footer-brand .nav-logo {
    color: var(--ywt-white);
    margin-bottom: 16px;
}
.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}
.footer-social {
    display: flex;
    gap: 12px;
}
.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--ywt-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
}
.footer-social a:hover {
    background: var(--ywt-primary);
    color: var(--ywt-white);
}
.footer-col h4 {
    color: var(--ywt-white);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
    font-weight: 700;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: var(--transition);
}
.footer-col a:hover { color: var(--ywt-primary-light); }
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    flex-wrap: wrap;
    gap: 16px;
}
.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
    margin: 0 8px;
}
.footer-bottom a:hover { color: var(--ywt-primary-light); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
    .features-grid,
    .audiences-grid,
    .promise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .service-options,
    .service-options.three-up {
        grid-template-columns: 1fr;
        max-width: 560px;
    }
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
    .integrations-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .feature-row { gap: 50px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .team-values-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    section { padding: 70px 0; }
    .hero { padding: 50px 0 70px; }
    .hero-grid,
    .proximity-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .nav-links { display: none; }
    .nav-links.mobile-open {
        display: flex;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--ywt-white);
        padding: 24px;
        border-bottom: 1px solid var(--ywt-gray-100);
        box-shadow: var(--shadow-md);
        gap: 20px;
    }
    .nav-links.mobile-open a.active::after { display: none; }
    .mobile-menu-btn { display: block; }
    .features-grid,
    .audiences-grid,
    .promise-grid {
        grid-template-columns: 1fr;
    }
    .feature-row {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 70px;
    }
    .feature-row.reverse .feature-row-content { order: 1; }
    .feature-row.reverse .feature-row-visual { order: 2; }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .footer-brand { grid-column: 1 / -1; }
    .integrations-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .trust-logos { gap: 32px; }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 28px; }
    .team-values-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .stats-grid { grid-template-columns: 1fr; }
    .service-card { padding: 36px 24px; }
}

/* ===================== PREFERS REDUCED MOTION ===================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================================
   V2 · NUEVOS COMPONENTES (añadidos en la revisión CRO/UX)
   ============================================================ */

/* ---------- TOP ANNOUNCEMENT BAR ---------- */
.top-bar {
    background: var(--ywt-gray-900);
    color: #fff;
    font-size: 0.85rem;
    padding: 8px 0;
    text-align: center;
}
.top-bar a { color: var(--ywt-cta); font-weight: 700; margin-left: 6px; }
.top-bar a:hover { color: var(--ywt-cta-hover); }

/* ---------- HERO PRICE MICROSTRIP ---------- */
.hero-price-strip {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: rgba(255,255,255,0.7);
    border: 1px solid var(--ywt-gray-300);
    border-radius: 999px;
    padding: 8px 20px;
    margin-top: 24px;
    font-size: 0.85rem;
    color: var(--ywt-gray-700);
    box-shadow: var(--shadow-sm);
    flex-wrap: wrap;
}
.hero-price-strip strong { color: var(--ywt-black); font-weight: 800; }
.hero-price-strip span { display: inline-flex; align-items: center; gap: 6px; }
.hero-price-strip .dot { width: 6px; height: 6px; background: var(--ywt-green); border-radius: 50%; }

/* ---------- CATEGORY EYEBROW (pre-headline) ---------- */
.hero-category {
    display: inline-block;
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--ywt-primary);
    margin-bottom: 12px;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
    background: var(--ywt-gray-50);
    padding: 80px 0;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.testimonial-card {
    background: #fff;
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--ywt-gray-100);
    position: relative;
    display: flex;
    flex-direction: column;
}
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: -6px;
    left: 20px;
    font-size: 5rem;
    color: var(--ywt-primary);
    line-height: 1;
    font-family: Georgia, serif;
    opacity: 0.15;
}
.testimonial-quote {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--ywt-gray-900);
    margin-bottom: 24px;
    flex: 1;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--ywt-gray-100);
    padding-top: 16px;
}
.testimonial-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--ywt-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0;
}
.testimonial-meta strong { display: block; font-size: 0.9rem; color: var(--ywt-black); }
.testimonial-meta span { display: block; font-size: 0.8rem; color: var(--ywt-gray-500); }
.testimonial-placeholder-note {
    text-align: center;
    font-size: 0.78rem;
    color: var(--ywt-gray-500);
    margin-top: 24px;
    font-style: italic;
}

/* ---------- LOGOS REALS (para cuando estén disponibles) ---------- */
.real-logos {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 32px;
    align-items: center;
    margin-top: 32px;
}
.real-logos img {
    max-height: 40px;
    width: auto;
    margin: 0 auto;
    opacity: 0.6;
    filter: grayscale(1);
    transition: var(--transition);
}
.real-logos img:hover { opacity: 1; filter: grayscale(0); }

/* ---------- STICKY BOTTOM CTA (mobile) ---------- */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--ywt-primary);
    color: #fff;
    padding: 12px 16px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 90;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.sticky-cta.visible { display: flex; }
.sticky-cta-text { font-size: 0.85rem; font-weight: 600; }
.sticky-cta .btn { padding: 8px 16px; font-size: 0.85rem; background: #fff; color: var(--ywt-primary); border-color: #fff; }

/* ---------- WHATSAPP FAB ---------- */
.whatsapp-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 95;
    transition: var(--transition);
    text-decoration: none;
}
.whatsapp-fab:hover {
    transform: scale(1.08);
    color: #fff;
}
.whatsapp-fab svg { width: 30px; height: 30px; }

/* ---------- CAL.COM / DEMO BOOKING ---------- */
.demo-booking {
    background: linear-gradient(135deg, #fef7f7 0%, #fff9eb 100%);
    border: 2px dashed var(--ywt-primary);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    margin-top: 32px;
}
.demo-booking h3 { font-size: 1.25rem; margin-bottom: 12px; }
.demo-booking p { color: var(--ywt-gray-700); margin-bottom: 20px; }
.demo-booking-embed {
    min-height: 480px;
    background: #fff;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ywt-gray-500);
    font-size: 0.9rem;
    padding: 32px;
}
.contact-alt-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 32px;
}
.contact-alt-methods a {
    background: #fff;
    border: 1px solid var(--ywt-gray-300);
    border-radius: var(--radius);
    padding: 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--ywt-gray-900);
    transition: var(--transition);
    text-decoration: none;
}
.contact-alt-methods a:hover {
    border-color: var(--ywt-primary);
    color: var(--ywt-primary);
    transform: translateY(-2px);
}
.contact-alt-methods strong { display: block; font-size: 0.9rem; }
.contact-alt-methods span { display: block; font-size: 0.75rem; color: var(--ywt-gray-500); }

/* ---------- PRICE CALCULATOR ---------- */
.price-calc {
    background: #fff;
    border: 2px solid var(--ywt-primary);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    max-width: 720px;
    margin: 48px auto;
}
.price-calc h3 {
    text-align: center;
    margin-bottom: 8px;
    font-size: 1.5rem;
}
.price-calc-lead {
    text-align: center;
    color: var(--ywt-gray-500);
    margin-bottom: 32px;
    font-size: 0.9rem;
}
.price-calc-inputs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}
.price-calc-input label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--ywt-gray-700);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.price-calc-input input {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--ywt-gray-300);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
}
.price-calc-input input:focus {
    outline: none;
    border-color: var(--ywt-primary);
    box-shadow: 0 0 0 3px rgba(216, 25, 33, 0.15);
}
.price-calc-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    background: var(--ywt-gray-50);
    padding: 24px;
    border-radius: var(--radius);
}
.price-calc-result {
    text-align: center;
    padding: 16px;
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--ywt-gray-100);
}
.price-calc-result.recommended {
    border: 2px solid var(--ywt-green);
    background: linear-gradient(135deg, #eafaf1 0%, #fff 100%);
    position: relative;
}
.price-calc-result.recommended::before {
    content: 'Recomanat';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ywt-green);
    color: #fff;
    padding: 2px 12px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.price-calc-result strong { display: block; font-size: 0.8rem; color: var(--ywt-gray-700); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.price-calc-result .amount { font-size: 1.5rem; font-weight: 900; color: var(--ywt-primary); }
.price-calc-result .note { font-size: 0.7rem; color: var(--ywt-gray-500); margin-top: 4px; }

/* ---------- CERTIFICATION BADGES ---------- */
.cert-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-top: 32px;
}
.cert-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--ywt-gray-300);
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 0.8rem;
    color: var(--ywt-gray-700);
    font-weight: 600;
}
.cert-badge .status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ywt-green);
}
.cert-badge .status-dot.in-progress { background: var(--ywt-cta); }
.cert-badge .status-dot.planned { background: var(--ywt-gray-300); }

/* ---------- ENTERPRISE MATRIX ---------- */
.enterprise-matrix {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.enterprise-item {
    background: #fff;
    padding: 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--ywt-gray-100);
    box-shadow: var(--shadow-sm);
}
.enterprise-item h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    margin-bottom: 12px;
    color: var(--ywt-black);
}
.enterprise-item .status-chip {
    font-size: 0.65rem;
    padding: 2px 8px;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-left: auto;
}
.status-chip.available { background: #e3f7e6; color: #1e7a2a; }
.status-chip.in-progress { background: #fff4d1; color: #8b6914; }
.status-chip.planned { background: #f0f0f0; color: #666; }
.status-chip.on-demand { background: #e3f0ff; color: #1a5cb0; }
.enterprise-item p { font-size: 0.9rem; color: var(--ywt-gray-700); }

/* ---------- STATUS PAGE ---------- */
.status-hero {
    background: var(--ywt-green);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}
.status-hero .icon-wrap {
    width: 80px; height: 80px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
}
.status-hero h1 { color: #fff; font-size: 2rem; margin-bottom: 8px; }
.status-services {
    display: grid;
    gap: 12px;
    margin-top: 40px;
}
.status-service-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 16px 24px;
    border-radius: var(--radius);
    border: 1px solid var(--ywt-gray-100);
}
.status-service-row strong { font-size: 0.95rem; }
.status-service-row .indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ywt-green);
    font-weight: 700;
    font-size: 0.85rem;
}
.status-service-row .indicator .dot { width: 10px; height: 10px; background: var(--ywt-green); border-radius: 50%; }

/* ---------- BLOG ---------- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}
.blog-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--ywt-gray-100);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.blog-card-thumb {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--ywt-primary) 0%, var(--ywt-primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
    padding: 24px;
    text-align: center;
}
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card-tag { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; color: var(--ywt-primary); margin-bottom: 8px; }
.blog-card h3 { font-size: 1.15rem; margin-bottom: 12px; line-height: 1.3; color: var(--ywt-black); }
.blog-card p { font-size: 0.9rem; color: var(--ywt-gray-700); flex: 1; margin-bottom: 16px; }
.blog-card-meta { display: flex; justify-content: space-between; font-size: 0.75rem; color: var(--ywt-gray-500); border-top: 1px solid var(--ywt-gray-100); padding-top: 12px; }

/* ---------- ARTICLE (long-form) ---------- */
.article-hero {
    padding: 60px 0 40px;
    background: var(--ywt-gray-50);
    border-bottom: 1px solid var(--ywt-gray-100);
}
.article-hero .article-tag {
    display: inline-block;
    background: var(--ywt-primary);
    color: #fff;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.article-hero h1 { font-size: 2.25rem; line-height: 1.2; margin-bottom: 16px; max-width: 780px; }
.article-hero .article-meta { color: var(--ywt-gray-500); font-size: 0.85rem; }
.article-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 24px;
    font-size: 1.05rem;
    line-height: 1.75;
}
.article-content h2 { font-size: 1.5rem; margin: 40px 0 16px; }
.article-content h3 { font-size: 1.2rem; margin: 32px 0 12px; }
.article-content p { margin-bottom: 20px; }
.article-content ul, .article-content ol { margin: 0 0 20px 24px; }
.article-content li { margin-bottom: 8px; }
.article-content blockquote {
    border-left: 4px solid var(--ywt-primary);
    padding: 16px 24px;
    margin: 24px 0;
    background: var(--ywt-gray-50);
    font-style: italic;
    color: var(--ywt-gray-700);
}
.article-content code {
    background: var(--ywt-gray-100);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.9em;
}

/* ---------- LEGAL PAGES ---------- */
.legal-content {
    max-width: 760px;
    margin: 0 auto;
    padding: 60px 24px;
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--ywt-gray-900);
}
.legal-content h1 { font-size: 2rem; margin-bottom: 16px; }
.legal-content .legal-updated { color: var(--ywt-gray-500); font-size: 0.85rem; margin-bottom: 40px; }
.legal-content h2 { font-size: 1.25rem; margin: 32px 0 12px; color: var(--ywt-black); }
.legal-content p { margin-bottom: 16px; }
.legal-content ul { margin: 0 0 16px 24px; }
.legal-content a { text-decoration: underline; }

/* ---------- HONEST NOTICE (in place of fake logos) ---------- */
.honest-notice {
    background: var(--ywt-gray-50);
    border: 1px dashed var(--ywt-gray-300);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    margin-top: 32px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
.honest-notice p { color: var(--ywt-gray-700); margin: 0; }
.honest-notice strong { color: var(--ywt-primary); }

/* ---------- FOOTER V2 (extended) ---------- */
.footer-legal-info {
    background: var(--ywt-gray-100);
    padding: 24px 0;
    font-size: 0.8rem;
    color: var(--ywt-gray-500);
    text-align: center;
}
.footer-legal-info strong { color: var(--ywt-gray-700); }

/* ---------- COMPARISON TABLE (vs competitors) ---------- */
.compare-table { width: 100%; border-collapse: collapse; background: #fff; box-shadow: var(--shadow-sm); border-radius: var(--radius-lg); overflow: hidden; font-size: 0.9rem; }
.compare-table th, .compare-table td { padding: 14px 12px; text-align: center; border-top: 1px solid var(--ywt-gray-100); }
.compare-table th:first-child, .compare-table td:first-child { text-align: left; font-weight: 700; }
.compare-table thead th { background: var(--ywt-gray-900); color: #fff; font-size: 0.85rem; }
.compare-table thead th.ywt-col { background: var(--ywt-primary); }
.compare-table .yes { color: var(--ywt-green); font-weight: 800; }
.compare-table .no { color: #c0392b; font-weight: 700; }
.compare-table .partial { color: var(--ywt-cta-hover); font-weight: 700; }

/* ---------- API DOCS PLACEHOLDER ---------- */
.api-preview {
    background: #1a1a1a;
    color: #f5f5f5;
    padding: 24px;
    border-radius: var(--radius);
    font-family: 'SF Mono', Consolas, Monaco, monospace;
    font-size: 0.85rem;
    line-height: 1.6;
    overflow-x: auto;
}
.api-preview .method { color: #49b753; font-weight: 700; }
.api-preview .path { color: #f2c94c; }
.api-preview .comment { color: #767676; font-style: italic; }

/* ---------- RESPONSIVE (v2 components) ---------- */
@media (max-width: 1024px) {
    .testimonials-grid { grid-template-columns: 1fr 1fr; }
    .blog-grid { grid-template-columns: 1fr 1fr; }
    .real-logos { grid-template-columns: repeat(4, 1fr); }
    .enterprise-matrix { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .testimonials-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .real-logos { grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .price-calc-inputs, .price-calc-results { grid-template-columns: 1fr; }
    .contact-alt-methods { grid-template-columns: 1fr; }
    .hero-price-strip { font-size: 0.75rem; gap: 12px; padding: 8px 14px; }
    .article-hero h1 { font-size: 1.6rem; }
    .whatsapp-fab { bottom: 76px; }
    .sticky-cta.visible ~ .whatsapp-fab { bottom: 76px; }
}
@media (max-width: 480px) {
    .real-logos { grid-template-columns: repeat(2, 1fr); }
    .price-calc { padding: 24px; }
}
