:root {
    --blue: #064f8b;
    --cyan: #0db8ca;
    --navy: #07192f;
    --text: #334155;
    --muted: #64748b;
    --light: #f6fbff;
    --white: #fff;
    --border: #dbeafe;
    --gold: #f5bd45;
    --radius: 24px;
    --shadow: 0 24px 70px rgba(7, 25, 47, .14)
}

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

body {
    font-family: Inter, Arial, sans-serif;
    background: var(--light);
    color: var(--text);
    line-height: 1.6
}

a {
    text-decoration: none;
    color: inherit
}

.container {
    width: min(1180px, 92%);
    margin: auto
}

.topbar {
    background: var(--navy);
    color: #cdeffd;
    text-align: center;
    padding: 10px;
    font-size: 14px
}

header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border)
}

.nav {
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px
}

.logo img {
    height: 58px;
    width: auto;
    display: block
}

nav ul {
    display: flex;
    list-style: none;
    gap: 24px;
    color: var(--muted);
    font-weight: 700;
    font-size: 15px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 21px;
    border-radius: 999px;
    font-weight: 800;
    border: 1px solid transparent;
    white-space: nowrap
}

.btn-primary {
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    color: white;
    box-shadow: 0 14px 34px rgba(13, 184, 202, .25)
}

.btn-outline {
    background: white;
    border-color: var(--border);
    color: var(--blue)
}

.hero {
    overflow: hidden;
    padding: 82px 0 58px;
    background: radial-gradient(circle at 10% 5%, rgba(13, 184, 202, .18), transparent 28%), radial-gradient(circle at 90% 10%, rgba(245, 189, 69, .16), transparent 30%), linear-gradient(180deg, #fff 0%, #eefaff 100%)
}

.hero-grid {
    display: grid;
    grid-template-columns:1fr .95fr;
    gap: 54px;
    align-items: center
}

.badge {
    display: inline-flex;
    background: #e9fbff;
    border: 1px solid #b9eff6;
    color: var(--blue);
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 14px;
    margin-bottom: 18px
}

h1 {
    font-size: clamp(42px, 5vw, 66px);
    line-height: 1.04;
    letter-spacing: -2px;
    color: var(--navy);
    margin-bottom: 20px
}

.hero p {
    font-size: 20px;
    color: var(--muted);
    margin-bottom: 28px;
    max-width: 660px
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 26px
}

.proof {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    color: #466579;
    font-weight: 800;
    font-size: 14px
}

.proof span:before {
    content: "";
    display: inline-block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--cyan);
    margin-right: 8px
}

.visual-stack {
    position: relative
}

.main-visual {
    background: white;
    border: 1px solid var(--border);
    border-radius: 34px;
    padding: 16px;
    box-shadow: var(--shadow);
    transform: rotate(1deg)
}

.main-visual img {
    width: 100%;
    border-radius: 24px;
    display: block
}

.float-card {
    position: absolute;
    background: white;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 12px;
    box-shadow: 0 18px 46px rgba(7, 25, 47, .16);
    width: 42%
}

.float-card img {
    width: 100%;
    border-radius: 15px;
    display: block
}

.float-a {
    left: -20px;
    bottom: 28px;
    transform: rotate(-5deg)
}

.float-b {
    right: -18px;
    top: 24px;
    transform: rotate(5deg)
}

.stats {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 18px;
    margin-top: -24px;
    position: relative;
    z-index: 2
}

.stat {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: 0 14px 38px rgba(7, 25, 47, .07)
}

.stat h3 {
    font-size: 31px;
    color: var(--navy)
}

.stat p {
    color: var(--muted);
    font-weight: 800;
    font-size: 14px
}

section {
    padding: 82px 0
}

.head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 42px
}

.head h2 {
    font-size: clamp(31px, 4vw, 47px);
    line-height: 1.12;
    color: var(--navy);
    letter-spacing: -1.2px;
    margin-bottom: 13px
}

.head p {
    font-size: 18px;
    color: var(--muted)
}

.grid4 {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 18px
}

.grid3 {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 18px
}

.card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 26px;
    box-shadow: 0 13px 38px rgba(7, 25, 47, .06)
}

.card img.visual {
    width: 100%;
    border-radius: 18px;
    margin-bottom: 18px;
    display: block
}

.icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: #e9fbff;
    color: var(--blue);
    display: grid;
    place-items: center;
    font-size: 22px;
    margin-bottom: 16px
}

.card h3 {
    font-size: 21px;
    color: var(--navy);
    margin-bottom: 8px
}

.card p, .card li {
    color: var(--muted);
    font-size: 15px
}

.card ul {
    list-style: none;
    display: grid;
    gap: 9px;
    margin-top: 12px
}

.card li:before {
    content: "✓";
    color: var(--cyan);
    font-weight: 900;
    margin-right: 8px
}

.dark {
    background: var(--navy);
    color: white;
    border-radius: 42px;
    width: min(1240px, 96%);
    margin: 20px auto;
    overflow: hidden
}

.dark h2, .dark h3 {
    color: white
}

.dark p {
    color: #cde2f0
}

.two {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 34px;
    align-items: center
}

.flow {
    display: grid;
    gap: 14px
}

.step {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 20px;
    padding: 18px;
    display: flex;
    gap: 15px
}

.num {
    min-width: 40px;
    height: 40px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--cyan), var(--gold));
    display: grid;
    place-items: center;
    color: white;
    font-weight: 900
}

.gallery {
    display: grid;
    grid-template-columns:1.2fr .8fr .8fr;
    gap: 18px
}

.gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 16px 44px rgba(7, 25, 47, .1);
    border: 1px solid var(--border);
    background: white
}

.gallery .tall {
    grid-row: span 2
}

.ai {
    background: linear-gradient(135deg, #e9fbff, #fff7df)
}

.feature-list {
    display: grid;
    gap: 13px;
    margin-top: 22px
}

.feature {
    background: white;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 16px 18px;
    color: var(--navy);
    font-weight: 800
}

.compare {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 20px
}

.compare .highlight {
    background: linear-gradient(135deg, #e9fbff, #fff7df);
    border-color: #b9eff6
}

.cta {
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    color: white;
    text-align: center;
    padding: 84px 0
}

.cta h2 {
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.1;
    margin-bottom: 15px
}

.cta p {
    font-size: 19px;
    color: #e8fbff;
    margin-bottom: 26px
}

.cta .btn {
    background: white;
    color: var(--blue)
}

footer {
    background: #020b17;
    color: #9bb3c7;
    padding: 42px 0
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap
}

.mobile-cta {
    display: none
}

.ecosystem {
    background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%)
}

.ecosystem-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 22px;
    align-items: stretch
}

.ecosystem-card {
    position: relative;
    overflow: hidden;
    background: white;
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 32px;
    box-shadow: 0 18px 50px rgba(7, 25, 47, .08)
}

.ecosystem-card:before {
    content: "";
    position: absolute;
    right: -70px;
    top: -70px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(13, 184, 202, .13)
}

.ecosystem-card.gold:before {
    background: rgba(245, 189, 69, .17)
}

.ecosystem-card .tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e9fbff;
    color: var(--blue);
    border: 1px solid #b9eff6;
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 16px
}

.ecosystem-card h3 {
    font-size: 28px;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 12px
}

.ecosystem-card p {
    color: var(--muted);
    font-size: 16px;
    margin-bottom: 18px
}

.ecosystem-card ul {
    list-style: none;
    display: grid;
    gap: 10px;
    margin: 18px 0 24px;
    color: var(--muted);
    font-size: 15px
}

.ecosystem-card li:before {
    content: "✓";
    color: var(--cyan);
    font-weight: 900;
    margin-right: 8px
}

.ecosystem-mini {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 14px;
    margin-top: 24px
}

.ecosystem-mini div {
    background: #f8fdff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 15px;
    color: var(--navy);
    font-weight: 850;
    font-size: 14px;
    text-align: center
}

.ecosystem-flow {
    margin-top: 28px;
    background: var(--navy);
    border-radius: 28px;
    padding: 24px;
    color: white;
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 14px;
    box-shadow: var(--shadow)
}

.ecosystem-flow div {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 18px;
    padding: 16px;
    text-align: center;
    font-weight: 850
}

.ecosystem-flow span {
    display: block;
    color: #cde2f0;
    font-weight: 600;
    font-size: 13px;
    margin-top: 5px
}

@media (max-width: 960px) {
    .ecosystem-grid, .ecosystem-flow {
        grid-template-columns:1fr
    }

    nav ul {
        display: none
    }

    .hero-grid, .two, .compare {
        grid-template-columns:1fr
    }

    .stats, .grid4, .grid3 {
        grid-template-columns:repeat(2, 1fr)
    }

    .gallery {
        grid-template-columns:1fr 1fr
    }

    .float-card {
        display: none
    }
}

@media (max-width: 620px) {
    .ecosystem-mini, .stats, .grid4, .grid3, .gallery {
        grid-template-columns:1fr
    }

    .logo img {
        height: 48px
    }

    .nav .btn-outline {
        display: none
    }

    h1 {
        font-size: 39px
    }

    .mobile-cta {
        display: block;
        position: fixed;
        left: 14px;
        right: 14px;
        bottom: 14px;
        z-index: 50
    }

    .mobile-cta .btn {
        width: 100%;
        box-shadow: 0 16px 40px rgba(7, 25, 47, .22)
    }
}

/* Final polish additions */
.channel-hero-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 30px;
}

.channel-pill-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.06);
}

.channel-pill-icon {
    width: 38px;
    height: 38px;
    border-radius: 13px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(109, 93, 252, 0.12), rgba(25, 199, 160, 0.15));
    color: var(--blue);
    font-size: 19px;
    flex-shrink: 0;
}

.channel-pill-card strong {
    display: block;
    color: var(--navy);
    line-height: 1.15;
}

.channel-pill-card small {
    color: var(--muted);
    font-weight: 700;
    font-size: 12px;
}

.channel-focus {
    background: radial-gradient(circle at 15% 20%, rgba(109, 93, 252, 0.12), transparent 32%),
    radial-gradient(circle at 85% 25%, rgba(25, 199, 160, 0.13), transparent 34%),
    #ffffff;
}

.channel-showcase {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 30px;
    align-items: center;
}

.channel-showcase-panel {
    background: var(--navy);
    color: white;
    border-radius: 34px;
    padding: 34px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.channel-showcase-panel::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    right: -80px;
    top: -80px;
    background: rgba(25, 199, 160, 0.34);
    filter: blur(52px);
}

.channel-flow-line {
    display: grid;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.channel-flow-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    padding: 15px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.channel-flow-item span {
    color: #cbd5e1;
    font-size: 14px;
    font-weight: 700;
}

.channel-flow-item strong {
    color: white;
}

.next-steps-section {
    background: linear-gradient(135deg, #020617, #111827 48%, #1e1b4b);
    color: white;
    border-radius: 42px;
    width: min(1240px, 96%);
    margin: 30px auto;
    overflow: hidden;
}

.next-steps-section .section-head h2,
.next-steps-section h3 {
    color: white;
}

.next-steps-section .section-head p,
.next-steps-section p {
    color: #cbd5e1;
}

.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.roadmap-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    padding: 20px;
    min-height: 210px;
}

.roadmap-number {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    color: white;
    font-weight: 900;
    margin-bottom: 14px;
}

.enterprise-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
}

.enterprise-tags span {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    padding: 10px 14px;
    color: #e2e8f0;
    font-weight: 800;
    font-size: 14px;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.faq-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.05);
}

.faq-item h3 {
    color: var(--navy);
    margin-bottom: 8px;
    font-size: 19px;
}

.faq-item p {
    color: var(--muted);
    font-size: 15px;
}

.contact-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.contact-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 28px;
    align-items: start;
}

.contact-info-card,
.contact-form-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 32px;
    box-shadow: var(--shadow);
}

.contact-info-card h3,
.contact-form-card h3 {
    color: var(--navy);
    font-size: 26px;
    margin-bottom: 12px;
}

.contact-info-list {
    display: grid;
    gap: 14px;
    margin-top: 22px;
}

.contact-info-list div {
    padding: 15px;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid #eef2f7;
    font-weight: 700;
    color: var(--navy);
}

.contact-form {
    display: grid;
    gap: 14px;
    margin-top: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--border);
    background: #f8fafc;
    border-radius: 16px;
    padding: 14px 15px;
    font: inherit;
    color: var(--navy);
    outline: none;
}

.contact-form textarea {
    min-height: 130px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--blue);
    background: white;
    box-shadow: 0 0 0 4px rgba(109, 93, 252, 0.10);
}

.mobile-sticky-cta {
    display: none;
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 80;
    box-shadow: 0 16px 44px rgba(15, 23, 42, 0.22);
}

@media (max-width: 1100px) {
    .roadmap-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 960px) {
    .channel-hero-strip,
    .channel-showcase,
    .contact-layout {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 620px) {
    .channel-hero-strip,
    .roadmap-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .mobile-sticky-cta {
        display: inline-flex;
    }

    body {
        padding-bottom: 84px;
    }
}


.channels-modern-grid {
    display: grid;
    grid-template-columns:repeat(2, 1fr);
    gap: 24px;
}

.channel-modern-card {
    position: relative;
    overflow: hidden;
    background: white;
    border: 1px solid var(--border);
    border-radius: 32px;
    padding: 32px;
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
    transition: 0.25s ease;
}

.channel-modern-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

.channel-modern-card::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -60px;
    top: -60px;
    border-radius: 50%;
    opacity: 0.12;
    filter: blur(8px);
}

.channel-sms::before {
    background: #6d5dfc;
}

.channel-viber::before {
    background: #7c3aed;
}

.channel-whatsapp::before {
    background: #10b981;
}

.channel-email::before {
    background: #0ea5e9;
}

.channel-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}

.channel-main {
    display: flex;
    align-items: center;
    gap: 16px;
}

.channel-big-icon {
    width: 72px;
    height: 72px;
    border-radius: 24px;
    display: grid;
    place-items: center;
    font-size: 32px;
    color: white;
    font-weight: 900;
}

.channel-sms .channel-big-icon {
    background: linear-gradient(135deg, #6d5dfc, #4f46e5);
}

.channel-viber .channel-big-icon {
    background: linear-gradient(135deg, #7c3aed, #5b21b6);
}

.channel-whatsapp .channel-big-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.channel-email .channel-big-icon {
    background: linear-gradient(135deg, #0ea5e9, #2563eb);
}

.channel-badge {
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    background: #f8fafc;
    border: 1px solid var(--border);
    color: var(--navy);
    white-space: nowrap;
}

.channel-modern-card h3 {
    font-size: 28px;
    margin-bottom: 4px;
}

.channel-subtitle {
    color: var(--muted);
    font-size: 16px;
    margin-bottom: 24px;
}

.channel-feature-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.channel-feature {
    background: #f8fafc;
    border: 1px solid #eef2f7;
    border-radius: 18px;
    padding: 14px;
}

.channel-feature strong {
    display: block;
    color: var(--navy);
    margin-bottom: 4px;
    font-size: 14px;
}

.channel-feature span {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.4;
}

@media (max-width: 960px) {
    .channels-modern-grid {
        grid-template-columns:1fr;
    }
}

@media (max-width: 620px) {
    .channel-feature-grid {
        grid-template-columns:1fr;
    }
}


.channel-detail-wrap {
    display: grid;
    gap: 34px;
}

.channel-detail {
    display: grid;
    grid-template-columns:0.95fr 1.05fr;
    gap: 34px;
    align-items: center;
    background: white;
    border: 1px solid var(--border);
    border-radius: 34px;
    padding: 34px;
    box-shadow: 0 18px 52px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    position: relative;
}

.channel-detail:nth-child(even) {
    grid-template-columns:1.05fr 0.95fr;
}

.channel-detail:nth-child(even) .channel-copy {
    order: 2;
}

.channel-detail:nth-child(even) .channel-visual {
    order: 1;
}

.channel-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 13px;
    border-radius: 999px;
    background: #eef2ff;
    color: var(--blue);
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 16px;
}

.channel-copy h3 {
    font-size: 34px;
    line-height: 1.1;
    color: var(--navy);
    margin-bottom: 14px;
}

.channel-copy p {
    color: var(--muted);
    font-size: 17px;
    margin-bottom: 22px;
}

.channel-capabilities {
    display: grid;
    grid-template-columns:repeat(2, 1fr);
    gap: 12px;
    margin: 22px 0;
}

.capability-box {
    background: #f8fafc;
    border: 1px solid #eef2f7;
    border-radius: 18px;
    padding: 15px;
}

.capability-box strong {
    display: block;
    color: var(--navy);
    margin-bottom: 4px;
    font-size: 14px;
}

.capability-box span {
    display: block;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}

.channel-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.channel-tags span {
    border: 1px solid var(--border);
    background: white;
    border-radius: 999px;
    padding: 8px 12px;
    color: var(--navy);
    font-size: 13px;
    font-weight: 800;
}

.channel-visual {
    background: linear-gradient(135deg, #0f172a, #1e1b4b);
    border-radius: 30px;
    padding: 24px;
    color: white;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    min-height: 390px;
}

.channel-visual::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    right: -100px;
    top: -90px;
    background: rgba(25, 199, 160, 0.26);
    filter: blur(46px);
}

.visual-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
    margin-bottom: 18px;
}

.visual-title {
    font-weight: 900;
    font-size: 17px;
}

.visual-pill {
    background: rgba(34, 197, 94, 0.14);
    border: 1px solid rgba(134, 239, 172, 0.22);
    color: #bbf7d0;
    border-radius: 999px;
    padding: 7px 11px;
    font-size: 12px;
    font-weight: 900;
}

.phone-mock {
    background: #020617;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    padding: 16px;
    position: relative;
    z-index: 1;
    max-width: 360px;
    margin: 0 auto;
}

.phone-screen {
    background: #f8fafc;
    border-radius: 22px;
    padding: 14px;
    min-height: 292px;
    color: #0f172a;
}

.msg-row {
    display: flex;
    margin: 10px 0;
}

.msg-row.out {
    justify-content: flex-end;
}

.bubble {
    max-width: 82%;
    padding: 11px 13px;
    border-radius: 16px;
    font-size: 13px;
    line-height: 1.35;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
}

.msg-row.in .bubble {
    background: white;
    border: 1px solid #e2e8f0;
}

.msg-row.out .bubble {
    background: #6d5dfc;
    color: white;
    border-bottom-right-radius: 5px;
}

.sms .msg-row.out .bubble {
    background: #4f46e5;
}

.viber .msg-row.out .bubble {
    background: #6d28d9;
}

.whatsapp .msg-row.out .bubble {
    background: #059669;
}

.email .msg-row.out .bubble {
    background: #2563eb;
}

.template-panel {
    display: grid;
    gap: 10px;
    margin-top: 14px;
    position: relative;
    z-index: 1;
}

.template-line {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 15px;
    padding: 11px 12px;
    color: #e2e8f0;
    font-size: 13px;
    font-weight: 800;
}

.template-line span {
    color: #94a3b8;
    font-size: 12px;
}

.address-book-mini {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 8px;
    margin-top: 12px;
}

.address-book-mini div {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 9px;
    font-size: 11px;
    font-weight: 900;
    color: #334155;
    text-align: center;
}

@media (max-width: 960px) {
    .channel-detail,
    .channel-detail:nth-child(even) {
        grid-template-columns:1fr;
    }

    .channel-detail:nth-child(even) .channel-copy,
    .channel-detail:nth-child(even) .channel-visual {
        order: initial;
    }
}

@media (max-width: 620px) {
    .channel-detail {
        padding: 24px;
    }

    .channel-capabilities {
        grid-template-columns:1fr;
    }

    .channel-copy h3 {
        font-size: 28px;
    }

    .address-book-mini {
        grid-template-columns:1fr;
    }
}


.phone-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 4px 12px;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 10px;
}

.avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: white;
    font-size: 14px;
    font-weight: 900;
    background: linear-gradient(135deg, #6d5dfc, #19c7a0);
}

.phone-header strong {
    display: block;
    font-size: 13px;
    color: #0f172a;
    line-height: 1.1;
}

.phone-header small {
    color: #64748b;
    font-size: 11px;
    font-weight: 700;
}

.message-status {
    display: block;
    margin-top: 5px;
    font-size: 10px;
    opacity: .8;
    text-align: right;
}

.media-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.10);
    max-width: 88%;
}

.media-visual {
    height: 112px;
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.40), transparent 30%),
    linear-gradient(135deg, #6d5dfc, #19c7a0);
    display: flex;
    align-items: flex-end;
    padding: 14px;
    color: white;
    font-weight: 900;
    font-size: 17px;
    letter-spacing: -.3px;
}

.media-visual.viber-media {
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.35), transparent 30%),
    linear-gradient(135deg, #7c3aed, #6d28d9);
}

.media-visual.whatsapp-media {
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.35), transparent 30%),
    linear-gradient(135deg, #10b981, #059669);
}

.media-body {
    padding: 13px;
    color: #0f172a;
    font-size: 13px;
    line-height: 1.35;
}

.media-body strong {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
}

.media-button {
    margin-top: 10px;
    display: block;
    width: 100%;
    border: 0;
    border-radius: 12px;
    padding: 10px;
    font-weight: 900;
    font-size: 12px;
    color: white;
    background: #6d5dfc;
    text-align: center;
}

.whatsapp .media-button {
    background: #059669;
}

.viber .media-button {
    background: #6d28d9;
}

.email-preview-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
    font-size: 12px;
    color: #0f172a;
}

.email-preview-head {
    padding: 12px;
    background: #eef2ff;
    border-bottom: 1px solid #e2e8f0;
    font-weight: 900;
}

.email-preview-body {
    padding: 12px;
    line-height: 1.45;
}

.email-cta {
    margin-top: 10px;
    display: inline-block;
    background: #2563eb;
    color: white;
    border-radius: 10px;
    padding: 8px 10px;
    font-weight: 900;
    font-size: 11px;
}

.sms-code-box {
    background: #eef2ff;
    border: 1px dashed #6d5dfc;
    color: #4f46e5;
    border-radius: 14px;
    padding: 12px;
    text-align: center;
    font-size: 22px;
    letter-spacing: 4px;
    font-weight: 900;
    margin: 10px 0;
}


@media (max-width: 980px) {
    .pricing-grid {
        grid-template-columns:1fr !important;
    }
}


/* Pricing section */
.pricing-section {
    background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 24px;
    margin-top: 44px;
}

.pricing-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 34px;
    box-shadow: 0 16px 44px rgba(7, 25, 47, .07);
}

.pricing-card.featured {
    background: linear-gradient(180deg, var(--blue) 0%, var(--navy) 100%);
    color: white;
    transform: translateY(-8px);
    box-shadow: 0 24px 64px rgba(7, 25, 47, .18);
}

.pricing-card h3 {
    color: var(--navy);
    font-size: 26px;
    margin: 14px 0 8px;
}

.pricing-card.featured h3 {
    color: white;
}

.price {
    font-size: 46px;
    line-height: 1;
    font-weight: 900;
    color: var(--blue);
    margin: 22px 0 10px;
}

.pricing-card.featured .price {
    color: white;
}

.price small {
    font-size: 15px;
    font-weight: 700;
    color: var(--muted);
}

.pricing-card.featured .price small,
.pricing-card.featured p {
    color: #d8e8ff;
}

.pricing-card ul {
    list-style: none;
    display: grid;
    gap: 11px;
    margin: 24px 0 28px;
}

.pricing-card li {
    color: var(--muted);
    font-size: 15px;
}

.pricing-card.featured li {
    color: #f3f8ff;
}

.pricing-card li:before {
    content: "✓";
    color: var(--cyan);
    font-weight: 900;
    margin-right: 9px;
}

.pricing-note {
    margin-top: 26px;
    background: #fff8e6;
    border: 1px solid rgba(245, 189, 69, .45);
    color: var(--navy);
    border-radius: 22px;
    padding: 20px;
    font-weight: 800;
}

@media (max-width: 980px) {
    .pricing-grid {
        grid-template-columns:1fr
    }

    .pricing-card.featured {
        transform: none
    }
}


/* Final product polish */
.product-preview-section {
    background: linear-gradient(180deg, #ffffff 0%, #eefaff 100%);
}

.dashboard-preview {
    display: grid;
    grid-template-columns:.9fr 1.1fr;
    gap: 40px;
    align-items: center;
}

.dashboard-mock {
    background: #07192f;
    border-radius: 34px;
    padding: 18px;
    box-shadow: var(--shadow);
    color: white;
}

.dashboard-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 8px 18px;
}

.dashboard-pill {
    background: rgba(13, 184, 202, .16);
    border: 1px solid rgba(13, 184, 202, .3);
    color: #b9eff6;
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 12px;
    font-weight: 900;
}

.dashboard-grid {
    display: grid;
    grid-template-columns:210px 1fr;
    gap: 14px;
}

.dashboard-sidebar {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 24px;
    padding: 14px;
}

.dashboard-item {
    padding: 12px;
    border-radius: 14px;
    color: #cde2f0;
    font-weight: 800;
    font-size: 13px;
    margin-bottom: 8px;
}

.dashboard-item.active {
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    color: white;
}

.dashboard-content {
    background: #f8fdff;
    border-radius: 24px;
    padding: 16px;
    color: var(--navy);
}

.dashboard-metrics {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 14px;
}

.dash-metric {
    background: white;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 14px;
}

.dash-metric strong {
    display: block;
    font-size: 24px;
    color: var(--navy);
}

.dash-metric span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}

.dash-chart {
    height: 150px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 16px;
    display: flex;
    align-items: end;
    gap: 10px;
}

.dash-bar {
    flex: 1;
    border-radius: 12px 12px 4px 4px;
    background: linear-gradient(180deg, var(--cyan), var(--blue));
    min-height: 32px;
}

.trust-strip {
    display: grid;
    grid-template-columns:repeat(6, 1fr);
    gap: 14px;
}

.trust-chip {
    background: white;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 16px;
    text-align: center;
    color: var(--navy);
    font-weight: 900;
    box-shadow: 0 10px 28px rgba(7, 25, 47, .05);
}

.usecase-grid {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 18px;
}

.usecase-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 26px;
    padding: 26px;
    box-shadow: 0 14px 34px rgba(7, 25, 47, .06);
}

.usecase-card h3 {
    color: var(--navy);
    margin-bottom: 10px;
}

.api-mini {
    background: linear-gradient(135deg, #07192f, #0b2a48);
    color: white;
    border-radius: 36px;
    padding: 40px;
    display: grid;
    grid-template-columns:.9fr 1.1fr;
    gap: 34px;
    align-items: center;
}

.api-mini h2 {
    color: white
}

.api-mini p {
    color: #cde2f0
}

.code-box {
    background: #020b17;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 24px;
    padding: 22px;
    color: #dbeafe;
    overflow: auto;
    font-family: Consolas, Monaco, monospace;
    font-size: 13px;
    line-height: 1.6;
}

.footer-rich {
    display: grid;
    grid-template-columns:1.2fr repeat(3, 1fr);
    gap: 28px;
}

.footer-rich h4 {
    color: white;
    margin-bottom: 12px;
}

.footer-rich a, .footer-rich div {
    color: #9bb3c7;
}

.footer-links {
    display: grid;
    gap: 8px;
}

@media (max-width: 980px) {
    .dashboard-preview, .api-mini {
        grid-template-columns:1fr
    }

    .dashboard-grid {
        grid-template-columns:1fr
    }

    .trust-strip, .usecase-grid {
        grid-template-columns:1fr 1fr
    }

    .footer-rich {
        grid-template-columns:1fr 1fr
    }
}

@media (max-width: 620px) {
    .dashboard-metrics, .trust-strip, .usecase-grid, .footer-rich {
        grid-template-columns:1fr
    }
}


/* Countries support */
.countries-strip {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.country-pill {
    background: white;
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 10px 16px;
    font-weight: 800;
    color: var(--navy);
    box-shadow: 0 8px 24px rgba(7, 25, 47, .05);
}


/* Premium whitespace for channels */
.channel-detail {
    margin-top: 90px !important;
}

.channel-copy p {
    max-width: 560px;
    line-height: 1.85;
    margin: 18px 0 28px;
}

.feature-list {
    gap: 14px !important;
}

.feature {
    padding: 12px 16px !important;
}

.channel-copy h3 {
    max-width: 640px;
    line-height: 1.25;
    margin-top: 18px;
}


/* Final contact + FAQ cleanup */
.faq-grid-final {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 18px
}

.faq-card-final {
    background: white;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 12px 34px rgba(7, 25, 47, .05)
}

.faq-card-final h3 {
    color: var(--navy);
    margin-bottom: 8px;
    font-size: 19px
}

.faq-card-final p {
    color: var(--muted);
    font-size: 15px
}

.contact-section-final {
    background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%)
}

.contact-layout-final {
    display: grid;
    grid-template-columns:.9fr 1.1fr;
    gap: 28px;
    align-items: start
}

.contact-info-final, .contact-form-final {
    background: white;
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 32px;
    box-shadow: var(--shadow)
}

.contact-info-final h3, .contact-form-final h3 {
    color: var(--navy);
    font-size: 28px;
    margin-bottom: 12px
}

.contact-points-final {
    display: grid;
    gap: 12px;
    margin-top: 20px
}

.contact-points-final div {
    background: #f8fdff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 14px;
    font-weight: 800;
    color: var(--navy)
}

.contact-form-grid {
    display: grid;
    gap: 14px;
    margin-top: 18px
}

.form-row-final {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 14px
}

.contact-form-grid input, .contact-form-grid select, .contact-form-grid textarea {
    width: 100%;
    border: 1px solid var(--border);
    background: #f8fdff;
    border-radius: 16px;
    padding: 14px 15px;
    font: inherit;
    color: var(--navy);
    outline: none
}

.contact-form-grid textarea {
    min-height: 130px;
    resize: vertical
}

.contact-form-grid input:focus, .contact-form-grid select:focus, .contact-form-grid textarea:focus {
    border-color: var(--cyan);
    background: white;
    box-shadow: 0 0 0 4px rgba(13, 184, 202, .12)
}

@media (max-width: 900px) {
    .faq-grid-final, .contact-layout-final, .form-row-final {
        grid-template-columns:1fr
    }
}


/* Final premium polish */
html {
    scroll-behavior: smooth
}

.card, .channel-detail, .pricing-card, .usecase-card, .faq-card-final, .contact-info-final, .contact-form-final, .dashboard-mock {
    transition: transform .22s ease, box-shadow .22s ease;
}

.card:hover, .channel-detail:hover, .pricing-card:hover, .usecase-card:hover, .faq-card-final:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 58px rgba(7, 25, 47, .10);
}

.btn {
    transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    opacity: .96;
}

.reveal {
    animation: fadeUp .7s ease both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.logo-wall {
    background: #fff;
}

.logo-grid {
    display: grid;
    grid-template-columns:repeat(5, 1fr);
    gap: 16px;
    margin-top: 34px;
}

.logo-item {
    background: #f8fdff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 22px;
    text-align: center;
    color: var(--navy);
    font-weight: 900;
    box-shadow: 0 10px 26px rgba(7, 25, 47, .04);
}

.product-screens-grid {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 16px;
    margin-top: 28px;
}

.product-screen-mini {
    background: white;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 18px;
    box-shadow: 0 12px 32px rgba(7, 25, 47, .06);
}

.product-screen-mini strong {
    display: block;
    color: var(--navy);
    margin-bottom: 10px;
}

.mini-line {
    height: 10px;
    background: #e9fbff;
    border-radius: 999px;
    margin: 9px 0;
}

.mini-line.short {
    width: 65%
}

.mini-line.medium {
    width: 82%
}

.performance-note {
    margin-top: 28px;
    background: #fff8e6;
    border: 1px solid rgba(245, 189, 69, .45);
    border-radius: 22px;
    padding: 20px;
    color: var(--navy);
    font-weight: 800;
}

@media (max-width: 980px) {
    .logo-grid, .product-screens-grid {
        grid-template-columns:1fr 1fr
    }
}

@media (max-width: 620px) {
    .logo-grid, .product-screens-grid {
        grid-template-columns:1fr
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important
    }
}


/* Dorada 2026: clean layout, mobile menu, better CTA */
.nav-toggle {
    display: none;
    border: 0;
    background: #eefaff;
    color: var(--blue);
    border-radius: 14px;
    padding: 10px 12px;
    font-weight: 900;
    font-size: 20px
}

.nav-actions {
    display: flex;
    gap: 10px;
    align-items: center
}

.lang-switcher {
    position: relative
}

.lang-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 0;
    background: #eefaff;
    color: var(--blue);
    border-radius: 14px;
    padding: 8px 12px;
    font-weight: 900;
    font-size: 15px;
    cursor: pointer;
    white-space: nowrap
}

.lang-toggle img {
    width: 20px;
    height: auto;
    border-radius: 2px
}

.lang-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 6px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 6px;
    box-shadow: var(--shadow);
    z-index: 99;
    list-style: none;
    min-width: 140px
}

.lang-dropdown.open {
    display: block
}

.lang-dropdown li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 10px;
    color: var(--navy);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    white-space: nowrap
}

.lang-dropdown li a:hover {
    background: var(--light)
}

.lang-dropdown li a img {
    width: 20px;
    height: auto;
    border-radius: 2px
}

.kicker {
    font-weight: 900;
    color: var(--cyan);
    letter-spacing: .04em;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 8px
}

.section-soft {
    background: linear-gradient(180deg, #f6fbff 0%, #ffffff 100%)
}

.cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center
}

.card-mini-note {
    margin-top: 12px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700
}

.hero .btn-outline {
    box-shadow: 0 10px 30px rgba(7, 25, 47, .06)
}

.stat {
    min-height: 132px
}

.price-list-clean {
    display: grid;
    grid-template-columns:repeat(5, 1fr);
    gap: 12px;
    margin-top: 28px
}

.price-chip {
    background: #f8fdff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 16px;
    text-align: center;
    color: var(--navy);
    font-weight: 900
}

.price-chip small {
    display: block;
    color: var(--muted);
    font-weight: 800;
    margin-top: 4px
}

.contact-form-grid button {
    border: 0;
    cursor: pointer
}

@media (max-width: 960px) {
    .nav {
        height: auto;
        min-height: 74px;
        align-items: center;
        padding: 14px 0;
        gap: 12px
    }

    .nav-toggle {
        display: block;
        margin-left: auto
    }

    nav ul {
        display: none;
        position: absolute;
        left: 4%;
        right: 4%;
        top: 78px;
        background: white;
        border: 1px solid var(--border);
        border-radius: 22px;
        padding: 18px;
        box-shadow: var(--shadow);
        z-index: 99
    }

    nav ul.open {
        display: grid;
        gap: 14px
    }

    .nav-actions .btn-outline {
        display: none
    }

    .price-list-clean {
        grid-template-columns:1fr 1fr
    }
}

@media (max-width: 620px) {
    section {
        padding: 58px 0
    }

    .hero {
        padding: 58px 0 42px
    }

    .hero p {
        font-size: 17px
    }

    .stats {
        margin-top: 18px
    }

    .price-list-clean {
        grid-template-columns:1fr
    }

    .channel-detail {
        margin-top: 34px !important
    }

    .channel-visual {
        min-height: auto
    }

    .cta h2 {
        font-size: 31px
    }

    .footer-grid {
        display: grid
    }

    .nav-actions .btn-primary {
        display: none
    }

    .nav {
        gap: 24px;
        align-items: flex-start
    }

    .nav-toggle {
        margin-left: 0
    }
}
