/* Telecom Industry Landing Page — Leadnest.ai */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ══════════════════════════════════════
   DESIGN TOKENS - TELECOM THEME
══════════════════════════════════════ */
:root {
    --tl-primary:       #673AB7;
    --tl-primary-dark:  #5e35b1;
    --tl-primary-deep:  #4527a0;
    --tl-accent:        #9C27B0;
    --tl-accent-dark:   #7B1FA2;
    --tl-text:          #1f2937;
    --tl-text-muted:    #64748b;
    --tl-heading:       #0f172a;
    --tl-bg-light:      #f8fafc;
    --tl-white:         #ffffff;
    --tl-border:        #f1f5f9;
}

/* ══════════════════════════════════════
   BASE RESET
   NOTE: overflow-x must NOT be hidden on html/body — it breaks position:sticky.
   Use overflow-x:clip instead (doesn't create a scroll container).
══════════════════════════════════════ */
html { height: auto !important; overflow-x: clip !important; }
body { height: auto !important; overflow-x: clip !important; overflow-y: visible !important; position: relative; margin: 0; padding: 0; }
main { overflow: visible !important; }

/* ══════════════════════════════════════
   STICKY HEADER OVERRIDE
   LeadnestLanding.css sets position:fixed + slideDown animation.
   Kill the animation & transition to stop the shaking.
══════════════════════════════════════ */
.leadNav-Main-Large {
    position: sticky !important;
    top: 0 !important;
    z-index: 9999 !important;
    background: #ffffff !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06) !important;
    width: 100% !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    transition: box-shadow 0.3s ease !important;
    animation: none !important;
}

/* Kill any JS-driven hide/show transforms */
.leadNav-Main-Large.nav-hide,
.leadNav-Main-Large.nav-top,
.leadNav-Main-Large.nav-compact,
.leadNav-Main-Large.nav-show,
.leadNav-Main-Large.nav-slide-in {
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: sticky !important;
    animation: none !important;
}

.leadNav-Main-Large.nav-slide-in,
.leadNav-Main-Large.scrolled {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1) !important;
}

/* Desktop: no body padding needed — sticky is in-flow */
@media (min-width: 992px) {
    body { padding-top: 0 !important; }
    .tl-wrapper { padding-top: 0 !important; }
}

/* Mobile: switch to fixed + add body padding to compensate */
@media (max-width: 991px) {
    .leadNav-Main-Large {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
    }
    body { padding-top: 0px !important; }
    .tl-wrapper { padding-top: 0 !important; }
}

/* ══════════════════════════════════════
   WRAPPER
══════════════════════════════════════ */
.tl-wrapper {
    font-family: 'Poppins', sans-serif;
    color: var(--tl-text);
    padding-top: 0;
    position: relative;
    width: 100%;
    max-width: 100vw;
}

/* ══════════════════════════════════════
   BACKGROUND UTILITIES
══════════════════════════════════════ */
.tl-bg-light  { background: var(--tl-bg-light); }
.tl-bg-white  { background: var(--tl-white); }

/* ══════════════════════════════════════
   HERO SECTION
══════════════════════════════════════ */
.tl-hero {
    height: calc(100vh - 90px);
    min-height: 620px;
    background: var(--tl-white);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Grid background */
.tl-hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right,  rgba(103, 58, 183, 0.12) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(103, 58, 183, 0.12) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at 50% 40%, black 50%, transparent 90%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 40%, black 50%, transparent 90%);
    pointer-events: none;
    z-index: 1;
}

.tl-hero::after {
    content: '';
    position: absolute;
    top: -10%; right: -5%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.04) 0%, transparent 70%);
    z-index: 1;
}

.tl-hero-content {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 0 24px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.tl-hero-text  { flex: 1.15; }
.tl-hero-visual {
    flex: 0.95;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Badge */
.tl-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(37, 211, 102, 0.08);
    color: var(--tl-accent-dark);
    border: 1px solid rgba(37, 211, 102, 0.25);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 28px;
    letter-spacing: 0.3px;
}
.tl-hero-badge i { font-size: 14px; }

/* Hero H1 */
.tl-hero-text h1 {
    font-size: 52px;
    font-weight: 600;
    line-height: 1.12;
    margin-bottom: 24px;
    color: var(--tl-heading);
    letter-spacing: -0.03em;
}
.tl-accent-green { color: var(--tl-accent-dark); }

.tl-hero-text p {
    font-size: 18px;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 36px;
    max-width: 95%;
    font-weight: 400;
}

/* Hero Image */
.tl-hero-image {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 24px 64px rgba(37, 211, 102, 0.12), 0 4px 16px rgba(0,0,0,0.08);
    display: block;
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s ease;
}
.tl-hero-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 80px rgba(37, 211, 102, 0.16), 0 8px 24px rgba(0,0,0,0.1);
}

/* CTA Buttons */
.tl-hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 44px;
    flex-wrap: wrap;
}

.tl-btn {
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    transition: all 0.2s cubic-bezier(0.4,0,0.2,1);
    cursor: pointer;
    border: none;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none !important;
}
.tl-btn-lg { padding: 16px 36px; font-size: 16px; }

.tl-btn-primary {
    background: var(--tl-primary);
    color: white !important;
    box-shadow: 0 4px 14px rgba(103,58,183,0.25);
}
.tl-btn-primary:hover {
    background: var(--tl-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(103,58,183,0.3);
}
.tl-btn-primary i { transition: transform 0.2s ease; }
.tl-btn-primary:hover i { transform: translateX(4px); }

.tl-btn-secondary {
    background: #f3f4f6;
    color: #111827 !important;
    border: 1px solid transparent;
}
.tl-btn-secondary:hover { background: #e5e7eb; transform: translateY(-2px); }

.tl-btn-white {
    background: white;
    color: var(--tl-primary) !important;
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 600;
}
.tl-btn-white:hover {
    background: #f8fafc;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.tl-btn-outline {
    background: rgba(255,255,255,0.05);
    color: white !important;
    border: 2px solid rgba(255,255,255,0.3);
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}
.tl-btn-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: white;
    transform: translateY(-3px) scale(1.02);
}

/* Trust Bar */
.tl-hero-trust {
    display: flex;
    align-items: center;
    gap: 28px;
    padding-top: 28px;
    border-top: 1px solid var(--tl-border);
}
.tl-trust-divider { width: 1px; height: 24px; background: #e2e8f0; flex-shrink: 0; }
.tl-trust-item { display: flex; align-items: center; gap: 8px; font-size: 14px; color: #374151; font-weight: 500; }
.tl-trust-item i { color: var(--tl-accent-dark); font-size: 18px; }

/* ══════════════════════════════════════
   STICKY MOBILE CTA — hidden on desktop, shown on mobile via media query
══════════════════════════════════════ */
.tl-sticky-cta {
    display: none; /* hidden by default — shown only on mobile below */
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    width: calc(100% - 48px);
    max-width: 400px;
}
.tl-sticky-cta-btn {
    width: 100%;
    padding: 16px 24px;
    background: var(--tl-primary);
    color: white;
    border: none;
    border-radius: 16px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(103,58,183,0.35);
    transition: all 0.2s ease;
}
.tl-sticky-cta-btn:hover { background: var(--tl-primary-dark); transform: translateY(-2px); }

/* ══════════════════════════════════════
   PARTNER SLIDER
══════════════════════════════════════ */
.tl-partner-section {
    padding: 70px 0;
    background: linear-gradient(to bottom, #ffffff, #f8fafc);
    border-bottom: 1px solid var(--tl-border);
}
.tl-trusted-heading {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--tl-primary);
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.tl-trusted-heading::before,
.tl-trusted-heading::after {
    content: '';
    height: 1px;
    width: 60px;
    background: rgba(103,58,183,0.2);
}
.tl-partner-img {
    filter: none;
    opacity: 0.85;
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
    max-height: 40px;
    width: auto !important;
    margin: 0 auto;
}
.tl-partner-img:hover { transform: scale(1.08); opacity: 1; }

/* ══════════════════════════════════════
   STATS BAND
══════════════════════════════════════ */
.tl-stats-band {
    background: #0f172a;
    padding: 70px 0;
    color: white;
    position: relative;
    z-index: 10;
}
.tl-stats-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    text-align: center;
    flex-wrap: wrap;
    gap: 32px;
}
.gl-stat-item { flex: 1; min-width: 140px; }
.gl-stat-value {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--tl-accent);
    font-family: 'Poppins', sans-serif;
}
.gl-stat-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    opacity: 0.55;
    text-transform: uppercase;
}

/* ══════════════════════════════════════
   FEATURE SECTIONS
══════════════════════════════════════ */
.tl-feature-section { padding: 100px 0; }

.tl-feature-container {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 0 24px;
}
.tl-feature-reverse { flex-direction: row-reverse; }
.tl-feature-content { flex: 1; }
.tl-feature-image   { flex: 1; }

.tl-feature-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(37, 211, 102, 0.08);
    color: var(--tl-accent-dark);
    border: 1px solid rgba(37, 211, 102, 0.2);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.tl-feature-content h2 {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 20px;
    color: var(--tl-heading);
    letter-spacing: -0.02em;
}
.tl-feature-desc {
    font-size: 17px;
    line-height: 1.7;
    color: var(--tl-text-muted);
    margin-bottom: 32px;
    font-weight: 400;
}

.tl-feature-highlights {
    list-style: none;
    padding: 0; margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.tl-feature-highlights li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    color: var(--tl-heading);
}
.tl-feature-highlights li i { color: var(--tl-accent-dark); font-size: 18px; }

.tl-feature-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(37, 211, 102, 0.08), 0 4px 16px rgba(0,0,0,0.06);
    display: block;
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s ease;
}
.tl-feature-img:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 64px rgba(37, 211, 102, 0.12), 0 8px 24px rgba(0,0,0,0.08);
}

/* ══════════════════════════════════════
   SECTION HEADER
══════════════════════════════════════ */
.tl-section-header { text-align: center; margin-bottom: 60px; }
.tl-section-header-sm { margin-bottom: 40px; }
.tl-section-eyebrow {
    font-size: 13px;
    font-weight: 600;
    color: var(--tl-primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.tl-section-header h2 {
    font-size: 42px;
    font-weight: 600;
    color: var(--tl-heading);
    margin-bottom: 20px;
}
.tl-section-header p { font-size: 17px; color: var(--tl-text-muted); font-weight: 400; }

/* ══════════════════════════════════════
   CAPABILITIES GRID
══════════════════════════════════════ */
.tl-capabilities-section { padding: 100px 0; }
.tl-capabilities-container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.tl-capabilities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.tl-cap-card {
    background: white;
    padding: 32px 24px;
    border-radius: 20px;
    border: 1px solid var(--tl-border);
    transition: all 0.3s ease;
    position: relative;
}
.tl-cap-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.04);
    border-color: rgba(103,58,183,0.2);
}
.tl-cap-icon {
    width: 50px; height: 50px;
    background: rgba(37, 211, 102, 0.07);
    color: var(--tl-accent-dark);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
}
.tl-cap-card h3 { font-size: 17px; font-weight: 600; color: var(--tl-heading); margin-bottom: 16px; }
.tl-cap-list { list-style: none; padding: 0; margin: 0; }
.tl-cap-list li {
    display: flex; align-items: center; gap: 8px;
    font-size: 13.5px; color: var(--tl-text-muted);
    margin-bottom: 10px; font-weight: 400;
}
.tl-cap-list li i { color: var(--tl-primary); font-size: 14px; }

.tl-cap-featured {
    background: #fdfbff;
    border: 1.5px solid rgba(103,58,183,0.3);
}
.tl-cap-badge {
    position: absolute; top: -12px; right: 24px;
    background: var(--tl-primary);
    color: white; padding: 4px 12px;
    border-radius: 100px; font-size: 9px;
    font-weight: 600; letter-spacing: 0.5px;
}
.tl-cap-featured .tl-cap-icon { background: rgba(103,58,183,0.07); color: var(--tl-primary); }
.tl-cap-note {
    margin-top: 16px; padding-top: 16px;
    border-top: 1px solid var(--tl-border);
    font-size: 12px; color: var(--tl-primary); font-weight: 500;
}

/* ══════════════════════════════════════
   USE CASES
══════════════════════════════════════ */
.tl-use-cases-section { padding: 100px 0; }
.tl-use-cases-container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.tl-use-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.tl-use-case-card {
    background: var(--tl-bg-light);
    padding: 36px 28px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}
.tl-use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(103, 58, 183, 0.08);
    border-color: rgba(103, 58, 183, 0.2);
    background: white;
}
.tl-use-case-icon {
    width: 64px; height: 64px;
    background: rgba(103, 58, 183, 0.08);
    color: var(--tl-primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px;
    margin: 0 auto 20px;
    transition: background 0.3s ease;
}
.tl-use-case-card:hover .tl-use-case-icon { background: rgba(37, 211, 102, 0.14); }
.tl-use-case-card h3 { font-size: 19px; font-weight: 600; color: var(--tl-heading); margin-bottom: 10px; }
.tl-use-case-card p  { color: var(--tl-text-muted); font-size: 14px; line-height: 1.6; font-weight: 400; }

/* ══════════════════════════════════════
   FAQ SECTION
══════════════════════════════════════ */
.tl-faq-section { padding: 100px 0; }
.tl-faq-container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.tl-faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.tl-faq-col { display: flex; flex-direction: column; gap: 16px; }
.tl-faq-item {
    background: var(--tl-white);
    border-radius: 16px;
    border: 1px solid var(--tl-border);
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.tl-faq-item:hover { border-color: rgba(37, 211, 102, 0.25); box-shadow: 0 4px 20px rgba(37, 211, 102, 0.06); }
.tl-faq-item.tl-faq-open { border-color: rgba(37, 211, 102, 0.3); box-shadow: 0 8px 30px rgba(37, 211, 102, 0.08); }

.tl-faq-question {
    width: 100%;
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px; padding: 22px 24px;
    background: transparent; border: none; cursor: pointer;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-size: 15px; font-weight: 600; color: var(--tl-heading);
    line-height: 1.4; transition: color 0.2s ease;
}
.tl-faq-question:hover { color: var(--tl-accent-dark); }
.tl-faq-item.tl-faq-open .tl-faq-question { color: var(--tl-accent-dark); }

.tl-faq-icon {
    flex-shrink: 0;
    width: 32px; height: 32px; border-radius: 50%;
    background: rgba(37, 211, 102, 0.08);
    color: var(--tl-accent-dark);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    transition: background 0.25s ease, transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.tl-faq-item.tl-faq-open .tl-faq-icon {
    background: var(--tl-accent-dark);
    color: white;
    transform: rotate(45deg);
}
.tl-faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s ease; padding: 0 24px; }
.tl-faq-item.tl-faq-open .tl-faq-answer { max-height: 300px; padding: 0 24px 22px; }
.tl-faq-answer p {
    font-size: 14.5px; line-height: 1.75; color: var(--tl-text-muted);
    font-weight: 400; border-top: 1px solid var(--tl-border);
    padding-top: 16px; margin: 0;
}

/* ══════════════════════════════════════
   CTA SECTION
══════════════════════════════════════ */
.tl-cta-section { padding: 100px 24px; position: relative; }
.tl-cta-container {
    max-width: 1200px; margin: 0 auto;
    background: linear-gradient(135deg, #673AB7 0%, #4527a0 50%, #311b92 100%);
    border-radius: 40px; padding: 80px 40px; text-align: center; color: white;
    position: relative; overflow: hidden;
    box-shadow: 0 30px 60px rgba(103,58,183,0.3);
}
.tl-cta-container::before {
    content: ''; position: absolute; top: -50%; left: -10%;
    width: 50%; height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 60%);
    transform: rotate(30deg); pointer-events: none;
}
.tl-cta-container::after {
    content: ''; position: absolute; bottom: -50%; right: -10%;
    width: 50%; height: 200%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 60%);
    transform: rotate(-30deg); pointer-events: none;
}
.tl-cta-shape { position: absolute; background: rgba(255,255,255,0.04); border-radius: 50%; pointer-events: none; }
.tl-cta-shape-1 { width: 300px; height: 300px; top: -150px; right: -50px; }
.tl-cta-shape-2 { width: 200px; height: 200px; bottom: -100px; left: -50px; }

.tl-cta-content { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.tl-cta-content h2 { font-size: 46px; font-weight: 600; margin-bottom: 20px; line-height: 1.2; letter-spacing: -0.02em; }
.tl-cta-content p { font-size: 19px; opacity: 0.9; margin-bottom: 44px; line-height: 1.6; font-weight: 400; }
.tl-cta-buttons { display: flex; gap: 20px; justify-content: center; margin-bottom: 36px; flex-wrap: wrap; }
.tl-cta-note {
    display: inline-flex; align-items: center; gap: 10px; font-size: 14px;
    padding: 12px 24px; background: rgba(0,0,0,0.2); border-radius: 100px;
    backdrop-filter: blur(5px); font-weight: 500;
}
.tl-cta-note i { color: #25d366; }

/* ══════════════════════════════════════
   SCROLL ANIMATIONS
══════════════════════════════════════ */
.tl-reveal       { opacity: 0; transform: translateY(30px);  transition: all 0.8s cubic-bezier(0.2,0.8,0.2,1); }
.tl-reveal-left  { opacity: 0; transform: translateX(-50px); transition: all 0.8s cubic-bezier(0.2,0.8,0.2,1); }
.tl-reveal-right { opacity: 0; transform: translateX(50px);  transition: all 0.8s cubic-bezier(0.2,0.8,0.2,1); }

.tl-animate-in .tl-reveal,
.tl-animate-in.tl-reveal,
.tl-animate-in .tl-reveal-left,
.tl-animate-in.tl-reveal-left,
.tl-animate-in .tl-reveal-right,
.tl-animate-in.tl-reveal-right {
    opacity: 1 !important;
    transform: translate(0,0) scale(1) !important;
}

.tl-delay-1 { transition-delay: 0.1s; }
.tl-delay-2 { transition-delay: 0.2s; }
.tl-delay-3 { transition-delay: 0.3s; }
.tl-delay-4 { transition-delay: 0.4s; }

/* Hero float animation */
.tl-hero-visual { animation: tlHeroFloat 6s infinite ease-in-out; }
@keyframes tlHeroFloat {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-15px); }
}
.tl-parallax-layer { transition: transform 0.1s ease-out; will-change: transform; }

@media (prefers-reduced-motion: reduce) {
    .tl-reveal, .tl-reveal-left, .tl-reveal-right, .tl-hero-visual {
        animation: none !important; transition: none !important;
        opacity: 1 !important; transform: none !important;
    }
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1100px) {
    .tl-capabilities-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 991px) {
    .tl-hero { height: auto !important; min-height: auto !important; padding: 60px 0 80px !important; }
    .tl-hero-content { flex-direction: column; text-align: center; gap: 40px; }
    .tl-hero-text h1 { font-size: 40px; }
    .tl-hero-text p  { margin-left: auto; margin-right: auto; }
    .tl-hero-cta     { justify-content: center; }
    .tl-hero-trust   { justify-content: center; flex-wrap: wrap; gap: 12px; }
    .tl-trust-divider { display: none; }
    .tl-hero-visual  { width: 100%; max-width: 580px; margin: 0 auto; }

    .tl-feature-container { flex-direction: column !important; gap: 40px; }
    .tl-feature-reverse   { flex-direction: column !important; }
    .tl-feature-highlights { grid-template-columns: 1fr; }

    .tl-use-cases-grid { grid-template-columns: repeat(2, 1fr); }

    .tl-faq-grid { grid-template-columns: 1fr; }

    .tl-cta-content h2 { font-size: 34px; }
    .tl-cta-buttons { flex-direction: column; align-items: center; }

    .tl-stats-container { justify-content: center; }
}

/* Sticky CTA: only visible on mobile, and only after hero scrolls out (JS adds tl-sticky-visible) */
@media (max-width: 768px) {
    .tl-sticky-cta.tl-sticky-visible {
        display: block;
    }
}
/* Explicitly ensure it never shows on desktop */
@media (min-width: 769px) {
    .tl-sticky-cta,
    .tl-sticky-cta.tl-sticky-visible {
        display: none !important;
    }
}

@media (max-width: 576px) {
    .tl-hero-text h1 { font-size: 32px; }
    .tl-use-cases-grid { grid-template-columns: 1fr; }
    .tl-capabilities-grid { grid-template-columns: 1fr; }
    .tl-section-header h2 { font-size: 28px; }
    .tl-feature-content h2 { font-size: 28px; }
    .tl-cta-content h2 { font-size: 28px; }
    .tl-cta-content p  { font-size: 16px; }
}
/* end of telecom-landing.css */
