/* Executive High-Contrast Business Theme for worms.taxi */
:root {
    --bg-dark: #0a0e14;
    --bg-surface: #121824;
    --bg-card: #1a2232;
    --bg-card-alt: #161e2c;

    --brand-yellow: #ffc000;
    --brand-yellow-hover: #e5ac00;
    --brand-yellow-subtle: rgba(255, 192, 0, 0.12);

    --text-white: #ffffff;
    --text-muted: #94a3b8;
    --text-dark: #0a0e14;

    --border: #2a364f;
    --border-yellow: #ffc000;

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    padding-bottom: 70px;
}

@media (min-width: 769px) {
    body {
        padding-bottom: 0;
    }
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 20px;
    background: var(--brand-yellow);
    color: var(--text-dark);
    padding: 10px 18px;
    font-weight: 700;
    z-index: 10000;
}

.skip-link:focus {
    top: 20px;
}

/* Legal Transparency Top Bar */
.top-legal-bar {
    position: relative;
    z-index: 10;
    background: #04060a;
    border-bottom: 1px solid var(--border);
    padding: 8px 0;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.legal-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.legal-notice {
    display: flex;
    align-items: center;
    gap: 6px;
}

.shield-icon {
    font-size: 0.9rem;
}

.legal-notice strong {
    color: var(--brand-yellow);
}

.live-counter {
    display: flex;
    gap: 10px;
}

.counter-badge {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 0.78rem;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.counter-badge strong {
    color: var(--text-white);
}

.gold-badge {
    border-color: var(--border-yellow);
}

.gold-badge strong {
    color: var(--brand-yellow);
}

.pulse-anim {
    animation: pulseGlow 0.6s ease-in-out;
    border-color: var(--brand-yellow);
}

@keyframes pulseGlow {
    0% { transform: scale(1); box-shadow: 0 0 0 rgba(255, 192, 0, 0); }
    50% { transform: scale(1.1); box-shadow: 0 0 12px rgba(255, 192, 0, 0.6); }
    100% { transform: scale(1); box-shadow: 0 0 0 rgba(255, 192, 0, 0); }
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 14, 20, 0.96);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
}

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

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-badge {
    background: var(--brand-yellow);
    color: var(--text-dark);
    font-weight: 900;
    font-size: 0.85rem;
    padding: 6px 10px;
    border-radius: 4px;
    letter-spacing: 0.05em;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.02em;
}

.brand-yellow {
    color: var(--brand-yellow);
}

.brand-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.nav-menu {
    display: none;
    gap: 24px;
}

@media (min-width: 850px) {
    .nav-menu {
        display: flex;
    }
}

.nav-menu a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.92rem;
    transition: color 0.2s;
}

.nav-menu a:hover {
    color: var(--brand-yellow);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.btn-header-call {
    background: var(--brand-yellow);
    color: var(--text-dark);
    font-size: 0.95rem;
}

.btn-header-call:hover {
    background: var(--brand-yellow-hover);
}

.btn-hero-primary {
    background: var(--brand-yellow);
    color: var(--text-dark);
    font-size: 1.1rem;
    padding: 16px 32px;
    border-radius: 8px;
}

.btn-hero-primary:hover {
    background: var(--brand-yellow-hover);
    transform: translateY(-2px);
}

.btn-partner-direct {
    width: 100%;
    background: var(--brand-yellow);
    color: var(--text-dark);
    font-size: 1.05rem;
    padding: 14px;
}

.btn-partner-direct:hover {
    background: var(--brand-yellow-hover);
}

.btn-table-call {
    background: var(--bg-card);
    border: 1px solid var(--border-yellow);
    color: var(--brand-yellow);
    padding: 8px 16px;
    font-size: 0.88rem;
}

.btn-table-call:hover {
    background: var(--brand-yellow);
    color: var(--text-dark);
}

.btn-banner-call {
    background: var(--brand-yellow);
    color: var(--text-dark);
    font-size: 1.1rem;
    padding: 16px 36px;
}

.btn-banner-call:hover {
    background: var(--brand-yellow-hover);
}

/* Hero Section & Ambient / Dynamic Mouse Canvas Smoke */
.hero-section {
    position: relative;
    padding: 60px 0 40px;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

#smoke-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.smoke-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.smoke-cloud {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.25;
}

.smoke-cloud-1 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(255, 192, 0, 0.25) 0%, rgba(26, 34, 50, 0.4) 60%, transparent 100%);
    top: -100px;
    left: -100px;
    animation: smokeDrift1 18s infinite alternate ease-in-out;
}

.smoke-cloud-2 {
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(148, 163, 184, 0.15) 0%, rgba(18, 24, 36, 0.3) 70%, transparent 100%);
    bottom: -150px;
    right: -150px;
    animation: smokeDrift2 22s infinite alternate ease-in-out;
}

.smoke-cloud-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 192, 0, 0.18) 0%, transparent 80%);
    top: 30%;
    left: 45%;
    animation: smokeDrift1 25s infinite alternate-reverse ease-in-out;
}

@keyframes smokeDrift1 {
    0% { transform: translate(0, 0) scale(1); opacity: 0.2; }
    50% { transform: translate(60px, 40px) scale(1.15); opacity: 0.35; }
    100% { transform: translate(-30px, 80px) scale(1); opacity: 0.2; }
}

@keyframes smokeDrift2 {
    0% { transform: translate(0, 0) scale(1); opacity: 0.15; }
    50% { transform: translate(-80px, -50px) scale(1.2); opacity: 0.3; }
    100% { transform: translate(40px, -90px) scale(1.05); opacity: 0.15; }
}

.hero-grid {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 900px) {
    .hero-grid {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

.tag-pill {
    display: inline-block;
    background: var(--brand-yellow-subtle);
    border: 1px solid var(--border-yellow);
    color: var(--brand-yellow);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    margin-bottom: 18px;
}

.hero-title {
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1.18;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.1rem;
    }
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    max-width: 600px;
}

.hero-bullets {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.bullet-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.bullet-item strong {
    color: #fff;
}

.check-icon {
    color: var(--brand-yellow);
    font-weight: 900;
}

.hero-cta-area {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.hero-cta-note {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Verified Partner Box & Handshake Hover Effect */
.partner-box {
    background: var(--bg-card);
    border: 2px solid var(--brand-yellow);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.partner-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 35px rgba(255, 192, 0, 0.25);
    border-color: #ffd000;
}

.partner-top {
    background: #0f1520;
    padding: 24px;
    border-bottom: 1px solid var(--border);
}

.partner-badge-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
}

.partner-ad-badge {
    display: inline-block;
    background: var(--brand-yellow);
    color: var(--text-dark);
    font-size: 0.7rem;
    font-weight: 900;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.05em;
}

/* Interactive Handshake Element */
.handshake-interactive {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 192, 0, 0.12);
    border: 1px solid var(--border-yellow);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--brand-yellow);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.handshake-interactive:hover {
    background: var(--brand-yellow);
    color: var(--text-dark);
    transform: scale(1.08);
    box-shadow: 0 0 15px rgba(255, 192, 0, 0.6);
}

.handshake-icon {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.handshake-interactive:hover .handshake-icon {
    transform: rotate(-10deg) scale(1.2);
}

.partner-heading {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 4px;
}

.partner-desc {
    color: var(--text-muted);
    font-size: 0.88rem;
}

.partner-details {
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-row {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 0.9rem;
    border-bottom: 1px dashed var(--border);
    padding-bottom: 8px;
}

.detail-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.detail-label {
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.detail-val {
    font-weight: 700;
    color: #fff;
}

.partner-action {
    padding: 16px 24px 24px;
}

/* Advertising Inquiry Banner Section */
.ad-inquiry-section {
    position: relative;
    z-index: 10;
    padding: 40px 0;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border);
}

.ad-inquiry-box {
    background: linear-gradient(135deg, #1a2333 0%, #0f1622 100%);
    border: 1px solid var(--border-yellow);
    border-radius: 8px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: space-between;
    align-items: flex-start;
}

@media (min-width: 850px) {
    .ad-inquiry-box {
        flex-direction: row;
        align-items: center;
    }
}

.ad-inquiry-tag {
    color: var(--brand-yellow);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    display: block;
    margin-bottom: 8px;
}

.ad-inquiry-content h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.ad-inquiry-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 650px;
}

.ad-inquiry-action {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    flex-shrink: 0;
}

.btn-ad-email {
    background: var(--brand-yellow);
    color: var(--text-dark);
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 800;
}

.btn-ad-email:hover {
    background: var(--brand-yellow-hover);
    transform: translateY(-2px);
}

.ad-action-note {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Legal Statement Section */
.legal-statement-section {
    position: relative;
    z-index: 10;
    padding: 50px 0;
    background: #06090e;
    border-bottom: 1px solid var(--border);
}

.statement-card {
    background: var(--bg-card-alt);
    border: 1px solid var(--border);
    border-left: 5px solid var(--brand-yellow);
    border-radius: 8px;
    padding: 30px;
}

.statement-badge {
    color: var(--brand-yellow);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    display: block;
    margin-bottom: 6px;
}

.statement-card h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.statement-body p {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 12px;
    line-height: 1.6;
}

.statement-body p:last-child {
    margin-bottom: 0;
}

/* General Sections */
.section {
    position: relative;
    z-index: 10;
    padding: 60px 0;
}

.alt-section {
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.section-heading-block {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

.section-subtitle {
    color: var(--brand-yellow);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 6px;
}

.section-heading-block h2 {
    font-size: 2.2rem;
    font-weight: 900;
}

/* Services Grid */
.services-block-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

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

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 24px;
}

.service-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.service-num {
    background: var(--brand-yellow);
    color: var(--text-dark);
    font-weight: 900;
    font-size: 0.85rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    flex-shrink: 0;
}

.service-head h3 {
    font-size: 1.2rem;
    font-weight: 800;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
}

/* Price Table */
.price-table {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.price-row {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    justify-content: space-between;
}

@media (min-width: 650px) {
    .price-row {
        flex-direction: row;
        align-items: center;
    }
}

.price-info strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 2px;
}

.price-info span {
    color: var(--text-muted);
    font-size: 0.88rem;
}

.price-action {
    display: flex;
    align-items: center;
    gap: 14px;
}

.price-tag {
    font-size: 0.85rem;
    color: var(--brand-yellow);
    font-weight: 700;
}

/* Call Banner */
.call-banner {
    position: relative;
    z-index: 10;
    background: linear-gradient(135deg, #161e2c 0%, #0a0e14 100%);
    border-top: 1px solid var(--border);
    padding: 60px 0;
}

.call-banner-inner {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.call-banner-inner h2 {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.call-banner-inner p {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 1.05rem;
}

/* Footer */
.footer {
    position: relative;
    z-index: 10;
    background: #04060a;
    border-top: 1px solid var(--border);
    padding: 40px 0;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (min-width: 768px) {
    .footer-grid {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-logo {
    font-size: 1.4rem;
    font-weight: 900;
    color: #fff;
    display: block;
    margin-bottom: 6px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--text-white);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--brand-yellow);
}

/* Mobile Sticky Bar */
.mobile-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 14, 20, 0.98);
    border-top: 1px solid var(--border);
    padding: 10px 16px;
    z-index: 9999;
}

@media (min-width: 769px) {
    .mobile-sticky {
        display: none;
    }
}

.btn-mobile-call {
    width: 100%;
    background: var(--brand-yellow);
    color: var(--text-dark);
    font-size: 1.05rem;
    font-weight: 800;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 80px;
    right: 20px;
    max-width: 400px;
    background: var(--bg-card);
    border: 1px solid var(--border-yellow);
    border-radius: 8px;
    padding: 20px;
    z-index: 10000;
    display: none;
}

@media (min-width: 769px) {
    .cookie-banner {
        bottom: 20px;
    }
}

.cookie-banner.active {
    display: block;
}

.cookie-box p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.btn-cookie {
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    border: none;
}

.btn-accept {
    background: var(--brand-yellow);
    color: var(--text-dark);
}

.btn-reject {
    background: transparent;
    border: 1px solid var(--border);
    color: #fff;
}
