/* =====================================================
   RESET
===================================================== */

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

:root {
    --blue: #1260d8;
    --dark-blue: #071936;
    --navy: #17233d;
    --text: #17233d;
    --muted: #59657a;
    --border: #dce5ef;
    --light-blue: #f7fbff;
}

html,
body {
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: #fff;
    line-height: 1.5;
}

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

button {
    font-family: inherit;
}

.container {
    width: min(1440px, calc(100% - 56px));
    margin: auto;
}


/* =====================================================
   HEADER
===================================================== */

.site-header {
    height: 78px;
    border-bottom: 1px solid #e4eaf1;
    background: #fff;
}

.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 25px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.logo-mark {
    width: 50px;
    height: 50px;
    border: 2px solid #a8c8eb;
    border-radius: 50%;
    position: relative;
    display: grid;
    place-items: center;
    color: var(--blue);
    font-size: 27px;
    font-weight: 700;
}

.logo-mark::before {
    content: "";
    position: absolute;
    inset: 7px;
    border: 2px solid var(--blue);
    border-radius: 50%;
}

.logo-mark::after {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #20b7bd;
    top: 1px;
    right: 3px;
}

.logo-mark span {
    position: relative;
    z-index: 2;
}

.logo-text {
    display: flex;
    flex-direction: column;
    color: #071936;
    font-size: 18px;
    line-height: 1.05;
    letter-spacing: 1px;
}

.logo-tagline {
    border-left: 1px solid #ccd4df;
    padding-left: 13px;
    color: #59657a;
    font-size: 9px;
    line-height: 1.35;
}

.main-nav {
    margin-left: auto;
    display: flex;
    gap: 27px;
}

.main-nav a {
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;

}

.main-nav span {
    font-size: 10px;
    margin-left: 3px;
}

.header-buttons {
    display: flex;
    gap: 10px;
}

.btn {
    min-height: 43px;
    padding: 0 20px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.btn-primary {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 4px 12px rgba(18, 96, 216, .15);
}

.btn-outline {
    border: 1px solid #aeb8c7;
    background: #fff;
    color: #101c33;
}

.mobile-menu {
    display: none;
    border: 0;
    background: transparent;
    font-size: 24px;
}


/* ================= BREADCRUMB ================= */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 22px 0 0;
    font-size: 14px;
    color: #8792a3;
}

.breadcrumb .material-symbols-outlined {
    font-size: 18px;
}

.breadcrumb a {
    color: #8792a3;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--blue);
}

.breadcrumb b {
    font-weight: 400;
    opacity: .6;
}

.breadcrumb span:last-child {
    color: var(--navy);
    font-weight: 500;
}

/* =====================================================
   HERO
===================================================== */

.hero-section {
    padding-bottom: 20px;
}

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

.hero-content {
    padding: 30px 0 15px;
}

.hero-content h1 {
    font-size: clamp(42px, 5vw, 44px);
    line-height: 1.08;
    letter-spacing: -2px;
    color: #071936;
    margin-bottom: 15px;
}

.hero-content h1 span {
    display: block;
    color: var(--blue);
}

.hero-description {
    max-width: 570px;
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 14px;
}

.hero-list {
    list-style: none;
}

.hero-list li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    margin: 7px 0;
}

.check {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
}

.check span {
    font-size: 20px;
}

/* =====================================================
   PHONE CARD
===================================================== */

.phone-card {
    min-height: 300px;
    border: 1px solid #dce5ef;
    border-radius: 15px;
    background: linear-gradient(145deg, #fff, #fbfdff);
    padding: 20px 35px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(30, 70, 110, .04);
}

.phone-card h2 {
    color: var(--blue);
    font-size: 22px;
    margin-bottom: 2px;
}

.phone-card>p {
    font-size: 14px;
}

.phone-number {
    font-size: 35px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #071936;
    margin: 12px 0 10px;
}


/* WAVEFORM */

.waveform {
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    margin: 5px auto 12px;
}

.waveform span {
    display: block;
    width: 3px;
    height: 15px;
    border-radius: 4px;
    background: linear-gradient(to bottom, #1260d8, #8b54db);
    animation: wave 1.1s ease-in-out infinite alternate;
}

.waveform span:nth-child(2n) {
    height: 28px;
}

.waveform span:nth-child(3n) {
    height: 42px;
}

.waveform span:nth-child(4n) {
    height: 20px;
}

.waveform span:nth-child(5n) {
    height: 52px;
}

@keyframes wave {

    from {
        transform: scaleY(.65);
    }

    to {
        transform: scaleY(1.2);
    }
}

.call-button {
    width: 100%;
    min-height: 48px;
    background: var(--blue);
    color: #fff;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 17px;
    font-weight: 700;
}

.call-button svg {
    width: 33px;
    height: 33px;
}

.phone-note {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 12px;
    font-size: 12px;
}


/* =====================================================
   CAPABILITIES
===================================================== */

.capabilities-section {
    padding: 0 0 20px;
}

.capabilities-box {
    border: 1px solid #dce5ef;
    border-radius: 15px;
    padding: 30px;
}

.capabilities-box h2 {
    text-align: center;
    color: var(--blue);
    font-size: 22px;
    margin-bottom: 18px;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

.capability {
    min-height: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-right: 1px solid #dce5ef;
}

.capability:last-child {
    border-right: 0;
}

.capability-icon {
    height: 42px;
    margin-bottom: 7px;
}

.capability-icon svg {
    width: 38px;
    height: 38px;
    fill: none;
    stroke: var(--blue);
    stroke-width: 1.5;
}

.capability strong {
    font-size: 13px;
    line-height: 1.35;
}


/* =====================================================
   DEMO SECTION
===================================================== */

.demo-section {
    padding-top: 50px;
    padding-bottom: 50px;
}

.demo-grid {
    display: grid;
    grid-template-columns: 52% 48%;
    gap: 35px;
    align-items: start;

}

.video-card {
    border: 1px solid #dce5ef;
    border-radius: 15px;
    overflow: hidden;
}

.video-image {
    height: 400px;
    position: relative;
    overflow: hidden;
}

.video-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,

            transparent 45%,

            rgba(0, 0, 0, .3));

}

.play-button {
    position: absolute;
    z-index: 3;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 58px;
    height: 58px;
    border: 0;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    font-size: 21px;
    padding-left: 4px;
    cursor: pointer;
}

.play-button:hover .play {
    font-size: 7px !important;
}

.play {
    font-size: 6px !important;
    transition: all .3s ease-in-out;
}

.conversation-box {
    position: absolute;
    z-index: 4;
    left: 42px;
    right: 95px;
    bottom: 80px;
    padding: 10px 14px;
    color: #fff;
    border-radius: 8px;
    background: rgba(4, 24, 50, 0.481);
    backdrop-filter: blur(2px);
    max-width: 450px;
}

.caller-box {
    bottom: 10px;
}

.conversation-line {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.conversation-line span {
    font-size: 11px;
}

.conversation-box p {
    font-size: 12px;
    margin-top: 4px;
}

.watch-demo {
    height: 45px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-left: 40px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 700;
}

.watch-demo span {
    width: 17px;
    height: 17px;
    border: 1px solid var(--blue);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 7px;

}


/* =====================================================
   INDUSTRIES
===================================================== */

.eyebrow {
    color: var(--blue);
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 17px;
}

.industries-content h2 {
    font-size: 35px;
    line-height: 1.15;
    margin: 7px 0 10px;
    max-width: 500px;
}

.industries-content>p {
    color: #59657a;
    font-size: 15px;
    line-height: 1.6;
    max-width: 450px;
}

.industry-list {
    margin-top: 17px;
}

.industry-item {
    display: flex;
    gap: 12px;
    margin: 13px 0;
}

.industry-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

.industry-icon svg {
    width: 29px;
    height: 29px;
    fill: none;
    stroke: var(--blue);
    stroke-width: 1.5;

}

.industry-item strong {
    display: block;
    font-size: 15px;

}

.industry-item p {
    color: #59657a;
    font-size: 13px;
}

.explore-link {
    display: flex;
    align-items: center;
    margin-top: 5px;
    color: var(--blue);
    font-size: 14px;
    font-weight: 700;
    gap: 10px;
    margin-top: 30px;
}


/* =====================================================
   VOICES
===================================================== */

.voices-section {
    padding-bottom: 30px;
}

.voices-box {
    border: 1px solid #dce5ef;
    border-radius: 15px;
    padding: 30px;
}

.section-heading {

    text-align: center;

}

.section-heading h2 {

    color: var(--blue);

    font-size: 20px;

    line-height: 1.2;

}

.section-heading p {
    color: #59657a;
    font-size: 15px;
    margin-bottom: 20px;
}

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

.voice-card {

    min-height: 125px;

    border: 1px solid #e0e6ee;

    border-radius: 8px;

    padding: 10px;

}

.voice-wave {

    height: 25px;

    font-size: 21px;

    letter-spacing: -3px;

    overflow: hidden;

    line-height: 1;

}

.blue-wave {

    color: #1260d8;

}

.green-wave {

    color: #48b77b;

}

.purple-wave {

    color: #8055d8;

}

.orange-wave {

    color: #ed7132;

}

.pink-wave {

    color: #dc3d79;

}

.cyan-wave {

    color: #2caeba;

}

.voice-play {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    color: #fff;
    display: inline-flex;
    align-items: center;

    justify-content: center;

    font-size: 8px;

    float: left;

    margin-right: 6px;

}

.voice-play.blue {

    background: #1260d8;

}

.voice-play.green {

    background: #48b77b;

}

.voice-play.purple {

    background: #8055d8;

}

.voice-play.orange {

    background: #ed7132;

}

.voice-play.pink {

    background: #dc3d79;

}

.voice-play.cyan {

    background: #2caeba;

}

.voice-card h3 {
    font-size: 14px;
    line-height: 20px;
}

.voice-card p {
    margin-top: 5px;
    margin-left: 25px;
    display: block;
    color: #59657a;
    font-size: 12px;
    line-height: 1.35;
    min-height: 23px;
}

.voice-meta {
    display: flex;
    gap: 5px;
    margin-top: 8px;
}

.voice-meta span {
    border: 1px solid #d9e1ea;
    border-radius: 3px;
    padding: 2px 6px;
    font-size: 10px;
}


/* =====================================================
   BENEFITS
===================================================== */

.benefits-section {
    padding-top: 20px;
    padding-bottom: 50px;
}

.benefits-section h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}

.benefits-section h2::before,
.benefits-section h2::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #ddd;
    max-width: 300px;
}

.benefits-section .section-heading {
    margin-bottom: 15px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-right: 1px solid #dce5ef;
}

.benefit:last-child {
    border-right: 0;
}

.benefit-icon {
    width: 42px;
    height: 42px;
    border: 1px solid #b9d0ed;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--blue);
    font-size: 25px;
}

.benefit-icon svg {
    width: 30px;
    height: 30px;
}

.benefit strong,
.benefit small {
    display: block;
}

.benefit strong {
    font-size: 14px;

}

.benefit small {
    color: #59657a;
    font-size: 12px;

}


/* =====================================================
   CTA
===================================================== */


.cta-section {
    padding-bottom: 40px;

}

.cta-box {
    min-height: 75px;
    padding: 15px 35px;
    border: 1px solid #dce5ef;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f9fcff;
}

.cta-box h2 {
    font-size: 25px;
    margin-bottom: 7px;
}

.cta-box p {
    color: #59657a;
    font-size: 14px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

.cta-buttons .btn {
    font-size: 15 px;
}

.cta-buttons svg {
    width: 30px;
    height: 30px;
}


/* =====================================================
   FOOTER
===================================================== */

.site-footer {
    border-top: 1px solid #e3e8ef;
    padding-top: 22px;

}

.footer-grid {

    display: grid;

    grid-template-columns: 1.35fr 1.3fr 1.2fr 1fr 1fr 1.35fr;

    gap: 25px;

    padding-bottom: 20px;

}

.footer-logo {

    margin-bottom: 12px;

}

.footer-brand p {

    max-width: 200px;

    color: #59657a;

    font-size: 10px;

    line-height: 1.55;

}

.socials {

    display: flex;

    gap: 8px;

    margin-top: 12px;

}

.socials a {

    width: 25px;

    height: 25px;

    border: 1px solid #dce3ec;

    border-radius: 50%;

    display: grid;

    place-items: center;

    font-size: 10px;

    font-weight: 700;

}

.footer-column h4,

.footer-contact h4 {

    font-size: 11px;

    margin-bottom: 11px;

}

.footer-column a {

    display: block;

    color: #59657a;

    font-size: 9px;

    margin: 5px 0;

}

.footer-contact {

    border-left: 1px solid #dce3ec;

    padding-left: 24px;

}

.footer-contact p {

    color: #59657a;

    font-size: 9px;

    margin: 9px 0;

}

.footer-bottom {

    min-height: 45px;

    border-top: 1px solid #e3e8ef;

    display: flex;

    align-items: center;

    justify-content: space-between;

    color: #59657a;

    font-size: 9px;

}

.footer-bottom div {

    display: flex;

    gap: 70px;

}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1200px) {

    .main-nav {

        gap: 15px;

    }

    .header-buttons {

        display: none;

    }

    .voices-grid {

        grid-template-columns: repeat(3, 1fr);

    }

    .footer-grid {

        grid-template-columns: repeat(3, 1fr);

    }

    .footer-contact {

        border-left: 0;

        padding-left: 0;

    }

}


@media (max-width: 850px) {
    .conversation-box {
        bottom: 80px;
        max-width: 700px !important;
        left: 95px;
    }

    .caller-box {
        bottom: 10px;
    }

    .container {

        width: min(100% - 32px, 700px);

    }

    .site-header {

        height: 72px;

    }

    .logo-tagline,

    .main-nav {

        display: none;

    }

    .mobile-menu {

        display: block;

        margin-left: auto;

    }

    .hero-grid,
    .demo-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 10px;
    }

    .hero-grid .hero-content {
        width: 100%;
        padding-top: 50px;
    }

    .phone-card {
        width: 100%;
        max-width: 750px;
        margin: auto;
    }

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

    .capability {
        padding: 20px;
        border-bottom: 1px solid #dce5ef;
    }

    .capability:nth-child(4n),
    .capability:nth-child(5n),
    .capability:nth-child(6n) {
        border-bottom: 0;
    }

    .capability:nth-child(3n) {
        border-right: 0;
    }

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

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

    .benefit {
        border-bottom: 1px solid #dce5ef;
    }

    .benefit:nth-child(2),
    .benefit:nth-child(4) {
        border-right: 0;
    }

    .benefit:nth-child(5) {
        grid-column: span 2;
    }

    .cta-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

}


@media (max-width: 600px) {
    .container {
        width: calc(100% - 28px);
    }

    .logo-text {
        font-size: 15px;
    }

    .logo-mark {
        width: 42px;
        height: 42px;
        font-size: 21px;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-grid {
        gap: 20px;
    }

    .phone-card {
        padding: 20px;
    }

    .phone-number {
        font-size: 28px;
    }

    .capabilities-grid,
    .voices-grid,
    .benefits-grid {
        grid-template-columns: 1fr !important;

    }

    .benefits-grid {
        display: flex;
        flex-direction: column;
    }

    .benefit:nth-child(5) {
        border-bottom: none;
    }

    .capability {
        border-right: 0;
        border-bottom: 1px solid #dce5ef !important;
    }

    .capability:nth-child(6n) {
        border-bottom: 0 !important;
    }

    .call-button {
        font-size: 15px;
    }

    .benefit {
        border-right: 0;
        border-bottom: 1px solid #dce5ef;
    }

    .cta-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        padding: 15px 0;
        text-align: center;
    }

    .footer-bottom div {
        gap: 20px;
    }

    .conversation-box {
        left: 20px;
        right: 20px;
    }

    .video-image {
        height: 380px;
    }
}