/* ═══════════════════════════════════════════════════════════════
   OVERCORE STAY — Brand CSS
   Colors extracted from Overcore logo:
   Primary Blue:   #1470B8
   Dark Navy:      #2C2E83
   Medium Blue:    #1666B3
   Light Cyan:     #009FE3
   ═══════════════════════════════════════════════════════════════ */

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

:root {
    /* Brand Colors */
    --oc-navy:        #2C2E83;
    --oc-blue:        #1470B8;
    --oc-blue-mid:    #1666B3;
    --oc-cyan:        #009FE3;

    /* Extended Palette */
    --oc-navy-dark:   #1a1c52;
    --oc-navy-light:  #3d3fa0;
    --oc-blue-light:  #e8f4fd;
    --oc-cyan-light:  #d4f1fc;
    --oc-cyan-soft:   #f0faff;
    --oc-white:       #ffffff;
    --oc-gray-50:     #f8fafc;
    --oc-gray-100:    #f1f5f9;
    --oc-gray-200:    #e2e8f0;
    --oc-gray-300:    #cbd5e1;
    --oc-gray-400:    #94a3b8;
    --oc-gray-500:    #64748b;
    --oc-gray-600:    #475569;
    --oc-gray-700:    #334155;
    --oc-gray-800:    #1e293b;
    --oc-gray-900:    #0f172a;

    /* Gradients */
    --gradient-brand:  linear-gradient(135deg, var(--oc-navy) 0%, var(--oc-blue) 50%, var(--oc-cyan) 100%);
    --gradient-hero:   linear-gradient(160deg, var(--oc-navy-dark) 0%, var(--oc-navy) 40%, var(--oc-blue-mid) 100%);
    --gradient-card:   linear-gradient(180deg, var(--oc-blue-light) 0%, var(--oc-white) 100%);
    --gradient-cta:    linear-gradient(135deg, var(--oc-navy) 0%, var(--oc-blue) 100%);

    /* Typography */
    --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    /* Spacing */
    --section-padding: 7rem 0;
    --container-max: 1280px;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: 0.2s var(--ease-out);
    --transition-mid: 0.4s var(--ease-out);
    --transition-slow: 0.6s var(--ease-out);

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(44, 46, 131, 0.06);
    --shadow-md: 0 4px 16px rgba(44, 46, 131, 0.08);
    --shadow-lg: 0 12px 40px rgba(44, 46, 131, 0.12);
    --shadow-xl: 0 24px 64px rgba(44, 46, 131, 0.16);

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    color: var(--oc-gray-800);
    background: var(--oc-white);
    line-height: 1.7;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--oc-blue); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--oc-cyan); }

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

/* ── NAVBAR ───────────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--oc-gray-200);
    transition: all var(--transition-mid);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

.navbar-logo img {
    height: 32px;
    width: auto;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.navbar-nav a {
    color: var(--oc-gray-700);
    font-weight: 500;
    font-size: 0.938rem;
    transition: color var(--transition-fast);
    position: relative;
}

.navbar-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--oc-cyan);
    transition: width var(--transition-mid);
}

.navbar-nav a:hover { color: var(--oc-blue); }
.navbar-nav a:hover::after { width: 100%; }

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Language Switcher */
.lang-switcher {
    position: relative;
}

.lang-switcher-btn {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    background: none;
    border: 1px solid var(--oc-gray-200);
    border-radius: var(--radius-sm);
    padding: 0.4rem 0.75rem;
    font-family: var(--font-primary);
    font-size: 0.813rem;
    font-weight: 500;
    color: var(--oc-gray-600);
    cursor: pointer;
    transition: all var(--transition-fast);
    text-transform: uppercase;
}

.lang-switcher-btn:hover {
    border-color: var(--oc-blue);
    color: var(--oc-blue);
}

.lang-switcher-btn svg {
    width: 14px;
    height: 14px;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--oc-white);
    border: 1px solid var(--oc-gray-200);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    min-width: 140px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all var(--transition-fast);
    z-index: 100;
}

.lang-switcher:hover .lang-dropdown,
.lang-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown a {
    display: block;
    padding: 0.55rem 1rem;
    font-size: 0.875rem;
    color: var(--oc-gray-600);
    transition: all var(--transition-fast);
}

.lang-dropdown a:hover {
    background: var(--oc-blue-light);
    color: var(--oc-blue);
}

.lang-dropdown a.active {
    color: var(--oc-blue);
    font-weight: 600;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.938rem;
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--oc-blue);
    color: var(--oc-white);
    box-shadow: 0 2px 8px rgba(20, 112, 184, 0.3);
}

.btn-primary:hover {
    background: var(--oc-blue-mid);
    color: var(--oc-white);
    box-shadow: 0 4px 16px rgba(20, 112, 184, 0.4);
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: var(--oc-blue);
    border: 2px solid var(--oc-blue);
}

.btn-secondary:hover {
    background: var(--oc-blue);
    color: var(--oc-white);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--oc-gray-700);
    border: 1px solid var(--oc-gray-300);
}

.btn-outline:hover {
    background: var(--oc-gray-50);
    color: var(--oc-blue);
    border-color: var(--oc-blue);
    transform: translateY(-1px);
}

.btn-try {
    background: linear-gradient(135deg, #10B981, #059669);
    color: var(--oc-white);
    box-shadow: 0 2px 12px rgba(16, 185, 129, 0.45);
    position: relative;
    overflow: hidden;
}

.btn-try::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #34D399, #10B981);
    opacity: 0;
    transition: opacity 0.25s;
}

.btn-try:hover::before {
    opacity: 1;
}

.btn-try:hover {
    color: var(--oc-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.55);
}

.btn-try i {
    position: relative;
    z-index: 1;
}

.btn-try span, .btn-try > *:not(i) {
    position: relative;
    z-index: 1;
}

.btn-white {
    background: var(--oc-white);
    color: var(--oc-navy);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    color: var(--oc-navy);
}

.btn-ghost {
    background: rgba(255,255,255,0.15);
    color: var(--oc-white);
    border: 1px solid rgba(255,255,255,0.3);
}

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

.btn-login {
    background: #10B981;
    color: var(--oc-white);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.btn-login:hover {
    background: #059669;
    color: var(--oc-white);
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.4);
    transform: translateY(-1px);
}

.btn-login i {
    font-size: 0.85em;
    transition: transform 0.2s ease;
}

.btn-login:hover i {
    transform: translateX(2px);
}

.btn-nav {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

/* Mobile Menu */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--oc-gray-700);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

/* Hamburger → X animation */
.mobile-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav open state */
.navbar-nav.open {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--oc-white);
    border-bottom: 1px solid var(--oc-gray-200);
    box-shadow: var(--shadow-md);
    padding: 0.5rem 0 1rem;
    z-index: 999;
    animation: fadeInUp 0.2s var(--ease-out) both;
}

.navbar-nav.open li {
    width: 100%;
}

.navbar-nav.open a {
    display: block;
    padding: 0.85rem 2rem;
    font-size: 1rem;
    color: var(--oc-gray-700);
    border-bottom: 1px solid var(--oc-gray-100);
    width: 100%;
}

.navbar-nav.open a:hover {
    background: var(--oc-blue-light);
    color: var(--oc-blue);
}

.navbar-nav.open a::after {
    display: none;
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    overflow: hidden;
    padding-top: 72px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 160%;
    background: radial-gradient(ellipse, rgba(0, 159, 227, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--oc-white) 0%, transparent 100%);
    z-index: 1;
}

/* Animated grid pattern */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 159, 227, 0.15);
    border: 1px solid rgba(0, 159, 227, 0.3);
    border-radius: 100px;
    padding: 0.4rem 1.25rem;
    font-size: 0.813rem;
    font-weight: 600;
    color: var(--oc-cyan);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s var(--ease-out) 0.2s both;
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--oc-cyan);
    animation: pulse 2s infinite;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--oc-white);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s var(--ease-out) 0.3s both;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--oc-cyan), #7dd3fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 1rem;
    max-width: 600px;
    animation: fadeInUp 0.6s var(--ease-out) 0.4s both;
}

/* Hero Micro-target line */
.hero-micro-target {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.03em;
    margin-bottom: 1.75rem;
    animation: fadeInUp 0.6s var(--ease-out) 0.45s both;
}

/* Hero Benefits checklist */
.hero-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem 2rem;
    margin-bottom: 2.25rem;
    animation: fadeInUp 0.6s var(--ease-out) 0.5s both;
}

.hero-benefit {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
}

.hero-benefit i {
    color: var(--oc-cyan);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.6s var(--ease-out) 0.55s both;
}

.hero-actions .btn i {
    font-size: 0.8em;
    transition: transform 0.3s ease;
}
.hero-actions .btn:hover i {
    transform: translateX(3px);
}

/* Hero Value Proof bar */
.hero-proof {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    animation: fadeInUp 0.6s var(--ease-out) 0.65s both;
}

.hero-proof-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-proof-item i {
    color: var(--oc-cyan);
    font-size: 0.85rem;
}

.hero-proof-item span {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
}

.hero-proof-divider {
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

/* Pricing extras */
.pricing-free-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.9rem;
    border-radius: 100px;
    background: linear-gradient(135deg, #10B981, #059669);
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.75rem;
}

.pricing-ent-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.9rem;
    border-radius: 100px;
    background: var(--oc-white);
    color: var(--oc-navy);
    border: 1px solid var(--oc-gray-200);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.75rem;
}

.btn-contact-sales {
    font-size: 1.1rem;
    font-weight: 700;
    padding: 0.85rem 2rem;
}

.pricing-desc {
    font-size: 0.85rem;
    color: var(--oc-gray-500);
    line-height: 1.5;
    margin-bottom: 1.25rem;
    min-height: 2.5em;
}

.pricing-example {
    font-size: 0.78rem;
    color: var(--oc-gray-400);
    text-align: center;
    margin-top: -0.5rem;
    margin-bottom: 1.25rem;
    font-weight: 500;
}

/* ── Professional card: billing toggle ─────────────────────────────────── */
.pro-billing-toggle {
    display: flex;
    background: var(--oc-gray-100);
    border-radius: 8px;
    padding: 3px;
    gap: 3px;
    margin-bottom: 1rem;
}

.billing-btn {
    flex: 1;
    padding: 0.35rem 0.5rem;
    font-size: 0.78rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    background: transparent;
    color: var(--oc-gray-500);
    cursor: pointer;
    transition: all 0.18s ease;
    letter-spacing: 0.01em;
}

.billing-btn.active {
    background: var(--oc-white);
    color: var(--oc-navy);
    box-shadow: 0 1px 3px rgba(0,0,0,0.12);
}

/* ── Professional card: room tier selector ───────────────────────────── */
.pro-tier-selector {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
    margin-bottom: 0.5rem;
}

.tier-btn {
    padding: 0.4rem 0;
    font-size: 0.75rem;
    font-weight: 700;
    text-align: center;
    border: 1.5px solid var(--oc-gray-200);
    border-radius: 6px;
    color: var(--oc-gray-500);
    cursor: pointer;
    transition: all 0.18s ease;
    user-select: none;
    background: transparent;
}

.tier-btn:hover {
    border-color: var(--oc-blue);
    color: var(--oc-blue);
}

.tier-btn.active {
    background: var(--oc-navy);
    border-color: var(--oc-navy);
    color: var(--oc-white);
}

.tier-rooms-label {
    font-size: 0.72rem;
    color: var(--oc-gray-400);
    text-align: center;
    margin-bottom: 0.75rem;
    font-weight: 500;
    min-height: 1em;
}

.pricing-faq { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
    background: white;
    border: 1px solid var(--oc-gray-100);
    border-radius: var(--radius-md);
    overflow: hidden;
}
.faq-item summary {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--oc-gray-800);
    cursor: pointer;
    list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before {
    content: '+';
    float: right;
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--oc-gray-400);
    transition: transform 0.2s;
}
.faq-item[open] summary::before { content: '−'; color: var(--oc-blue); }
.faq-item p {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.88rem;
    color: var(--oc-gray-500);
    line-height: 1.7;
}

/* Hero visual — contenitore assoluto in alto a destra */
.hero-visual {
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

/* Wrapper che gestisce il hover */
.hero-mockup-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
    position: relative;
}

/* Label trigger */
.hero-mockup-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    color: rgba(255,255,255,0.85);
    font-size: 0.78rem;
    font-weight: 500;
    cursor: default;
    backdrop-filter: blur(8px);
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    letter-spacing: 0.04em;
    user-select: none;
    white-space: nowrap;
}

.hero-mockup-trigger:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
}

.hero-mockup-arrow {
    transition: transform 0.3s var(--ease-out);
    font-size: 0.65rem;
}

.hero-mockup-trigger:hover .hero-mockup-arrow {
    transform: rotate(180deg);
}

/* Il mockup è nascosto di default, appare solo sull'hover della label */
.hero-mockup {
    width: 420px;
    background: rgba(10, 20, 50, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    backdrop-filter: blur(16px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.28s var(--ease-out), transform 0.28s var(--ease-out);
    /* posizionato sotto la label */
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
}

/* Appare sull'hover della label — il :hover sul wrapper mantiene aperto anche nel gap */
.hero-mockup-trigger:hover ~ .hero-mockup,
.hero-mockup-wrapper:hover .hero-mockup {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.mockup-header {
    display: flex;
    gap: 6px;
    margin-bottom: 1rem;
}

.mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
}

.mockup-dot:nth-child(1) { background: #ff5f57; }
.mockup-dot:nth-child(2) { background: #febc2e; }
.mockup-dot:nth-child(3) { background: #28c840; }

.mockup-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.mockup-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 1.25rem;
}

.mockup-card-label {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.mockup-card-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--oc-white);
}

.mockup-card-change {
    font-size: 0.75rem;
    color: #4ade80;
    margin-top: 0.25rem;
}

.mockup-bar-chart {
    grid-column: 1 / -1;
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 80px;
    padding: 1rem;
    background: rgba(255,255,255,0.03);
    border-radius: var(--radius-md);
}

.mockup-bar {
    flex: 1;
    border-radius: 3px 3px 0 0;
    background: linear-gradient(to top, var(--oc-blue), var(--oc-cyan));
    opacity: 0.6;
    animation: barGrow 1s var(--ease-out) both;
}

.mockup-bar:nth-child(1)  { height: 40%; animation-delay: 0.8s; }
.mockup-bar:nth-child(2)  { height: 65%; animation-delay: 0.85s; }
.mockup-bar:nth-child(3)  { height: 45%; animation-delay: 0.9s; }
.mockup-bar:nth-child(4)  { height: 80%; animation-delay: 0.95s; }
.mockup-bar:nth-child(5)  { height: 55%; animation-delay: 1s; }
.mockup-bar:nth-child(6)  { height: 90%; animation-delay: 1.05s; opacity: 1; }
.mockup-bar:nth-child(7)  { height: 70%; animation-delay: 1.1s; }
.mockup-bar:nth-child(8)  { height: 85%; animation-delay: 1.15s; }
.mockup-bar:nth-child(9)  { height: 60%; animation-delay: 1.2s; }
.mockup-bar:nth-child(10) { height: 95%; animation-delay: 1.25s; opacity: 1; }
.mockup-bar:nth-child(11) { height: 75%; animation-delay: 1.3s; }
.mockup-bar:nth-child(12) { height: 88%; animation-delay: 1.35s; }

/* ── TRUST BAR ────────────────────────────────────────────── */
.trust-bar {
    padding: 4rem 0;
    background: var(--oc-gray-50);
    text-align: center;
}

.trust-bar p {
    font-size: 0.875rem;
    color: var(--oc-gray-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 2rem;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    opacity: 0.4;
}

.trust-logos span {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--oc-gray-500);
    letter-spacing: 0.05em;
}

/* ── SECTION STYLES ───────────────────────────────────────── */
.section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 800;
    color: var(--oc-gray-900);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    line-height: 1.15;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--oc-gray-500);
    line-height: 1.7;
}

/* ── PRODUCT CARDS ────────────────────────────────────────── */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.product-card {
    position: relative;
    background: var(--oc-white);
    border: 1px solid var(--oc-gray-200);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    transition: all var(--transition-mid);
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-brand);
    opacity: 0;
    transition: opacity var(--transition-mid);
}

.product-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.product-card:hover::before {
    opacity: 1;
}

.product-tag {
    display: inline-block;
    background: var(--oc-blue-light);
    color: var(--oc-blue);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.3rem 0.75rem;
    border-radius: 100px;
    margin-bottom: 1rem;
}

.product-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: var(--gradient-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: white;
    font-size: 1.5rem;
}

.product-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--oc-gray-900);
    margin-bottom: 0.75rem;
}

.product-card p {
    color: var(--oc-gray-500);
    font-size: 0.938rem;
    line-height: 1.7;
}

.product-card .learn-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 1.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--oc-blue);
}

.product-card .learn-link::after {
    content: '→';
    transition: transform var(--transition-fast);
}

.product-card:hover .learn-link::after {
    transform: translateX(4px);
}

/* ── STATS BAR ────────────────────────────────────────────── */
.stats-bar {
    background: var(--gradient-cta);
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--oc-white);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

/* ── SOLUTIONS SECTION ────────────────────────────────────── */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.solution-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: var(--oc-white);
    border: 1px solid var(--oc-gray-200);
    border-radius: var(--radius-lg);
    padding: 2rem 2.5rem;
    transition: all var(--transition-mid);
    text-decoration: none;
    color: inherit;
}

.solution-card:hover {
    border-color: var(--oc-cyan);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    color: inherit;
}

.solution-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    background: var(--oc-blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}

.solution-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--oc-gray-900);
    margin-bottom: 0.35rem;
}

.solution-card p {
    font-size: 0.938rem;
    color: var(--oc-gray-500);
}

/* ── SOLUTIONS FULL GRID ─────────────────────────────────── */
.solutions-grid-full {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.sol-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--oc-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--oc-gray-100);
    transition: all var(--transition-mid);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sol-card:hover {
    border-color: var(--oc-cyan);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    color: inherit;
}

.sol-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--oc-blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--oc-navy);
    margin-bottom: 1rem;
    transition: all var(--transition-fast);
}

.sol-card:hover .sol-icon {
    background: var(--gradient-brand);
    color: var(--oc-white);
}

.sol-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--oc-gray-900);
    margin-bottom: 0.4rem;
}

.sol-card p {
    font-size: 0.82rem;
    color: var(--oc-gray-500);
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .solutions-grid-full { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .solutions-grid-full { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .sol-card { padding: 1.5rem 1rem; }
}
@media (max-width: 480px) {
    .solutions-grid-full { grid-template-columns: 1fr; }
}

/* ── TESTIMONIAL ──────────────────────────────────────────── */
.testimonials {
    background: var(--oc-gray-50);
}

.testimonial-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-quote {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--oc-gray-700);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    font-size: 5rem;
    color: var(--oc-cyan);
    opacity: 0.3;
    position: absolute;
    top: -2rem;
    left: -1rem;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-author {
    font-weight: 700;
    color: var(--oc-gray-900);
}

.testimonial-role {
    font-size: 0.875rem;
    color: var(--oc-gray-400);
}

/* ── CTA SECTION ──────────────────────────────────────────── */
.cta-section {
    position: relative;
    background: var(--gradient-hero);
    padding: 6rem 0;
    text-align: center;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(0, 159, 227, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(20, 112, 184, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 800;
    color: var(--oc-white);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 2.5rem;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer {
    background: var(--oc-gray-900);
    color: var(--oc-gray-400);
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand img {
    height: 28px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 0.875rem;
    color: var(--oc-gray-500);
    max-width: 280px;
    line-height: 1.7;
}

.footer-brand .tagline {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--oc-cyan);
    letter-spacing: 0.05em;
    margin-top: 1rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--oc-gray-500);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    color: var(--oc-cyan);
    border-color: var(--oc-cyan);
}

.footer-col h4 {
    font-size: 0.813rem;
    font-weight: 700;
    color: var(--oc-gray-300);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.65rem;
}

.footer-col a {
    color: var(--oc-gray-500);
    font-size: 0.875rem;
    transition: color var(--transition-fast);
}

.footer-col a:hover {
    color: var(--oc-cyan);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.813rem;
    color: var(--oc-gray-600);
}

/* ── PRICING ──────────────────────────────────────────────── */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}

.pricing-card {
    background: var(--oc-white);
    border: 2px solid var(--oc-gray-200);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    transition: all var(--transition-mid);
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.pricing-card:hover {
    border-color: var(--oc-blue);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

/* Active = clicked by user */
.pricing-card.active {
    border-color: var(--oc-navy);
    box-shadow: var(--shadow-xl);
    transform: translateY(-6px);
}

/* Featured = Professional, highlighted by default */
.pricing-card.featured {
    border-color: var(--oc-navy);
    box-shadow: var(--shadow-xl);
    transform: translateY(-6px);
}

/* NO ::before pseudo-element — removed the gradient bar that caused misalignment */

/* When user clicks another card, flatten the featured card */
.pricing-grid:has(.pricing-card.active:not(.featured)) .pricing-card.featured:not(.active) {
    border-color: var(--oc-gray-200);
    box-shadow: none;
    transform: translateY(0);
}

/* Re-elevate featured when it IS the active one */
.pricing-card.featured.active {
    border-color: var(--oc-navy);
    box-shadow: var(--shadow-xl);
    transform: translateY(-6px);
}

/* "Most Popular" pill — inline, in the document flow */
.popular-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.85rem;
    background: var(--gradient-brand);
    color: var(--oc-white);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: 100px;
    margin-bottom: 1rem;
    transition: opacity var(--transition-fast);
}

.pricing-grid:has(.pricing-card.active:not(.featured)) .pricing-card.featured:not(.active) .popular-pill {
    opacity: 0.35;
}

.pricing-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--oc-gray-900);
    margin-bottom: 0.5rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.pricing-price .amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--oc-gray-900);
}

.pricing-price .period {
    font-size: 0.875rem;
    color: var(--oc-gray-400);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    flex: 1;
}

.pricing-features li {
    padding: 0.5rem 0;
    font-size: 0.938rem;
    color: var(--oc-gray-600);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-features li::before {
    content: '✓';
    color: var(--oc-cyan);
    font-weight: 700;
}

/* ── CONTACT CARDS ────────────────────────────────────────── */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.contact-card {
    background: var(--oc-white);
    border: 1px solid var(--oc-gray-200);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all var(--transition-fast);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-card:hover {
    border-color: var(--oc-cyan);
    box-shadow: 0 8px 30px rgba(0, 159, 227, 0.08);
    transform: translateY(-4px);
}

.contact-card.active {
    border-color: var(--oc-blue);
    box-shadow: 0 8px 30px rgba(20, 112, 184, 0.12);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--oc-blue-light);
    color: var(--oc-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--oc-gray-900);
    margin-bottom: 0.75rem;
}

.contact-card p {
    font-size: 0.875rem;
    color: var(--oc-gray-500);
    line-height: 1.7;
    margin-bottom: 1.75rem;
    flex: 1;
}

.contact-card .btn {
    width: 100%;
    margin-top: auto;
}

/* ── CONTACT FORM ────────────────────────────────────────── */
.contact-form {
    background: var(--oc-white);
    border: 1px solid var(--oc-gray-200);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}

.contact-form-centered {
    max-width: 720px;
    margin: 0 auto;
}

.contact-form-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--oc-gray-900);
    margin-bottom: 2rem;
    text-align: center;
}

/* reCAPTCHA v3 — hide floating badge, show inline notice */
.grecaptcha-badge { visibility: hidden !important; }

.recaptcha-notice {
    font-size: 0.75rem;
    color: var(--oc-gray-400);
    text-align: center;
    margin-top: 1rem;
    line-height: 1.6;
}

.recaptcha-notice a {
    color: var(--oc-gray-500);
    text-decoration: underline;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--oc-gray-700);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--oc-gray-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-size: 0.938rem;
    color: var(--oc-gray-800);
    transition: border-color var(--transition-fast);
    background: var(--oc-white);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--oc-blue);
    box-shadow: 0 0 0 3px rgba(20, 112, 184, 0.1);
}

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

/* ── ANIMATIONS ───────────────────────────────────────────── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translate(40px, -50%); }
    to { opacity: 1; transform: translate(0, -50%); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

@keyframes barGrow {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-visual { display: none; }
    .hero-content { max-width: 100%; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-cards { grid-template-columns: 1fr 1fr 1fr; gap: 1.25rem; }

    .footer-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .navbar-nav { display: none; }
    .mobile-toggle { display: flex; }
    .navbar-actions .btn-primary.btn-nav { display: none; }
    .btn-login { padding: 0.5rem 0.85rem; }

    .hero { min-height: auto; padding: 8rem 0 6rem; }
    .hero h1 { font-size: 2.25rem; }
    .hero-benefits { grid-template-columns: 1fr; gap: 0.5rem; }
    .hero-proof { flex-direction: column; gap: 0.75rem; padding: 1rem; }
    .hero-proof-divider { width: 40px; height: 1px; }
    .hero-actions { flex-direction: column; }

    .products-grid { grid-template-columns: 1fr; }
    .solutions-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card.featured { transform: none; }
    .pricing-card.active { transform: translateY(-3px); }
    .contact-cards { grid-template-columns: 1fr; }

    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }

    .section { padding: 4rem 0; }
    .section-header { margin-bottom: 2.5rem; }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .cta-actions { flex-direction: column; }
}

/* ═══ PLATFORM PAGE — Module Grid ═════════════════════════════ */

.platform-nav-section {
    background: var(--oc-white);
    padding: 1.5rem 0;
    position: sticky;
    top: 72px;
    z-index: 90;
    border-bottom: 1px solid var(--oc-gray-100);
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.platform-category-nav {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
}
.cat-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    border: 1px solid var(--oc-gray-200);
    border-radius: 100px;
    background: var(--oc-white);
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--oc-gray-600);
    cursor: pointer;
    white-space: nowrap;
    transition: all var(--transition-fast);
}
.cat-filter-btn:hover { border-color: var(--oc-blue); color: var(--oc-blue); }
.cat-filter-btn.active {
    background: var(--gradient-brand);
    color: var(--oc-white);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(44, 46, 131, 0.25);
}
.cat-filter-btn i { font-size: 0.8em; }

.platform-modules-section {
    padding: 4rem 0;
    background: var(--oc-gray-50);
}

.module-category-group { margin-bottom: 4rem; }
.category-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
}
.category-icon-wrap {
    width: 52px; height: 52px;
    border-radius: var(--radius-md);
    background: var(--gradient-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--oc-white);
    font-size: 1.2rem;
    flex-shrink: 0;
}
.category-title { font-size: 1.4rem; margin-bottom: 0.25rem; }
.category-subtitle { font-size: 0.88rem; color: var(--oc-gray-500); max-width: 600px; }

.modules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.module-card {
    background: var(--oc-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--oc-gray-200);
    transition: all var(--transition-mid);
    position: relative;
    overflow: hidden;
}
.module-card:hover {
    border-color: var(--oc-blue);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.module-card.module-locale {
    border-color: #c5e1a5;
    background: linear-gradient(135deg, #f1f8e9 0%, var(--oc-white) 40%);
}
.module-card.module-locale:hover {
    border-color: #7cb342;
    box-shadow: 0 10px 40px rgba(124, 179, 66, 0.15);
}

.module-locale-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    background: #e8f5e9;
    color: #2e7d32;
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.module-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}
.module-icon {
    width: 44px; height: 44px;
    border-radius: var(--radius-md);
    background: rgba(44, 46, 131, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--oc-navy);
    font-size: 1.1rem;
    transition: all var(--transition-fast);
}
.module-card:hover .module-icon {
    background: var(--gradient-brand);
    color: var(--oc-white);
}
.module-icon.locale { background: rgba(46, 125, 50, 0.1); color: #2e7d32; }
.module-card:hover .module-icon.locale { background: linear-gradient(135deg, #2e7d32, #66bb6a); color: white; }
.module-id {
    font-size: 0.65rem;
    color: var(--oc-gray-400);
    font-weight: 600;
    letter-spacing: 0.05em;
}

.module-name { font-size: 1.05rem; margin-bottom: 0.5rem; color: var(--oc-gray-800); }
.module-desc { font-size: 0.85rem; color: var(--oc-gray-500); line-height: 1.6; margin-bottom: 1rem; }

.module-endpoint {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: var(--oc-gray-50);
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    font-size: 0.7rem;
    color: var(--oc-blue);
    word-break: break-all;
}
.module-endpoint i { color: var(--oc-gray-400); flex-shrink: 0; }

.module-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.module-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--oc-gray-600);
}
.module-features li i { color: var(--oc-cyan); margin-top: 2px; flex-shrink: 0; font-size: 0.7rem; }
.module-locale .module-features li i { color: #66bb6a; }

.locale-info-section {
    padding: 0 0 4rem;
    background: var(--oc-gray-50);
}
.locale-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.75rem 2rem;
    background: linear-gradient(135deg, #e8f5e9, #f1f8e9);
    border-radius: var(--radius-lg);
    border: 1px solid #c8e6c9;
}
.locale-info-icon {
    width: 44px; height: 44px;
    border-radius: var(--radius-md);
    background: #2e7d32;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.locale-info-content h3 { font-size: 1rem; margin-bottom: 0.35rem; color: #1b5e20; }
.locale-info-content p { font-size: 0.85rem; color: #33691e; line-height: 1.6; }

@media (max-width: 1024px) {
    .modules-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .modules-grid { grid-template-columns: 1fr; }
    .category-header { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
    .locale-info-card { flex-direction: column; }
    .platform-nav-section { position: static; }
}
