/* ==========================================================================
   Conveneo - Colourful Landing Page Style
   Inspired by the dancer/ribbon logo and landing page mockup
   ========================================================================== */

/* --- Variables & Core Theme --- */
:root {
    --bg-base: #ffffff;
    --bg-soft: #f7f8fa;
    --bg-panel: rgba(255, 255, 255, 0.85);
    --bg-panel-inner: rgba(247, 248, 250, 0.9);

    /* Conveneo rainbow palette from the logo */
    --brand-blue: #003b71;       /* Deep navy (text & primary) */
    --brand-cyan: #0093d0;       /* Bright blue */
    --brand-red: #e82c2c;        /* Vivid red */
    --brand-orange: #f5841f;     /* Orange ribbon */
    --brand-yellow: #fabb05;     /* Yellow ribbon */
    --brand-green: #67c244;      /* Green ribbon */
    --brand-magenta: #d1209b;    /* Magenta/pink ribbon */

    --text-main: #003b71;        /* Deep navy */
    --text-body: #334155;        /* Softer body text */
    --text-muted: #64748b;
    --text-accent: var(--brand-cyan);

    --border-light: rgba(0, 59, 113, 0.08);
    --border-card: rgba(0, 59, 113, 0.06);

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-mono: 'JetBrains Mono', monospace;

    --transition-standard: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-card: 0 4px 24px rgba(0, 59, 113, 0.06);
    --shadow-card-hover: 0 8px 40px rgba(0, 59, 113, 0.10);

    /* Rainbow gradient used for accents */
    --gradient-rainbow: linear-gradient(
        180deg,
        var(--brand-red) 0%,
        var(--brand-orange) 20%,
        var(--brand-yellow) 40%,
        var(--brand-green) 60%,
        var(--brand-cyan) 80%,
        var(--brand-magenta) 100%
    );
    --gradient-rainbow-h: linear-gradient(
        90deg,
        var(--brand-red) 0%,
        var(--brand-orange) 20%,
        var(--brand-yellow) 40%,
        var(--brand-green) 60%,
        var(--brand-cyan) 80%,
        var(--brand-magenta) 100%
    );
    --gradient-text: linear-gradient(135deg, var(--brand-cyan) 0%, var(--brand-green) 100%);
}

/* --- Resets & Globals --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    background-color: var(--bg-base);
    color: var(--text-body);
    font-family: var(--font-sans);
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
}
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 5%;
}

/* --- Typography --- */
h1, h2, h3, h4, .section-title, .hero-title {
    font-family: var(--font-serif);
    font-weight: 700;
    color: var(--text-main);
}
.tech-mono {
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.8rem;
}
.text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.text-green { color: var(--brand-green); }
.text-accent { color: var(--brand-cyan); }
.text-muted { color: var(--text-muted); }

/* --- Rainbow Accent Bar (left side like the mockup) --- */
body::before {
    content: '';
    position: fixed;
    left: 0;
    top: 0;
    width: 6px;
    height: 100vh;
    background: var(--gradient-rainbow);
    z-index: 1000;
}

/* --- Ambient Background (softer, lighter) --- */
.ambient-bg {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
    background: var(--bg-base);
}
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.18;
    animation: floatOrb 30s infinite ease-in-out alternate;
}
.orb-1 {
    top: -15%; left: -10%;
    width: 50vw; height: 50vw;
    background: radial-gradient(circle, var(--brand-orange), transparent 70%);
}
.orb-2 {
    bottom: -20%; right: -10%;
    width: 60vw; height: 60vw;
    background: radial-gradient(circle, var(--brand-cyan), transparent 70%);
    animation-delay: -8s;
}
.orb-3 {
    top: 40%; left: 50%;
    width: 40vw; height: 40vw;
    background: radial-gradient(circle, var(--brand-yellow), transparent 70%);
    animation-duration: 35s;
}
.orb-4 {
    top: 10%; right: 15%;
    width: 35vw; height: 35vw;
    background: radial-gradient(circle, var(--brand-green), transparent 70%);
    animation-duration: 25s;
    animation-delay: -12s;
}
.orb-5 {
    bottom: 5%; left: 25%;
    width: 40vw; height: 40vw;
    background: radial-gradient(circle, var(--brand-magenta), transparent 70%);
    animation-duration: 28s;
    animation-delay: -15s;
}
@keyframes floatOrb {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(3%, 5%) scale(1.05); }
}

/* --- Cards & Panels --- */
.glass-panel {
    background: var(--bg-panel);
    border: 1px solid var(--border-card);
    border-radius: 24px;
    box-shadow: var(--shadow-card);
}
.glass-panel-inner {
    background: var(--bg-base);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 1.5rem;
    transition: var(--transition-standard);
}
.glass-panel-inner:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-2px);
    border-color: rgba(0, 147, 208, 0.15);
}

/* --- Header & Navigation --- */
.glass-panel-header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-light);
}
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.logo-media {
    width: 80px;
    height: 50px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: -0.25rem;
}
.logo-video, .logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.logo-video { z-index: 2; background: transparent; }
.logo-text {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.02em;
}
.system-status {
    margin-left: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    background: rgba(103, 194, 68, 0.08);
    color: var(--brand-green);
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
    border: 1px solid rgba(103, 194, 68, 0.15);
}
.pulse-dot {
    width: 6px; height: 6px;
    background-color: var(--brand-green);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--brand-green);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.4); }
    100% { opacity: 1; transform: scale(1); }
}

nav { display: flex; align-items: center; gap: 2rem; }
.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}
.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-standard);
}
.nav-links a:hover { color: var(--brand-cyan); }
.hover-underline { position: relative; }
.hover-underline::after {
    content: '';
    position: absolute;
    width: 0; height: 2px;
    bottom: -4px; left: 0;
    background: var(--gradient-rainbow-h);
    transition: var(--transition-standard);
}
.hover-underline:hover::after { width: 100%; }

.lang-toggle span {
    cursor: pointer;
    color: var(--text-muted);
    transition: color 0.3s ease;
}
.lang-toggle span.active, .lang-toggle span:hover {
    color: var(--text-main);
}

/* --- Buttons --- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.25rem;
    background: var(--brand-blue);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-standard);
    position: relative;
    overflow: hidden;
}
.btn-primary::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--gradient-rainbow-h);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 59, 113, 0.2);
}
.btn-primary-outline {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--brand-blue);
    border-radius: 50px;
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-standard);
    background: transparent;
}
.btn-primary-outline:hover {
    background: var(--brand-blue);
    color: #ffffff;
}
.w-full { width: 100%; justify-content: center; }

/* --- Section Formatting --- */
section {
    padding: 7rem 0;
    position: relative;
}
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}
.section-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1rem;
    color: var(--text-main);
}
/* Rainbow underline for section titles */
.section-header .section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gradient-rainbow-h);
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* --- Hero Section --- */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
}
.hero-full-video {
    min-height: 100vh;
    padding-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.video-background-container {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
}
.hero-video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.video-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.45);
}
.hero-video-overlay-content {
    position: relative;
    z-index: 10;
    width: 100%;
    display: flex;
    justify-content: center;
}
.floating-cta-panel {
    max-width: 820px;
    text-align: center;
    padding: 4rem;
    box-shadow: 0 20px 60px rgba(0, 59, 113, 0.08);
    margin-top: 80px;
    border: 1px solid rgba(255,255,255,0.8);
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}
/* Rainbow bottom accent on hero panel */
.floating-cta-panel::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 4px;
    background: var(--gradient-rainbow-h);
}
.floating-cta-panel .hero-actions {
    justify-content: center;
}

.badge-tech {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(0, 147, 208, 0.06);
    border: 1px solid rgba(0, 147, 208, 0.15);
    border-radius: 20px;
    color: var(--brand-cyan);
    margin-bottom: 1.5rem;
    font-size: 0.75rem;
}
.hero-title {
    font-size: 3.8rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: var(--text-main);
}
.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-body);
    margin-bottom: 2.5rem;
    max-width: 90%;
    line-height: 1.8;
}
.hero-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* --- AI Advantage Section --- */
.ai-section {
    margin: 0 5%;
    padding: 6rem 5%;
    background: var(--bg-soft);
    border-radius: 32px;
    position: relative;
    overflow: hidden;
}
/* Subtle rainbow top border */
.ai-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: var(--gradient-rainbow-h);
}
.ai-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 5rem;
}
.feature-icon { font-size: 2rem; margin-bottom: 1rem; }
.feature-card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.feature-card p { color: var(--text-muted); font-size: 0.95rem; }
.feature-card h4 { color: var(--text-main); }

/* Flowchart */
.flowchart-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-base);
    padding: 2.5rem;
    border-radius: 100px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    position: relative;
}
.flow-node {
    padding: 0.9rem 1.5rem;
    background: var(--bg-base);
    border: 2px solid var(--border-light);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
    position: relative;
    color: var(--text-main);
}
.flow-node.system { border-color: var(--brand-cyan); color: var(--brand-cyan); }
.flow-node.ai { border-color: var(--brand-orange); color: var(--brand-orange); }
.flow-node.fsm { border-color: var(--brand-yellow); color: var(--brand-yellow); }
.flow-node.green-path {
    background: rgba(103, 194, 68, 0.06);
    border-color: var(--brand-green);
    color: var(--brand-green);
}
.flow-node.human-path {
    background: rgba(232, 44, 44, 0.06);
    border-color: var(--brand-red);
    color: var(--brand-red);
}
.flow-line {
    flex-grow: 1;
    height: 2px;
    background: var(--border-light);
    position: relative;
    z-index: 1;
}
.flow-line::after {
    content: '';
    position: absolute;
    left: 0; top: 0;
    height: 100%; width: 0%;
    background: var(--brand-cyan);
    animation: flowData 3s infinite linear;
}
@keyframes flowData {
    0% { width: 0%; opacity: 1; }
    50% { width: 100%; opacity: 0; left: 0; }
    100% { width: 0%; opacity: 0; left: 100%; }
}

/* --- Human Staffing Section --- */
.human-section {
    background: var(--bg-base);
}
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.lead-text {
    font-size: 1.15rem;
    line-height: 1.8;
    margin: 1.5rem 0;
    color: var(--text-body);
}
.escalation-triggers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}
.trigger-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.trigger-icon {
    background: linear-gradient(135deg, var(--brand-cyan), var(--brand-green));
    color: #fff;
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 700;
    white-space: nowrap;
}
.trigger-item h4 { font-size: 1rem; margin-bottom: 0.25rem; }
.trigger-item p { font-size: 0.85rem; color: var(--text-muted); }

/* --- Trust Section --- */
.trust-section {
    margin: 0 5%;
    padding: 6rem;
    background: var(--bg-soft);
}
.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}
.heritage-text {
    font-size: 1.1rem;
    color: var(--text-body);
    margin-bottom: 2rem;
    line-height: 1.8;
}
.audit-box {
    background: var(--brand-blue);
    border: none;
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}
.audit-box::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--gradient-rainbow-h);
}
.audit-header { color: rgba(255,255,255,0.7); margin-bottom: 0.5rem; }
.audit-text { color: #ffffff; font-size: 0.85rem; }

.badges-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.compliance-badge {
    text-align: center;
    padding: 2rem;
    border-radius: 16px;
    position: relative;
}
/* Colourful top accent per badge */
.compliance-badge:nth-child(1) { border-top: 3px solid var(--brand-cyan); }
.compliance-badge:nth-child(2) { border-top: 3px solid var(--brand-green); }
.compliance-badge:nth-child(3) { border-top: 3px solid var(--brand-orange); }
.compliance-badge:nth-child(4) { border-top: 3px solid var(--brand-magenta); }
.badge-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.compliance-badge h4 { color: var(--text-main); }
.compliance-badge p { color: var(--text-muted); font-size: 0.9rem; }

/* --- About / Team Section --- */
.about-section {
    background: var(--bg-base);
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}
.team-card {
    text-align: center;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}
/* Rainbow bottom line on team cards */
.team-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--gradient-rainbow-h);
}
.team-photo {
    width: 140px; height: 140px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    margin-bottom: 1.5rem;
    border: 3px solid var(--brand-cyan);
    box-shadow: 0 4px 16px rgba(0,59,113,0.08);
}
.team-card:nth-child(2) .team-photo { border-color: var(--brand-green); }
.team-card:nth-child(3) .team-photo { border-color: var(--brand-orange); }
/* Legacy hex support */
.team-hex-frame {
    width: 140px; height: 162px;
    position: relative;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: var(--gradient-rainbow);
    padding: 3px;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hex-placeholder {
    width: 100%; height: 100%;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: var(--bg-soft);
}
.team-name { font-size: 1.2rem; margin-bottom: 0.5rem; }
.team-role { font-size: 0.8rem; letter-spacing: 0.05em; }

/* --- Footer & Contact --- */
.footer {
    padding: 6rem 0 2rem;
    border-top: 4px solid transparent;
    border-image: var(--gradient-rainbow-h) 1;
    margin-top: 4rem;
    background: var(--bg-soft);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}
.footer-brand .logo-text { color: var(--text-main); }
.footer-desc {
    color: var(--text-muted);
    margin: 1.5rem 0;
}
.contact-methods p { margin-bottom: 0.5rem; }
.footer-links h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-main);
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-standard);
}
.footer-links a:hover { color: var(--brand-cyan); }

.footer-video-frame {
    padding: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    overflow: hidden;
}
.footer-promo-video {
    width: 100%;
    max-height: 280px;
    object-fit: cover;
    border-radius: 12px;
}
@media (min-width: 1025px) {
    .footer-form {
        grid-column: 4 / 5;
        grid-row: 1 / 3;
        align-self: start;
    }
    .footer-video-frame {
        grid-column: 1 / 4;
        grid-row: 2 / 3;
    }
}

/* Dynamic Contact Form */
.footer-form {
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}
.footer-form::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--gradient-rainbow-h);
}
.footer-form h4 { margin-bottom: 0.5rem; color: var(--text-main); }
.input-group {
    position: relative;
    margin-bottom: 1.25rem;
}
.input-group input, .input-group textarea {
    width: 100%;
    background: var(--bg-base);
    border: 1.5px solid var(--border-light);
    border-radius: 10px;
    padding: 0.9rem 1rem;
    color: var(--text-main);
    font-family: var(--font-sans);
    outline: none;
    transition: var(--transition-standard);
    font-size: 0.95rem;
}
.input-group textarea {
    resize: vertical;
    min-height: 80px;
}
.input-group label {
    position: absolute;
    left: 1rem; top: 0.9rem;
    color: var(--text-muted);
    pointer-events: none;
    transition: var(--transition-standard);
    background: transparent;
    padding: 0 0.25rem;
    font-size: 0.9rem;
}
.input-group input:focus, .input-group textarea:focus {
    border-color: var(--brand-cyan);
    box-shadow: 0 0 0 3px rgba(0, 147, 208, 0.08);
}
.input-group input:focus ~ label,
.input-group input:not(:placeholder-shown) ~ label,
.input-group textarea:focus ~ label,
.input-group textarea:not(:placeholder-shown) ~ label {
    top: -0.5rem;
    left: 0.8rem;
    font-size: 0.72rem;
    color: var(--brand-cyan);
    background: var(--bg-base);
}
.success-msg { display: none; text-align: center; margin-top: 1rem; }
form.submitted .input-group, form.submitted button { display: none; }
form.submitted .success-msg { display: block; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
    color: var(--text-muted);
    font-size: 0.8rem;
}
.lang-toggle-bottom span {
    cursor: pointer;
    transition: color 0.3s ease;
}
.lang-toggle-bottom span.active, .lang-toggle-bottom span:hover {
    color: var(--text-main);
}

/* Concept image */
.concept-image {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    display: block;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-light);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .team-grid { grid-template-columns: 1fr; gap: 2rem; }
    .hero-grid, .split-layout, .trust-grid { grid-template-columns: 1fr; gap: 3rem; }
    .hero-title { font-size: 3rem; }
    .ai-features-grid { grid-template-columns: 1fr; }
    .flowchart-container {
        flex-direction: column;
        gap: 0.75rem;
        border-radius: 24px;
        padding: 2rem;
    }
    .flow-line { width: 2px; height: 24px; }
    .flow-line::after { animation: flowDataVert 3s infinite linear; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .section-title { font-size: 2.4rem; }
    .ai-section { margin: 0 3%; padding: 4rem 4%; }
    .trust-section { margin: 0 3%; padding: 4rem; }
}
@keyframes flowDataVert {
    0% { height: 0%; opacity: 1; }
    50% { height: 100%; opacity: 0; top: 0; }
    100% { height: 0%; opacity: 0; top: 100%; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-title { font-size: 2.2rem; }
    .floating-cta-panel { padding: 2.5rem 1.5rem; }
    .escalation-triggers { grid-template-columns: 1fr; }
    .badges-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .section-title { font-size: 2rem; }
    body::before { width: 4px; }
    .hero-actions { flex-direction: column; gap: 1rem; }
}
