/* =============================================
   CALLCAPTURE - MAIN STYLESHEET
   ============================================= */

/* =============================================
   CSS VARIABLES
   ============================================= */
:root {
    --primary: #09090B;
    --primary-dark: #050505;
    --primary-light: #171717;
    --accent: #2563EB;
    --accent-coral: #EA580C;
    --accent-green: #B6C649;
    --secondary: #171717;
    --muted: #171717;
    --dark: #09090B;
    --light: #F4F4F5;
    --white: #FFFFFF;
    --text-muted: #71717A;
    --text-muted-light: #D4D4D4;
    --grid-color: rgba(37, 99, 235, 0.12);
}

/* =============================================
   RESET & BASE
   ============================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Source Sans 3", sans-serif;
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: default;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

input, textarea, p, .selectable-content {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Plus Jakarta Sans", sans-serif;
}

/* =============================================
   UTILITY CLASSES
   ============================================= */
.gradient-text {
    background-image: linear-gradient(to right, #4362e8, #d36422);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* Grid Background Pattern */
.bg-grid {
    background-color: var(--primary);
    background-image:
        linear-gradient(var(--grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: 40px 40px;
    position: relative;
}

.bg-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center top, rgba(37, 99, 235, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 50px 0;
    transition: all 0.3s ease;
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.90);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgb(0 0 0 / 15%);
    padding: 12px 0;
}

.nav.scrolled .nav__logo img.logo-white {
    display: none;
}

.nav.scrolled .nav__logo img.logo-dark {
    display: block;
}

.nav__logo img.logo-dark {
    display: none;
}

.nav__bar {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav__logo img {
    height: 32px;
    width: auto;
}

.nav__right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Desktop Navigation Links */
.nav__links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav__link {
    color: rgba(255, 255, 255, 0.25);
    text-decoration: none;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 18px;
    font-weight: 500;
    /*text-transform: uppercase;*/
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
}

.nav__link:hover {
    color: var(--white);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-coral);
    transition: width 0.3s ease;
}

.nav__link:hover::after {
    width: 100%;
}

.nav.scrolled .nav__link {
    color: rgba(0, 0, 0, 0.7);
}

.nav.scrolled .nav__link:hover {
    color: var(--dark);
}

@media (max-width: 1024px) {
    .nav__links {
        display: none;
    }
}


.nav__links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav.scrolled .nav__link {
    color: var(--dark);
}

.nav__link:hover {
    color: var(--white);
}

.nav.scrolled .nav__link:hover {
    color: var(--accent-coral);
}

.nav__ctaButton {
    background: var(--accent-coral);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nav__ctaButton svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.nav__ctaButton:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(234, 88, 12, 0.4);
}

.nav__toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav__toggle:hover {
    border-color: var(--white);
}

.nav__toggle span {
    width: 22px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

.nav__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.nav.scrolled .nav__toggle {
    border-color: rgba(0, 0, 0, 0.2);
}

.nav.scrolled .nav__toggle:hover {
    border-color: var(--dark);
}

.nav.scrolled .nav__toggle span {
    background: var(--dark);
}

/* =============================================
   MOBILE NAV HIDE/SHOW ON SCROLL
   ============================================= */
@media (max-width: 768px) {
    .nav {
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                    background 0.3s ease,
                    padding 0.3s ease,
                    box-shadow 0.3s ease;
    }

    .nav.nav--hidden {
        transform: translateY(-100%);
    }

    .nav.nav--hidden.nav--menu-open {
        transform: translateY(0);
    }
}

/* =============================================
   SLIDE-OUT MENU
   ============================================= */
.nav__menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 50%;
    max-width: 600px;
    height: 100vh;
    background: var(--white);
    z-index: 1001;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 100px 60px 60px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.nav__menu.active {
    transform: translateX(0);
}

.nav__menuClose {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    background: transparent;
    transition: all 0.3s ease;
}

.nav__menuClose:hover {
    border-color: var(--dark);
    background: var(--dark);
}

.nav__menuClose:hover span {
    background: var(--white);
}

.nav__menuClose span {
    position: absolute;
    width: 18px;
    height: 2px;
    background: var(--dark);
    transition: background 0.3s ease;
}

.nav__menuClose span:first-child {
    transform: rotate(45deg);
}

.nav__menuClose span:last-child {
    transform: rotate(-45deg);
}

.nav__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.nav__overlay.active {
    opacity: 1;
    visibility: visible;
}

.nav__menuHeader {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 20px;
    font-weight: 600;
}

.nav__menuLinks {
    margin-bottom: 40px;
}

.nav__menuLink {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    text-decoration: none;
    color: var(--dark);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.nav__menuLink:hover {
    background: var(--primary);
    color: var(--white);
    padding-left: 20px;
    margin-left: -20px;
    margin-right: -20px;
    padding-right: 20px;
}

.nav__menuLink .num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 2px solid var(--primary);
    border-radius: 6px;
    font-size: 12px;
    color: var(--primary);
    font-weight: 700;
}

.nav__menuLink:hover .num {
    border-color: var(--white);
    color: var(--white);
}

.nav__menuInfo {
    margin-top: auto;
    padding-top: 30px;
}

.nav__menuInfo .nav__menuHeader {
    margin-top: 24px;
}

.nav__menuInfo .nav__menuHeader:first-child {
    margin-top: 0;
}

.nav__smallLink {
    color: var(--dark);
    text-decoration: none;
    font-size: 16px;
    display: inline-block;
    margin-bottom: 8px;
}

.nav__menuBottom {
    margin-top: 30px;
}

.nav__menuBottom .button {
    width: 100%;
    background: var(--accent-coral);
    color: var(--white);
    text-align: center;
}

/* =============================================
   BUTTONS
   ============================================= */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: var(--accent-coral);
    color: var(--white);
    text-decoration: none;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(234, 88, 12, 0.4);
}

.button--white {
    background: var(--white);
    color: var(--primary);
}

.button--white:hover {
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.button--outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.button--outline:hover {
    background: var(--white);
    color: var(--primary);
}

.button--dark {
    background: var(--dark);
    color: var(--white);
    border: 2px solid var(--white);
}

.button--dark:hover {
    background: var(--white);
    color: var(--dark);
}

.button--arrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    text-align: center;
}

.button--arrow .arrow {
    padding-left: 10px;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.button--arrow:hover .arrow {
    transform: translateX(4px);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-wrapper {
    background: var(--white);
    padding: 20px;
}

.hero {
    min-height: auto;
    padding: 160px 40px 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: var(--white);
    position: relative;
    min-height: 750px;
    border-radius: 8px;
}

.hero__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 40px;
    max-width: 1000px;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.hero__eyebrow svg {
    width: 16px;
    height: 16px;
    fill: var(--accent-green);
}

.hero__subheading {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #898ea2;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease forwards;
}

.hero__title {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(32px, 11vw, 62px);
    font-weight: 900;
    line-height: 1.03;
    max-width: 1000px;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.1s forwards;
    opacity: 0;
    letter-spacing: -1px;
}

.hero__title strong {
    background-image: linear-gradient(to right, #4362e8, #d36422);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.hero__subtitle {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 20px;
    max-width: 800px;
    font-weight: 200;
    opacity: 0.85;
    margin-bottom: 25px;
    line-height: 2rem;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

/* Hero Benefits Box */
.hero__benefits-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    padding: 24px 40px;
    border-radius: 8px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.3s forwards;
    opacity: 0;
    max-width: 900px;
}

.hero__benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.95);
}

.hero__benefit-icon {
    width: 20px;
    height: 20px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
}

.hero__benefit-text {
    font-family: 'Source Sans 3';
    font-weight: 500;
    white-space: nowrap;
}

.hero__benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.3s forwards;
    opacity: 0;
}

.hero__benefit svg {
    width: 20px;
    height: 20px;
    stroke: #b6c649;
    fill: none;
    stroke-width: 2;
}

.hero__buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.35s forwards;
    opacity: 0;
}

.hero__audioBtn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 28px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    text-decoration: none;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 600;
    font-size: 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero__audioBtn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.hero__audioBtn .play-icon {
    width: 36px;
    height: 36px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.hero__audioBtn:hover .play-icon {
    transform: scale(1.05);
}

.hero__audioBtn .play-icon svg {
    width: 14px;
    height: 14px;
    fill: var(--dark);
    margin-left: 2px;
}

.hero__audioBtn.playing .play-icon svg {
    display: none;
}

.hero__audioBtn.playing .play-icon::after {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--dark);
    border-radius: 2px;
}

/* Audio Waveform Animation */
.audio-bars {
    display: none;
    align-items: center;
    gap: 3px;
    height: 20px;
}

.hero__audioBtn.playing .audio-bars {
    display: flex;
}

.hero__audioBtn.playing .btn-text {
    display: none;
}

.audio-bar {
    width: 3px;
    background: var(--white);
    border-radius: 2px;
    animation: audioWave 0.8s ease-in-out infinite;
}

.audio-bar:nth-child(1) { height: 8px; animation-delay: 0s; }
.audio-bar:nth-child(2) { height: 16px; animation-delay: 0.1s; }
.audio-bar:nth-child(3) { height: 12px; animation-delay: 0.2s; }
.audio-bar:nth-child(4) { height: 18px; animation-delay: 0.3s; }
.audio-bar:nth-child(5) { height: 10px; animation-delay: 0.4s; }

@keyframes audioWave {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.5); }
}

.hero__audioBtn .btn-text {
    transition: opacity 0.3s ease;
}

.hero__ctaBtn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--accent-coral);
    color: var(--white);
    text-decoration: none;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 700;
    font-size: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hero__ctaBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(234, 88, 12, 0.4);
}

.hero__ctaBtn .arrow {
    transition: transform 0.3s ease;
}

.hero__ctaBtn:hover .arrow {
    transform: translateX(4px);
}

/* Hero Stats */
.hero__stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.3s forwards;
}

.hero__stat {
    text-align: center;
}

.hero__stat-number {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 8px;
}

.hero__stat-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
}

/* =============================================
   SECTIONS
   ============================================= */
.section {
    padding: 100px 40px;
}

.section--blue {
    background: var(--primary);
    color: var(--white);
}

.section__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section__title {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(32px, 5vw, 42px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
}

.section__title strong {
    color: var(--accent);
}

/* =============================================
   TRUSTED SECTION
   ============================================= */
.trusted {
    padding: 80px 40px;
    background: var(--white);
    text-align: center;
}

.trusted__inner {
    max-width: 900px;
    margin: 0 auto;
}

.trusted__eyebrow {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.trusted__title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 30px;
}

.trusted__description {
    font-size: 19px;
    color: var(--text-muted);
    line-height: 1.8;
}

/* =============================================
   VIDEO DEMO SECTION
   ============================================= */
.video-demo {
    padding: 100px 40px;
    background: var(--light);
}

.video-demo__inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.video-demo__title {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 2rem;
    letter-spacing: -1.5px;
}

.video-demo__subtitle {
    color: #666;
    margin-bottom: 40px;
    font-size: 17px;
}

.video-demo__player {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 10px;
    padding: 5px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgb(0 0 0 / 50%);
    margin-bottom: 40px;
    position: relative;
    background: linear-gradient(45deg, #4362e8 0%, #d36422 100%);
}

.video-demo__player::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    pointer-events: none;
    z-index: 1;
}

.video-demo__player iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
}

.video-demo__cta {
    margin-top: 20px;
}

.video-demo__cta .button {
    padding: 18px 40px;
    font-size: 16px;
}

/* =============================================
   INDUSTRIES SECTION
   ============================================= */
.industries-intro {
    padding: 60px 40px 20px;
    background: var(--white);
    text-align: center;
}

.industries-intro__subtitle {
    background-image: linear-gradient(to right, #4362e8, #d36422);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    padding-bottom: 15px;
}

.industries {
    padding: 60px 40px 80px 40px;
    background: var(--white);
    color: var(--dark);
}

.industries__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.industries__title {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    line-height: 2rem;
    letter-spacing: -1px;
    width: 90%;
    color: var(--dark);
    margin: 0 auto;
    margin-bottom: 15px;
}

.industries__subtitle {
    text-align: center;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 50px;
}

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

.industry-card {
    background: var(--white);
    border: 1px solid rgb(0 0 0 / 5%);
    border-radius: 16px;
    padding: 40px 24px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.10);
}

.industry-card:hover {
    background: var(--accent);
    transform: translateY(-5px);
    border-color: var(--accent);
}

.industry-card:nth-child(1):hover {
    background: var(--accent-coral);
    border-color: var(--accent-coral);
}

.industry-card:nth-child(3):hover {
    background: var(--accent-green);
    border-color: var(--accent-green);
}

.industry-card:nth-child(4):hover {
    background: var(--accent-coral);
    border-color: var(--accent-coral);
}

.industry-card__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.industry-card__icon svg {
    width: 100%;
    height: 100%;
    color: var(--dark);
}

.industry-card:hover .industry-card__icon svg {
    stroke: var(--white) !important;
}

.industry-card__title {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--dark);
}

.industry-card:hover .industry-card__title {
    color: var(--white);
}

.industry-card__subtitle {
    font-size: 15px;
    color: rgba(0, 0, 0, 0.6);
}

.industry-card:hover .industry-card__subtitle {
    color: var(--white);
}

/* =============================================
   MARQUEE SECTION
   ============================================= */
.marquee-section {
    overflow: hidden;
    background: var(--white);
}

.marquee-row {
    display: flex;
    white-space: nowrap;
    padding: 16px 0;
    background: var(--white);
}

.marquee-row--dark {
    background: #f8f9fa;
}

.marquee-row--accent {
    background: linear-gradient(45deg, #4362e8 0%, #d36422 100%);
}

.marquee-track {
    display: flex;
    animation: marquee 40s linear infinite;
}

.marquee-row--reverse .marquee-track {
    animation-direction: reverse;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 0 24px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dark);
}

.marquee-row--accent .marquee-item {
    color: var(--white);
}

.marquee-star {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.marquee-star svg {
    width: 16px;
    height: 16px;
    fill: var(--dark);
    opacity: 0.4;
}

.marquee-row--accent .marquee-star svg {
    fill: var(--white);
    opacity: 0.6;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials {
    padding: 120px 40px 40px 40px;
    background: var(--light);
}

.testimonials__inner {
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial {
    margin-bottom: 50px;
}

.testimonial__quote {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 600;
    line-height: 1.4;
    color: var(--dark);
    margin-bottom: 20px;
    position: relative;
    padding-left: 30px;
    font-style: italic;
}

.testimonial__quote::before {
    content: '"';
    font-size: 60px;
    color: var(--primary);
    position: absolute;
    left: -10px;
    top: -20px;
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial__author {
    font-weight: 600;
    color: var(--primary);
    padding-left: 30px;
}

.testimonial__company {
    font-size: 14px;
    color: #666;
}

/* =============================================
   HOW IT WORKS - VISUAL DESIGN
   ============================================= */
.how-it-works-visual {
    padding: 100px 40px;
    background: linear-gradient(225deg, #4362e8 0%, #1a1d3a 50%, #091461 100%);
}

.how-it-works-visual__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.how-it-works-visual__subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 17px;
    margin-bottom: 60px;
}

.how-it-works-visual__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

p.threesteps-pre {
    color: #aeb6dc;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    font-weight: 600;
}

p.threesteps {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.7rem;
    color: #c0c9f6;
    padding: 0px 20px;
    margin-bottom: 40px;
}

h2.threesteps {
    text-align: center;
    color: #FFF;
    font-size: clamp(32px, 3.8vw, 42px);
    line-height: 3.2rem;
    max-width: 780px;
    margin: 0 auto;
    padding-top: 10px;
    padding-bottom: 15px;
}

.how-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.how-step__visual {
    width: 100%;
    max-width: 210px;
    margin-bottom: 32px;
}

.how-step__phone {
    position: relative;
    width: 100%;
    aspect-ratio: 9/16;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 32px;
    padding: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    border: 2px solid rgb(120 124 158 / 35%);
}

.how-step__screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(37, 99, 235, 0.1) 0%, rgba(9, 9, 11, 0.8) 100%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.how-step__icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.how-step__icon--design {
    background: linear-gradient(135deg, var(--accent) 0%, #1D4ED8 100%);
    animation: float 3s ease-in-out infinite;
}

.how-step__icon--build {
    background: linear-gradient(135deg, #B6C649 0%, #94A544 100%);
    animation: float 3s ease-in-out infinite 0.5s;
}

.how-step__icon--live {
    background: linear-gradient(135deg, var(--accent-coral) 0%, #C2410C 100%);
    animation: float 3s ease-in-out infinite 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.how-step__icon svg {
    width: 40px;
    height: 40px;
}

.how-step__dots {
    display: flex;
    gap: 8px;
}

.how-step__dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.how-step__dots span:nth-child(2) { animation-delay: 0.3s; }
.how-step__dots span:nth-child(3) { animation-delay: 0.6s; }

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.how-step__progress {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.how-step__progress-bar {
    height: 100%;
    background: #B6C649;
    animation: progressBar 2s ease-in-out infinite;
}

@keyframes progressBar {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

.how-step__checkmarks {
    display: flex;
    gap: 12px;
}

.how-step__checkmarks span {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--accent-coral);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    animation: checkPop 0.8s ease-in-out infinite;
}

.how-step__checkmarks span:nth-child(2) { animation-delay: 0.3s; }
.how-step__checkmarks span:nth-child(3) { animation-delay: 0.6s; }

@keyframes checkPop {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.how-step__content {
    color: var(--white);
}

.how-step__number {
    font-size: 16px;
    font-weight: 600;
    color: #121846;
    margin-bottom: 16px;
    border-radius: 500px;
    background: #B6C649;
    margin: 0 auto;
    margin-bottom: 20px;
    width: 100px;
}

.how-step__number.orange {
    background: #ea580b;
    color: #fff;
}

.how-step__number.blue {
    background: #225be4;
    color: #fff;
}

.how-step__title {
    font-size: 28px;
    line-height: 2.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.how-step__description {
    font-size: 18px;
    line-height: 1.7rem;
    color: rgba(255, 255, 255, 0.7);
}

/* =============================================
   FORM SECTION
   ============================================= */
.form-section {
    padding: 100px 40px;
    position: relative;
}

.form-section__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.form-section__content {
    color: var(--white);
    padding-top: 15%;
}

.form-section__subheading {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
    margin-bottom: 16px;
}

.form-section__title {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.form-section__description {
    font-size: 17px;
    opacity: 0.9;
    line-height: 1.7;
    width: 93%;
}

.form-box {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 1);
}

.form-box h3 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 24px;
    color: var(--dark);
    text-align: center;
}

.form-box p {
    text-align: center;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 14px;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-family: inherit;
    font-size: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(67, 24, 255, 0.1);
}

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

.form-box .button {
    width: 100%;
    padding: 16px;
    font-size: 16px;
}

/* =============================================
   FAQ SECTION
   ============================================= */
.faq-section {
    padding: 100px 40px;
    background: var(--primary);
}

.faq-section__inner {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 4px;
    overflow: hidden;
}

.faq-section__title {
    font-size: clamp(36px, 6vw, 48px);
    line-height: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 16px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: -1px;
}

.faq-section__title .highlight {
    color: #B6C649;
}

.faq-section__subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 17px;
    margin-bottom: 60px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(182, 198, 73, 0.3);
    transform: translateY(-2px);
}

.faq-item__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    cursor: pointer;
}

.faq-item__question {
    font-weight: 600;
    font-size: 17px;
    color: var(--white);
    line-height: 1.5;
    padding-right: 20px;
}

.faq-item__toggle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(182, 198, 73, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-item__toggle svg {
    width: 16px;
    height: 16px;
    stroke: #B6C649;
    fill: none;
    stroke-width: 2;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-item__toggle {
    background: #B6C649;
}

.faq-item.active .faq-item__toggle svg {
    stroke: var(--primary);
    transform: rotate(180deg);
}

.faq-item__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-item__content {
    max-height: 500px;
}

.faq-item__answer {
    padding: 0 28px 24px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 15px;
}

.faq-item__answer a {
    color: #B6C649;
    text-decoration: underline;
}

/* Legacy FAQ (Accordion) */
.faqs {
    padding: 0px 40px 100px 40px;
}

.faqs__inner {
    max-width: 1000px;
    margin: 0 auto;
}

.faqs .section__title {
    color: var(--primary);
    font-size: clamp(36px, 6vw, 72px);
    text-transform: uppercase;
    font-weight: 900;
}

.faqs .section__title strong {
    color: var(--accent);
}

.faq {
    background: var(--white);
    border: 1px solid rgb(45 45 45 / 5%);
    border-radius: 0;
    margin-bottom: 0;
    overflow: visible;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: flex-start;
}

.faq:hover {
    border-color: rgba(0, 0, 0, 0.15);
}

.faq__number {
    position: absolute;
    left: -1px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-right: none;
    background: var(--accent);
    margin-left: -50px;
}

.faq__main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.faq__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 32px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq__title {
    font-weight: 700;
    font-size: 18px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.faq__icon {
    width: 50px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--accent);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    border-left: 1px solid rgba(0, 0, 0, 0.08);
    margin-left: 20px;
    padding-left: 20px;
}

.faq__icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: var(--accent);
    stroke-width: 2;
    transition: transform 0.3s ease;
}

.faq.active .faq__icon svg {
    transform: rotate(180deg);
}

.faq__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq.active .faq__content {
    max-height: 300px;
}

.faq__content p {
    color: var(--primary);
    line-height: 1.7;
    font-size: 16px;
    padding: 0 32px 28px;
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta {
    padding: 120px 40px;
    background: var(--white);
    text-align: center;
}

.cta__inner {
    max-width: 800px;
    margin: 0 auto;
}

.cta__title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.cta__subtitle {
    font-size: 19px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.cta__button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--accent-coral);
    color: var(--white);
    padding: 20px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.cta__button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(234, 88, 12, 0.4);
}

.cta__button svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    transition: transform 0.3s ease;
}

.cta__button:hover svg {
    transform: translateX(4px);
}

.cta__guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    font-size: 14px;
    color: var(--text-muted);
}

.cta__guarantee svg {
    width: 18px;
    height: 18px;
    stroke: var(--accent-green);
    fill: none;
    stroke-width: 2;
}

.cta-button-section {
    padding: 60px 40px;
    text-align: center;
    background: var(--primary);
}

.cta-button-section .button {
    padding: 18px 40px;
    font-size: 16px;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 40px 30px;
}

.footer__inner {
    max-width: 1400px;
    margin: 0 auto;
}

.footer__top {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 50px;
}

.footer__topLeft {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer__topRight {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer__logo {
    margin-bottom: 0;
}

.footer__logo img {
    height: 36px;
    width: auto;
}

.footer__col--social {
    display: block;
}

.footer__col--mobile-social,
.footer__col--mobile-terms {
    display: none;
}

.footer__header {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    opacity: 0.5;
    font-weight: 600;
}

.footer__link {
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    position: relative;
}

.footer__link:hover {
    opacity: 1;
}

.underlink {
    position: relative;
    text-decoration: none;
}

.underlink::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.underlink:hover::after {
    opacity: 1;
}

.footer__row--subscribe {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 30px;
}

.footer__subscribe p {
    font-size: 15px;
    margin-bottom: 16px;
    opacity: 0.8;
}

.subscribe-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
}

.subscribe-form input {
    flex: 1;
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background: transparent;
    color: var(--white);
    font-family: inherit;
    font-size: 14px;
}

.subscribe-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.subscribe-form input:focus {
    outline: none;
    border-color: var(--accent);
}

.subscribe-form .button {
    padding: 14px 20px;
    min-width: auto;
}

.footer__row--links {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.footer__col {
    min-width: 140px;
}

.footer__col a {
    display: block;
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    margin-bottom: 10px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer__col a:hover {
    opacity: 1;
}

.footer__socialLinks {
    display: flex;
    gap: 12px;
    margin-bottom: 8px;
}

.footer__socialLink {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer__socialLink:hover {
    opacity: 1;
}

.footer__socialLink svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.footer__bottom span,
.footer__bottom a {
    opacity: 0.6;
    color: var(--white);
    text-decoration: none;
}

.footer__bottom a:hover {
    opacity: 1;
}

.footer__terms-desktop {
    display: inline;
}

.footer__links {
    display: flex;
    gap: 32px;
}

/* =============================================
   MOBILE FIXED BOTTOM CTA
   ============================================= */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    background: var(--white);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.15);
}

.mobile-cta.visible {
    transform: translateY(0);
}

.mobile-cta .button {
    width: 100%;
    text-align: center;
    padding: 12px 24px;
}

.mobile-cta__btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px !important;
    letter-spacing: 0.5px;
}

.mobile-cta__btn svg {
    width: 20px;
    height: 20px;
    stroke: white;
    fill: none;
    stroke-width: 2;
}

.mobile-cta__guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    margin-top: 5px;
    padding-bottom: 0px;
}

.mobile-cta__guarantee svg {
    width: 14px;
    height: 14px;
    stroke: #4f5474;
    fill: none;
    stroke-width: 2;
}

.mobile-cta__guarantee span {
    font-size: 11px;
    color: #4f5474;
    font-family: 'Source Sans 3';
    font-weight: 500;
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.8s ease forwards;
}

.scroll-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   RESPONSIVE - TABLET
   ============================================= */
@media (max-width: 1024px) {
    .form-section__inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }

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

    .footer__top {
        flex-direction: column;
    }

    .footer__row--links {
        gap: 40px;
    }

    .nav__menu {
        width: 70%;
    }

    .how-it-works-visual__grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .form-section__inner {
        text-align: center;
    }

    .form-section__content {
        padding-top: 40px;
    }

    .nav__links {
        display: none;
    }
}

/* =============================================
   RESPONSIVE - MOBILE
   ============================================= */
@media (max-width: 768px) {
    .nav {
        padding: 20px 0;
    }

    .nav__ctaButton {
        display: none;
    }

    .mobile-cta {
        display: block;
    }

    .hero-wrapper {
        padding: 12px;
    }

    .hero {
        padding: 100px 24px 80px;
        min-height: auto;
    }

    .hero__content {
        padding-top: 30px;
    }

    .hero__benefits {
        gap: 16px 24px;
    }

    .hero__benefit {
        font-size: 13px;
    }

    .hero__buttons {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
    }

    .hero__audioBtn,
    .hero__ctaBtn {
        width: 100%;
        justify-content: center;
    }

    .hero__stats {
        gap: 40px;
    }

    .hero__stat-number {
        font-size: 36px;
    }

    .faq__number {
        display: none;
    }

    .video-demo {
        padding: 60px 24px;
    }

    .section {
        padding: 80px 24px;
    }

    .faqs {
        padding: 80px 10px;
    }

    .form-section {
        padding: 80px 24px;
    }

    .testimonials {
        padding: 80px 24px;
        background: #f8f9fb;
    }

    .industries {
        padding: 80px 24px;
        background: var(--white);
    }

    .industries-intro {
        padding: 40px 24px 20px;
        background: var(--white);
    }

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

    .form-box {
        padding: 30px 24px;
    }

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

    .footer {
        padding: 50px 24px 100px;
    }

    .footer__col--social {
        display: none;
    }

    .footer__col--mobile-social,
    .footer__col--mobile-terms {
        display: block;
    }

    .footer__terms-desktop {
        display: none;
    }

    .footer__row--links {
        flex-direction: column;
        gap: 30px;
    }

    .subscribe-form {
        flex-direction: column;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .nav__bar {
        padding: 0 24px 0px 36px;
    }

    .nav__menu {
        width: 100%;
        max-width: none;
        padding: 100px 30px 40px;
    }

    .how-it-works-visual,
    .faq-section {
        padding: 80px 24px;
    }

    .how-step__phone {
        max-width: 240px;
        margin: 0 auto;
    }

    .hero__benefits-box {
        gap: 3px 24px;
        padding: 0px 20px;
    }

    .hero__benefit {
        font-size: 13px;
        flex: 0 0 calc(50% - 12px);
    }

    .hero__benefit-icon {
        width: 18px;
        height: 18px;
    }

    .hero__subtitle {
        font-size: 18px;
        line-height: 26px;
        font-family: 'Source Sans 3';
    }

    .hero__benefit-text {
        font-size: 16px;
    }

    .hero__subheading {
        font-size: 12.5px;
        letter-spacing: 1px;
        display: none;
    }

    h2.threesteps {
        line-height: 2.5rem;
    }

    .footer__col a {
        float: left !important;
    }

    .trusted, .cta {
        padding: 80px 24px;
    }
}

@media (max-width: 480px) {
    .hero__benefits-box {
        padding: 0px 20px;
        gap: 6px;
    }

    .hero__benefit {
        flex: 0 0 100%;
        font-size: 13px;
    }

    h2.threesteps {
        line-height: 2rem;
    }
}
