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

body {
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: #ffffff;
    color: #000000;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hero {
    padding: 0 0 40px 0;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    background: #000000;
    color: #ffffff;
}

.hero header {
    width: 100%;
}

.hero header .flex {
    padding-top: 6px !important;
}

@media (min-width: 768px) {
    .hero header .flex {
        padding-top: 24px !important;
    }
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 600px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.3) 70%, rgba(255, 255, 255, 0.6) 85%, rgba(255, 255, 255, 1) 100%);
    pointer-events: none;
    z-index: 2;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

/* Logo (deprecated - now using navbar logo) */
.logo {
    margin-bottom: 40px;
    margin-top: 80px;
    display: flex;
    justify-content: center;
}

.logo img {
    height: 55px;
    width: auto;
}

@media (min-width: 768px) {
    .logo {
        margin-top: 240px;
    }
    
    .logo img {
        height: 60px;
    }
}

/* Headline */
.headline {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 30px;
    margin-top: 20px;
    letter-spacing: -0.025em;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    color: rgba(255, 255, 255, 0.7);
}

.strikethrough {
    display: block;
    text-decoration: line-through;
    text-decoration-color: rgba(255, 255, 255, 0.4);
    text-decoration-thickness: 2px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 20px;
    font-size: 26px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    font-weight: 400;
}

.main-text {
    display: block;
    color: #f8fafc;
    word-wrap: break-word;
    overflow-wrap: break-word;
    font-size: 32px;
    font-weight: 600;
}

@media (min-width: 768px) {
    .headline {
        font-size: 48px;
        margin-top: 120px;
    }
    
    .strikethrough {
        font-size: 42px;
    }
    
    .main-text {
        font-size: inherit;
    }
}

/* Subheading */
.subheading {
    font-size: 18px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.7);
    font-style: normal;
    font-weight: 400;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

@media (min-width: 768px) {
    .subheading {
        font-size: 19px;
    }
}

/* Hero CTA Button */
.button-hero {
    cursor: pointer;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.25s ease;
    background: radial-gradient(65.28% 65.28% at 50% 100%,
        rgba(99, 102, 241, 0.6) 0%,
        rgba(129, 140, 248, 0.3) 50%,
        rgba(99, 102, 241, 0) 100%),
      linear-gradient(135deg, #4338ca, #6366f1, #8b5cf6);
    border-radius: 9999px;
    border: none;
    outline: none;
    padding: 18px 36px;
    min-height: 56px;
    text-decoration: none;
    box-shadow: 0 8px 25px -8px rgba(99, 102, 241, 0.6),
                0 0 0 1px rgba(255, 255, 255, 0.1);
}

.button-hero::before,
.button-hero::after {
    content: "";
    position: absolute;
    transition: all 0.5s ease-in-out;
    z-index: 0;
}

.button-hero::before {
    inset: 1px;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.2) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0) 100%);
    border-radius: 9999px;
}

.button-hero::after {
    inset: 2px;
    background: radial-gradient(65.28% 65.28% at 50% 100%,
        rgba(99, 102, 241, 0.4) 0%,
        rgba(129, 140, 248, 0.2) 50%,
        rgba(99, 102, 241, 0) 100%),
      linear-gradient(135deg, #4338ca, #6366f1, #8b5cf6);
    border-radius: 9999px;
}

.button-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px -8px rgba(99, 102, 241, 0.8),
                0 0 0 1px rgba(255, 255, 255, 0.2);
}

.button-hero:active {
    transform: translateY(-1px) scale(0.98);
}

.button-hero .inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
}

.button-hero .icon {
    width: 20px;
    height: 20px;
    transition: transform 0.25s ease;
}

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

.points_wrapper {
    overflow: hidden;
    width: 100%;
    height: 100%;
    pointer-events: none;
    position: absolute;
    z-index: 1;
}

.points_wrapper .point {
    bottom: -10px;
    position: absolute;
    animation: floating-points infinite ease-in-out;
    pointer-events: none;
    width: 2px;
    height: 2px;
    background-color: #c7d2fe;
    border-radius: 9999px;
    box-shadow: 0 0 4px rgba(199, 210, 254, 0.8);
}

@keyframes floating-points {
    0% {
        transform: translateY(0);
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
    85% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-60px);
        opacity: 0;
    }
}

.points_wrapper .point:nth-child(1) {
    left: 15%;
    opacity: 0.9;
    animation-duration: 2.8s;
    animation-delay: 0.3s;
}

.points_wrapper .point:nth-child(2) {
    left: 25%;
    opacity: 0.7;
    animation-duration: 3.2s;
    animation-delay: 0.7s;
}

.points_wrapper .point:nth-child(3) {
    left: 35%;
    opacity: 0.8;
    animation-duration: 2.5s;
    animation-delay: 0.5s;
}

.points_wrapper .point:nth-child(4) {
    left: 45%;
    opacity: 0.85;
    animation-duration: 3s;
    animation-delay: 1s;
}

.points_wrapper .point:nth-child(5) {
    left: 55%;
    opacity: 0.75;
    animation-duration: 2.7s;
    animation-delay: 0.2s;
}

.points_wrapper .point:nth-child(6) {
    left: 65%;
    opacity: 0.9;
    animation-duration: 3.3s;
    animation-delay: 0.9s;
}

.points_wrapper .point:nth-child(7) {
    left: 75%;
    opacity: 0.8;
    animation-duration: 2.9s;
    animation-delay: 0.4s;
}

.points_wrapper .point:nth-child(8) {
    left: 85%;
    opacity: 0.7;
    animation-duration: 3.1s;
    animation-delay: 0.6s;
}

.points_wrapper .point:nth-child(9) {
    left: 90%;
    opacity: 0.85;
    animation-duration: 2.6s;
    animation-delay: 0.8s;
}

.points_wrapper .point:nth-child(10) {
    left: 95%;
    opacity: 0.75;
    animation-duration: 3.4s;
    animation-delay: 0.1s;
}

/* Talk to AI Button */
.talk-to-ai-button {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    leading: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 16px 32px;
    min-height: 56px;
    min-width: 160px;
    border-radius: 9999px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

.talk-to-ai-button:hover {
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.button-shine {
    position: absolute;
    inset: 0;
    z-index: 0;
    transform: translateX(-100%);
    transition: transform 0.3s ease-out;
    background: rgba(255, 255, 255, 0.05);
}

.talk-to-ai-button:hover .button-shine {
    transform: translateX(0);
}

.button-content {
    display: flex;
    position: relative;
    overflow: hidden;
    font-weight: 600;
    align-items: center;
    justify-content: center;
    gap: 8px;
    z-index: 10;
}

.play-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-icon svg {
    color: white;
}

.button-text {
    display: inline-block;
    transition: color 0.3s ease;
    position: relative;
    z-index: 10;
    color: white;
    font-size: 16px;
    font-weight: 600;
}

.talk-to-ai-button:hover .button-text {
    color: white;
}

@media (min-width: 640px) {
    .talk-to-ai-button {
        width: auto;
    }
}

/* Availability */
.availability {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Hero section availability text shadow */
.hero .availability {
    text-shadow: 0 2px 8px rgba(99, 102, 241, 0.4), 0 0 12px rgba(139, 92, 246, 0.3);
}

.indicator {
    width: 12px;
    height: 12px;
    background: #4ade80;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Results Carousel */
.results-carousel {
    width: 100vw;
    overflow: visible;
    padding: 0;
    position: relative;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    margin-bottom: 0px;
    z-index: 100;
}

.carousel-track {
    display: flex;
    gap: 20px;
    animation: scroll 8s linear infinite;
    width: fit-content;
    padding: 20px 0;
}

@media (min-width: 768px) {
    .carousel-track {
        animation: scroll 40s linear infinite;
    }
}

.carousel-track img {
    height: 180px;
    width: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    filter: brightness(1.05) contrast(1.05);
}

.carousel-track img:hover {
    transform: scale(1.05);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 30px 15px 40px 15px;
    }

    .container {
        padding: 0 15px;
    }
    
    /* Consistent section spacing on mobile */
    section {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }
    
    .hero {
        padding-top: 30px !important;
        padding-bottom: 35px !important;
    }

    .logo {
        margin-bottom: 40px;
    }

    .logo img {
        height: 45px;
    }

    .headline {
        font-size: 28px;
        margin-bottom: 25px;
        line-height: 1.3;
    }

    .strikethrough {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .subheading {
        font-size: 16px;
        margin-bottom: 30px;
        padding: 0;
    }

    .cta-button {
        font-size: 18px;
        padding: 16px 40px;
        width: 90%;
        max-width: 400px;
    }
    
    .button-hero .inner {
        font-size: 14px;
    }

    .availability {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .results-carousel {
        padding: 0;
    }

    .carousel-track {
        gap: 15px;
    }

    .carousel-track img {
        height: 140px;
        filter: brightness(1.1) contrast(1.1);
    }
    
    /* Scale down stats section button on mobile */
    .stats-section a[href="/book-a-call"] {
        padding: 11px 26px !important;
        font-size: 0.85rem !important;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 30px 10px 40px 10px;
    }

    .container {
        padding: 0 10px;
    }
    
    /* Consistent section spacing on small mobile */
    section {
        padding-top: 35px !important;
        padding-bottom: 35px !important;
    }
    
    .hero {
        padding-top: 25px !important;
        padding-bottom: 35px !important;
    }

    .logo {
        margin-bottom: 30px;
    }

    .logo img {
        height: 40px;
    }

    .headline {
        font-size: 22px;
        margin-bottom: 20px;
        line-height: 1.3;
        letter-spacing: 0.5px;
    }

    .strikethrough {
        font-size: 18px;
        margin-bottom: 12px;
        text-decoration-thickness: 2px;
    }

    .subheading {
        font-size: 14px;
        margin-bottom: 25px;
        padding: 0;
        line-height: 1.6;
    }

    .cta-button {
        font-size: 15px;
        padding: 16px 30px;
        width: 95%;
        max-width: 100%;
        border-radius: 40px;
    }
    
    .button-hero .inner {
        font-size: 13px;
    }

    .availability {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }

    .results-carousel {
        padding: 0;
    }

    .carousel-track {
        gap: 12px;
    }

    .carousel-track img {
        height: 110px;
        border-radius: 12px;
        filter: brightness(1.15) contrast(1.15);
    }

    .demo-section {
        padding-top: 0 !important;
        margin-top: -20px !important;
    }

    .results-carousel {
        margin-bottom: -20px !important;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .hero {
        padding: 25px 8px;
    }

    .container {
        padding: 0 8px;
    }

    .headline {
        font-size: 19px;
        letter-spacing: 0.3px;
    }

    .strikethrough {
        font-size: 16px;
    }

    .subheading {
        font-size: 13px;
    }

    .cta-button {
        font-size: 14px;
        padding: 14px 25px;
    }
    
    .button-hero .inner {
        font-size: 12px;
    }

    .carousel-track img {
        height: 100px;
        filter: brightness(1.2) contrast(1.2);
    }
    
    /* Further scale down stats section button on small mobile */
    .stats-section a[href="/book-a-call"] {
        padding: 10px 22px !important;
        font-size: 0.8rem !important;
    }
}

/* How It Works Section */
.how-it-works {
    padding: 60px 20px 60px 20px;
    background: #ffffff;
    overflow: hidden;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.how-it-works .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 40px;
}

/* Inner card with glass effect */
.how-it-works .inner-card {
    position: relative;
    padding: 30px 2px;
    border: 1px solid rgba(64, 64, 64, 0.35);
    border-radius: 24px;
    margin: 0;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Gradient background matching inner card size - behind everything */
.how-it-works .inner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/backgrounds/gradient-1.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 24px;
    transform: scaleY(-1);
    z-index: -1;
}

/* Dark translucent overlay on top of gradient */
.how-it-works .inner-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(17, 17, 17, 0.7);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    z-index: 0;
    pointer-events: none;
}

/* Ensure content is above the overlay */
.how-it-works .inner-card > * {
    position: relative;
    z-index: 1;
}

@media (min-width: 640px) {
    .how-it-works .inner-card {
        padding: 40px 30px;
        margin: 0 16px;
    }
}

@media (min-width: 1024px) {
    .how-it-works .inner-card {
        padding: 60px 40px;
        margin: 0 24px;
    }
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #111827;
    letter-spacing: -0.025em;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Section title inside inner-card should be white */
.how-it-works .inner-card .section-title {
    color: #ffffff;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 45px;
    margin-bottom: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
    overflow: visible;
}

.feature-icon {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    filter: drop-shadow(0 2px 8px rgba(200, 200, 220, 0.15));
}

.feature-icon svg {
    width: 80px;
    height: 80px;
}

/* Live Transcript Styles */
.feature-icon.live-transcript {
    height: 260px;
    overflow: visible;
    padding-bottom: 8px;
}

.transcript-card {
    width: 100%;
    max-width: 350px;
    height: 100%;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(23, 23, 23, 0.6);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(200, 200, 220, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.transcript-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.transcript-label {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.transcript-status {
    display: flex;
    align-items: center;
    gap: 12px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 500;
    color: rgb(134, 239, 172);
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 9999px;
    padding: 4px 8px;
}

.status-dot {
    height: 6px;
    width: 6px;
    border-radius: 50%;
    background: rgb(74, 222, 128);
    animation: pulse 2s infinite;
}

.transcript-time {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.transcript-body {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 200px;
    overflow-y: auto;
}

.message-row {
    display: flex;
    align-items: start;
    gap: 8px;
}

.message-row.bot-message {
    justify-content: flex-start;
}

.message-row.user-message {
    justify-content: flex-end;
}

.avatar {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bot-avatar {
    background: linear-gradient(135deg, rgb(59, 130, 246), rgb(147, 51, 234));
}

.bot-avatar svg {
    color: white;
}

.user-avatar {
    width: 16px;
    height: 16px;
    background: rgb(64, 64, 64);
}

.user-avatar svg {
    color: rgb(212, 212, 212);
}

.message-bubble {
    border-radius: 12px;
    padding: 8px 12px;
}

.bot-bubble {
    background: rgba(38, 38, 38, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.bot-bubble p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    margin: 0;
}

.user-bubble {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(37, 99, 235, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.2);
    max-width: 200px;
}

.user-bubble span {
    font-size: 12px;
    color: rgb(191, 219, 254);
}

/* Calendar Integration Styles */
.feature-icon.calendar-integration {
    height: 260px;
    overflow: visible;
    padding-bottom: 8px;
}

.calendar-card {
    width: 100%;
    max-width: 350px;
    height: 100%;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(23, 23, 23, 0.6);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(200, 200, 220, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    display: flex;
    flex-direction: column;
}

.calendar-content {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.calendar-inner {
    background: rgba(10, 10, 10, 0.8);
    flex: 1;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.calendar-header {
    padding: 8px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.calendar-month {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.booking-status {
    display: flex;
    align-items: center;
    gap: 6px;
}

.booking-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgb(74, 222, 128);
    animation: pulse 2s infinite;
}

.booking-text {
    font-size: 10px;
    font-weight: 500;
    color: rgb(134, 239, 172);
}

.calendar-body {
    padding: 12px;
    display: flex;
    gap: 12px;
    flex: 1;
}

.calendar-grid-section {
    flex: 1;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    font-size: 9px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    margin-bottom: 8px;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    font-size: 9px;
}

.calendar-days > div {
    text-align: center;
    padding: 4px 2px;
    border-radius: 4px;
}

.day-prev {
    color: rgba(255, 255, 255, 0.3);
}

.day-current {
    color: rgba(255, 255, 255, 0.8);
}

.day-booked {
    background: rgba(59, 130, 246, 0.2);
    color: rgb(191, 219, 254);
}

.day-booked-alt {
    background: rgba(34, 197, 94, 0.2);
    color: rgb(187, 247, 208);
}

.day-selected {
    background: rgba(34, 197, 94, 0.3);
    color: rgb(240, 253, 244);
    font-weight: 600;
}

.booking-details {
    width: 96px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.detail-item {
    font-size: 10px;
    text-align: left;
}

.detail-label {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2px;
    text-align: left;
}

.detail-value {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-align: left;
}

.sync-status {
    display: flex;
    align-items: center;
    gap: 4px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
}

.sync-status svg {
    color: rgb(74, 222, 128);
    width: 10px;
    height: 10px;
    flex-shrink: 0;
}

.sync-status span {
    font-size: 9px;
    color: rgb(74, 222, 128);
}

.calendar-footer {
    padding: 12px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.calendar-footer svg {
    flex-shrink: 0;
}

.calendar-footer span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Analytics Dashboard Styles */
.feature-icon.analytics-dashboard {
    height: 260px;
    overflow: visible;
    padding-bottom: 8px;
}

.analytics-card {
    width: 100%;
    max-width: 350px;
    height: 100%;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(23, 23, 23, 0.6);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(200, 200, 220, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    display: flex;
    flex-direction: column;
}

.analytics-content {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.analytics-inner {
    background: rgba(10, 10, 10, 0.8);
    flex: 1;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.analytics-header {
    padding: 8px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.analytics-title {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.analytics-live {
    display: flex;
    align-items: center;
    gap: 4px;
}

.live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgb(74, 222, 128);
    animation: pulse 2s infinite;
}

.live-text {
    font-size: 10px;
    color: rgb(134, 239, 172);
}

.analytics-body {
    padding: 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

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

.metric-card {
    border-radius: 12px;
    padding: 8px;
    border: 1px solid;
}

.metric-blue {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(37, 99, 235, 0.05));
    border-color: rgba(59, 130, 246, 0.2);
}

.metric-green {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(22, 163, 74, 0.05));
    border-color: rgba(34, 197, 94, 0.2);
}

.metric-label {
    font-size: 9px;
    margin-bottom: 2px;
}

.metric-blue .metric-label {
    color: rgb(147, 197, 253);
}

.metric-green .metric-label {
    color: rgb(134, 239, 172);
}

.metric-value {
    font-size: 18px;
    font-weight: 700;
}

.metric-blue .metric-value {
    color: rgb(219, 234, 254);
}

.metric-green .metric-value {
    color: rgb(240, 253, 244);
}

.metric-change {
    font-size: 8px;
}

.metric-blue .metric-change {
    color: rgba(147, 197, 253, 0.7);
}

.metric-green .metric-change {
    color: rgba(134, 239, 172, 0.7);
}

.chart-section {
    margin-top: 12px;
}

.chart-title {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 4px;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 24px;
}

.bar {
    width: 8px;
    background: rgb(59, 130, 246);
    border-radius: 4px 4px 0 0;
}

.bar-1 {
    height: 12px;
    opacity: 0.3;
}

.bar-2 {
    height: 20px;
    opacity: 0.4;
}

.bar-3 {
    height: 8px;
    opacity: 0.5;
}

.bar-4 {
    height: 24px;
    opacity: 0.6;
}

.bar-5 {
    height: 16px;
    opacity: 0.7;
}

.bar-6 {
    height: 24px;
    opacity: 0.8;
}

.bar-7 {
    height: 20px;
    opacity: 0.9;
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 4px;
    font-size: 8px;
    color: rgba(255, 255, 255, 0.4);
}

/* Pipeline Card Styles */
.feature-icon.pipeline-card {
    height: 260px;
    overflow: visible;
    padding-bottom: 8px;
}

.pipeline-container {
    width: 100%;
    max-width: 350px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(23, 23, 23, 0.6);
    overflow: hidden;
    padding: 10px 16px 16px 16px;
    box-shadow: 0 2px 8px rgba(200, 200, 220, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    height: 100%;
}

.pipeline-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    gap: 8px;
}

.pipeline-title {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.2;
}

.pipeline-roas {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    font-weight: 500;
    color: rgb(134, 239, 172);
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 9999px;
    padding: 4px 8px;
    flex-shrink: 0;
}

.pipeline-roas svg {
    color: rgb(74, 222, 128);
    width: 10px;
    height: 10px;
}

.pipeline-steps {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pipeline-step {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 10px;
    border-radius: 8px;
    background: rgba(38, 38, 38, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.pipeline-step:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(38, 38, 38, 0.8);
}

.pipeline-step-faded {
    opacity: 0.5;
}

.step-content {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 0;
}

.step-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid;
}

.step-icon-blue {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

.step-icon-blue svg {
    color: rgb(96, 165, 250);
    width: 14px;
    height: 14px;
}

.step-icon-purple {
    background: rgba(168, 85, 247, 0.15);
    border-color: rgba(168, 85, 247, 0.3);
}

.step-icon-purple svg {
    color: rgb(192, 132, 252);
    width: 14px;
    height: 14px;
}

.step-icon-green {
    background: rgba(34, 197, 94, 0.15);
    border-color: rgba(34, 197, 94, 0.3);
}

.step-icon-green svg {
    color: rgb(74, 222, 128);
    width: 14px;
    height: 14px;
}

.step-info {
    flex: 1;
    min-width: 0;
    text-align: left;
}

.step-name {
    font-size: 10px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1px;
    line-height: 1.2;
    text-align: left;
}

.step-desc {
    font-size: 8px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.2;
    text-align: left;
}

.step-status {
    font-size: 9px;
    font-weight: 600;
    color: rgb(134, 239, 172);
    white-space: nowrap;
    flex-shrink: 0;
}

.feature-title {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.feature-description {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.feature-description strong {
    color: #ffffff;
    font-weight: 700;
}

/* Qualification Section */
.qualification-section {
    padding: 10px 0px 60px 0px !important;
    background: #ffffff;
}

.qualification-section .container {
    width: 100% !important;
    max-width: 1400px;
    margin: 0 auto !important;
    padding: 0 20px !important;
    box-sizing: border-box;
}

@media (min-width: 640px) {
    .qualification-section {
        padding: 40px 20px !important;
    }
    
    .qualification-section .container {
        width: 100% !important;
        margin: 0 auto !important;
        padding: 0 20px !important;
    }
}

.qualification-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: #0f172a;
    margin-bottom: 60px;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

@media (min-width: 768px) {
    .qualification-title {
        font-size: 2.5rem;
    }
}

.qualification-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
    overflow: visible;
    box-sizing: border-box;
    width: 100%;
}

.phone-mockup {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow: visible;
}

.phone-mockup img {
    max-width: 100%;
    height: auto;
    display: block;
}

.phone-mockup .gradient-bg-wrapper {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    aspect-ratio: 3 / 5;
    min-height: 700px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 36px;
    overflow: visible;
}

.phone-mockup article {
    width: 100%;
    max-width: 100%;
    min-height: 100%;
    height: auto;
    box-sizing: border-box;
    border-radius: 36px;
}

.phone-mockup article h3 {
    text-align: left;
    margin-bottom: 16px;
}

.phone-mockup article h4 {
    margin-bottom: 12px;
    text-align: left;
}

.phone-mockup article p {
    line-height: 1.5;
    max-width: 100%;
    word-wrap: break-word;
    font-size: 0.875rem;
    text-align: left;
}

/* Ensure paragraphs take exactly 3 lines */
.phone-mockup article .mb-6 p,
.phone-mockup article .mb-8 p {
    max-width: 260px;
    line-height: 1.5;
    display: block;
    text-align: left;
}

@media (max-width: 968px) {
    .phone-mockup article .mb-6 p,
    .phone-mockup article .mb-8 p {
        max-width: 240px;
    }
}

@media (max-width: 640px) {
    .phone-mockup article .mb-6 p,
    .phone-mockup article .mb-8 p {
        max-width: 200px;
    }
}

.qualification-text {
    color: rgba(0, 0, 0, 0.85);
    text-align: left;
    overflow-wrap: break-word;
    word-wrap: break-word;
    width: 100%;
    max-width: 100%;
}

.intro-text {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 24px;
    text-align: left;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.85);
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
}

.selection-text {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: rgba(0, 0, 0, 0.85);
}

.criteria-heading {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 32px;
    color: #000000;
    text-align: left;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.heading-icon {
    flex-shrink: 0;
    color: #000000;
    opacity: 0.85;
}

.fit-heading {
    margin-top: 32px;
}

.not-fit-heading {
    margin-top: 32px;
}

.criteria-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.criteria-list li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 14px;
    padding-left: 36px;
    position: relative;
    text-align: left;
    color: rgba(0, 0, 0, 0.85);
    font-weight: 400;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
}

.fit-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #22c55e;
    font-size: 18px;
    font-weight: 900;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 4px;
}

.not-fit-list li::before {
    content: "×";
    position: absolute;
    left: 0;
    top: 0;
    color: #ef4444;
    font-size: 24px;
    font-weight: 900;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 4px;
}

.integration-text {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: rgba(0, 0, 0, 0.85);
    text-align: left;
    font-weight: 400;
}

.closing-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: left;
    color: rgba(0, 0, 0, 0.85);
    font-weight: 500;
}

.review-text {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 32px;
    font-style: italic;
    color: rgba(0, 0, 0, 0.7);
}

.qualification-cta {
    text-align: left;
    display: inline-block;
}

.qualification-cta .cta-button {
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 18px 48px;
    background: #000000;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
    border-radius: 9999px;
    border: 2px solid #000000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    margin-bottom: 20px;
}

.qualification-cta .cta-button:hover {
    background: transparent;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.qualification-cta .availability {
    width: 100%;
    justify-content: center;
    text-align: center;
    color: #000000;
}

/* Section CTA */
.section-cta {
    text-align: center;
    margin-top: 10px;
}

.section-cta .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 48px;
    background: #ffffff;
    color: #000000;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
    border-radius: 9999px;
    border: 2px solid #ffffff;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
    white-space: nowrap;
    text-align: center;
}

.section-cta .cta-button:hover {
    background: transparent;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

/* Complete System Section */
.complete-system-section {
    padding: 10px 0px 60px 0px !important;
    background: #ffffff;
    position: relative;
    overflow: visible;
}

@media (min-width: 640px) {
    .complete-system-section {
        padding: 40px 20px !important;
    }
}

.complete-system-section .container {
    max-width: 1400px;
    margin: 0 auto !important;
    position: relative;
    padding: 0 !important;
}

@media (min-width: 640px) {
    .complete-system-section .container {
        margin: 0 auto !important;
        padding: 0 20px !important;
    }
}

/* Inner translucent card */
.complete-system-section .inner-card {
    width: calc(100% - 20px);
    max-width: 100%;
    padding: 30px 20px;
    margin: 0 10px;
    background: url('../images/backgrounds/gradient-1.webp') center/cover no-repeat;
    border-radius: 20px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

@media (min-width: 640px) {
    .complete-system-section .inner-card {
        border-radius: 24px;
        margin: 0;
        padding: 40px 30px;
        width: 100%;
    }
}

@media (min-width: 1024px) {
    .complete-system-section .inner-card {
        padding: 60px 40px;
    }
}

.complete-system-section .inner-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(17, 17, 17, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(64, 64, 64, 0.35);
    border-radius: inherit;
    z-index: 0;
}

.complete-system-section .inner-card > * {
    position: relative;
    z-index: 1;
}

@media (min-width: 640px) {
    .complete-system-section .inner-card {
        padding: 40px 30px;
    }
}

@media (min-width: 1024px) {
    .complete-system-section .inner-card {
        padding: 60px 40px;
    }
}

.system-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: left;
    color: #ffffff;
    margin-bottom: 40px;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

@media (min-width: 1024px) {
    .system-title {
        font-size: 2.5rem;
        margin-bottom: 60px;
    }
}

.system-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 80px;
    align-items: start;
    max-width: 100%;
    overflow: hidden;
}

.benefits-list {
    color: rgba(255, 255, 255, 0.9);
    max-width: 100%;
    overflow: hidden;
}

.system-intro {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.95);
    text-align: left;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
}

.features-subtitle {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 28px;
    letter-spacing: 0.3px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 10px;
}

.subtitle-icon {
    flex-shrink: 0;
    color: #ffffff;
    width: 24px;
    height: 24px;
}

.price-highlight {
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
}

.benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits li {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    align-items: flex-start;
}

.benefit-icon {
    flex-shrink: 0;
    color: #ffffff;
    width: 24px;
    height: 24px;
    margin-top: 2px;
}

.benefit-text {
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    max-width: 100%;
}

.benefit-text strong {
    color: #ffffff;
    font-weight: 700;
}

.bonus-item {
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.system-cta {
    margin-top: 40px;
    margin-bottom: 15px;
    text-align: left;
    padding: 0 15px 15px 15px;
    margin-left: -15px;
    margin-right: -15px;
}

.system-cta .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 48px;
    background: #ffffff;
    color: #000000;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
    border-radius: 9999px;
    border: 2px solid #ffffff;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
    white-space: nowrap;
}

.system-cta .cta-button:hover {
    background: transparent;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

.phone-showcase {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: sticky;
    top: 100px;
}

.phone-showcase img {
    max-width: 100%;
    height: auto;
}

.complete-system-section .phone-showcase {
    position: static;
}

.complete-system-section .phone-showcase img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.section-cta .cta-button {
    margin-bottom: 15px;
}

/* Who Are We Section */
.who-we-are-section {
    padding: 20px 0px 40px 0px !important;
    background: #ffffff;
    overflow: visible;
}

@media (min-width: 640px) {
    .who-we-are-section {
        padding: 40px 20px !important;
    }
}

.who-we-are-section .container {
    width: calc(100% - 20px);
    max-width: 1200px;
    margin: 0 10px !important;
    padding: 30px 20px !important;
    background: url('../images/backgrounds/gradient-3.webp') center/cover no-repeat;
    background-color: #1a1a2e;
    border: none;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

@media (min-width: 640px) {
    .who-we-are-section .container {
        margin: 0 auto !important;
        padding: 50px 40px !important;
        width: 100%;
    }
}

.who-we-are-section .container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(17, 17, 17, 0.7);
    backdrop-filter: blur(20px);
    border-radius: inherit;
    z-index: 0;
}

.who-we-are-section .container > * {
    position: relative;
    z-index: 1;
}

.who-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: #ffffff;
    margin-bottom: 40px;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .who-title {
        font-size: 2.5rem;
    }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
}

.google-rating-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.google-rating-image {
    max-width: 100%;
    height: auto;
    max-height: 80px;
}

.stat-value {
    font-size: 44px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

.who-description {
    max-width: 900px;
    margin: 0 auto 35px;
}

.who-text {
    font-size: 17px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.who-text .emphasis {
    color: #ffffff;
    font-weight: 600;
}

.who-cta {
    text-align: center;
}

.who-cta .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 48px;
    background: #ffffff;
    color: #000000;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
    border-radius: 9999px;
    border: 2px solid #ffffff;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
    white-space: nowrap;
    margin-bottom: 20px;
}

.who-cta .cta-button:hover {
    background: transparent;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

.who-cta .availability {
    justify-content: center;
    color: #ffffff;
}

/* Testimonials Section */
.testimonials-section {
    padding: 60px 5px !important;
    background: #ffffff;
    overflow: hidden;
}

@media (min-width: 768px) {
    .testimonials-section {
        padding: 40px 20px !important;
    }
}

.testimonials-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: #0f172a;
    margin-bottom: 60px;
    line-height: 1.2;
    letter-spacing: -0.025em;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .testimonials-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 768px) {
    .testimonials-title {
        padding: 0;
    }
}

.testimonials-row {
    margin-bottom: 20px;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 20px;
    width: fit-content;
}

.testimonials-row-left .testimonials-track {
    animation: scrollLeft 40s linear infinite;
}

.testimonials-row-right .testimonials-track {
    animation: scrollRight 40s linear infinite;
}

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

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

.testimonial-card {
    flex-shrink: 0;
    width: 300px;
    padding: 24px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-card {
    background: #1a1a2e;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 240px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/backgrounds/gradient-2.webp') center/cover no-repeat;
    background-size: 100% 100%;
    z-index: 0;
}

.stat-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(17, 17, 17, 0.6);
    z-index: 1;
}

.stat-card > * {
    position: relative;
    z-index: 10;
}

.stat-number {
    font-size: 58px;
    font-weight: 900;
    color: #ffffff !important;
    line-height: 1;
    margin-bottom: 8px;
    position: relative;
    z-index: 100 !important;
    transform: translateZ(0);
}

.stat-text {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff !important;
    line-height: 1.2;
    margin-bottom: 16px;
    position: relative;
    z-index: 100 !important;
    transform: translateZ(0);
}

.stat-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9) !important;
    line-height: 1.4;
    max-width: 220px;
    position: relative;
    z-index: 100 !important;
    transform: translateZ(0);
}

.client-card {
    background: #e0e7ff;
    display: flex;
    flex-direction: column;
    min-height: 240px;
    position: relative;
    overflow: hidden;
}

.client-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/backgrounds/gradient-2.webp') center/cover no-repeat;
    background-size: 100% 100%;
    z-index: 0;
}

.client-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.85);
    z-index: 1;
}

.client-card > * {
    position: relative;
    z-index: 2;
}

.client-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    position: relative;
    z-index: 3;
}

.client-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 50%, #8b5cf6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    position: relative;
    z-index: 3;
}

.client-info {
    flex: 1;
    position: relative;
    z-index: 3;
}

.client-name {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 4px;
    position: relative;
    z-index: 3;
}

.stars {
    display: flex;
    gap: 2px;
    align-items: center;
    position: relative;
    z-index: 3;
}

.star {
    width: 14px;
    height: 14px;
    color: #f59e0b;
}

.client-review {
    font-size: 15px;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 12px;
    flex: 1;
    position: relative;
    z-index: 3;
}

.review-date {
    font-size: 13px;
    color: rgba(0, 0, 0, 0.6);
    position: relative;
    z-index: 3;
}

.testimonials-cta {
    text-align: center;
    margin-top: 60px;
}

.testimonials-cta .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 48px;
    background: #000000;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
    border-radius: 9999px;
    border: 2px solid #000000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.testimonials-cta .cta-button:hover {
    background: transparent;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* FAQ Section */
.faq-section {
    padding: 60px 20px;
    background: #000000;
}

.faq-section .container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-title {
    font-size: 42px;
    font-weight: 900;
    text-align: center;
    color: #ffffff;
    margin-bottom: 60px;
    letter-spacing: 1px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    border: 2px solid #8b5cf6;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #a78bfa;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(139, 92, 246, 0.05);
}

.faq-question span {
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    flex-shrink: 0;
    color: #8b5cf6;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: rgba(139, 92, 246, 0.02);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 28px 24px 28px;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 16px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.faq-answer li {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    padding-left: 24px;
    margin-bottom: 8px;
    position: relative;
}

.faq-answer li::before {
    content: "•";
    position: absolute;
    left: 8px;
    color: #8b5cf6;
    font-weight: 700;
}

.faq-note {
    font-size: 14px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 16px;
}

/* Final CTA Section */
.final-cta-section {
    padding: 100px 20px;
    background: #ffffff;
    text-align: center;
}

.final-cta-section .container {
    max-width: 900px;
    margin: 0 auto;
}

.final-cta-headline {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 40px;
    letter-spacing: -0.025em;
}

@media (min-width: 768px) {
    .final-cta-headline {
        font-size: 2.5rem;
    }
}

.final-cta-copy {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(15, 23, 42, 0.7);
    margin-bottom: 12px;
    font-weight: 400;
}

@media (min-width: 768px) {
    .final-cta-copy {
        font-size: 20px;
    }
}

.final-cta-button-wrapper {
    margin-top: 50px;
}

.cta-button-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 50px;
    background: #000000;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.5px;
    border-radius: 9999px;
    border: 2px solid #000000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.button-text-mobile {
    display: none;
}

.cta-button-large:hover {
    background: transparent;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.final-cta-subtext {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.6;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.final-cta-subtext .indicator {
    flex-shrink: 0;
}

.section-cta .availability {
    margin-bottom: 0;
}

/* Responsive for How It Works */
@media (max-width: 968px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .how-it-works {
        padding: 60px 20px;
    }

    .how-it-works .container {
        padding: 5px 6px;
        border-radius: 20px;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 20px;
    }

    .feature-card {
        padding: 15px;
    }

    .feature-title {
        font-size: 20px;
    }

    .feature-description {
        font-size: 16px;
    }

    .qualification-section {
        padding: 60px 20px !important;
    }
    
    .qualification-section .container {
        width: 100% !important;
        margin: 0 auto !important;
        padding: 0 20px !important;
    }

    .qualification-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .qualification-content {
        grid-template-columns: 1fr;
        gap: 40px;
        align-items: start;
    }

    .phone-mockup {
        width: 100%;
        max-width: 100%;
    }

    .phone-mockup .gradient-bg-wrapper {
        max-width: 100%;
        width: 100%;
        aspect-ratio: auto;
        min-height: auto;
        height: auto;
        overflow: visible;
    }

    .phone-mockup article {
        min-height: auto;
        height: auto;
    }

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

/* iPad and smaller desktop screens (768px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .phone-mockup .gradient-bg-wrapper {
        max-width: 420px;
        aspect-ratio: 3 / 5;
        min-height: 650px;
        overflow: visible;
    }

    .phone-mockup article {
        min-height: 100%;
        height: auto;
    }
}

/* Smaller desktop screens (1024px - 1366px) */
@media (min-width: 1025px) and (max-width: 1366px) {
    .phone-mockup .gradient-bg-wrapper {
        max-width: 450px;
        aspect-ratio: 3 / 5;
        min-height: 680px;
        overflow: visible;
    }

    .phone-mockup article {
        min-height: 100%;
        height: auto;
    }

    .criteria-heading {
        font-size: 16px;
        gap: 8px;
    }

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

    .criteria-list li {
        font-size: 15px;
        padding-left: 32px;
    }

    .fit-list li::before {
        font-size: 16px;
        width: 22px;
        height: 22px;
    }

    .not-fit-list li::before {
        font-size: 22px;
        width: 22px;
        height: 22px;
    }

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

    .complete-system-section {
        padding: 60px 20px;
    }

    .system-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .system-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .phone-showcase {
        position: static;
        order: -1;
    }

    .phone-showcase img {
        max-width: 70%;
    }

    .system-intro {
        font-size: 17px;
    }

    .features-subtitle {
        font-size: 18px;
        margin-bottom: 24px;
        gap: 8px;
    }

    .subtitle-icon {
        width: 22px;
        height: 22px;
    }

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

    .system-cta {
        margin-top: 32px;
    }

    .who-we-are-section {
        padding: 50px 20px;
    }

    .who-we-are-section .container {
        padding: 35px 30px;
    }

    .who-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .google-rating-image {
        max-height: 70px;
    }

    .stat-value {
        font-size: 38px;
    }

    .stat-label {
        font-size: 14px;
    }

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

    .testimonials-section {
        padding: 60px 20px;
    }

    .testimonials-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .testimonial-card {
        width: 280px;
        padding: 20px;
    }

    .stat-number {
        font-size: 50px;
        position: relative;
        z-index: 100 !important;
        transform: translateZ(0);
        color: #ffffff !important;
    }

    .stat-text {
        font-size: 18px;
        position: relative;
        z-index: 100 !important;
        transform: translateZ(0);
        color: #ffffff !important;
    }

    .stat-description {
        font-size: 15px;
        position: relative;
        z-index: 100 !important;
        transform: translateZ(0);
        color: rgba(255, 255, 255, 0.9) !important;
    }

    .faq-section {
        padding: 60px 20px;
    }

    .faq-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .faq-question {
        font-size: 17px;
        padding: 20px 24px;
    }

    .faq-answer p,
    .faq-answer li {
        font-size: 15px;
    }

    .final-cta-section {
        padding: 70px 20px;
    }

    .final-cta-headline {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .final-cta-copy {
        font-size: 18px;
    }

    .final-cta-button-wrapper {
        margin-top: 40px;
    }

    .cta-button-large {
        font-size: 13px;
        padding: 18px 24px;
        width: 100%;
        max-width: 100%;
    }
    
    .button-text-full {
        display: none;
    }
    
    .button-text-mobile {
        display: inline;
    }

    .final-cta-subtext {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .how-it-works {
        padding: 40px 10px;
    }

    .how-it-works .container {
        padding: 4px 4px;
        border-radius: 15px;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 35px;
        line-height: 1.2;
    }

    .feature-icon {
        height: 80px;
        margin-bottom: 20px;
    }

    .feature-icon svg {
        width: 60px;
        height: 60px;
    }

    .feature-icon.live-transcript {
        height: auto;
        min-height: 200px;
    }

    .transcript-card {
        max-width: 280px;
    }

    .transcript-header {
        padding: 10px 12px;
    }

    .transcript-label {
        font-size: 12px;
    }

    .status-badge {
        font-size: 9px;
        padding: 3px 6px;
    }

    .status-dot {
        height: 5px;
        width: 5px;
    }

    .transcript-time {
        font-size: 11px;
    }

    .transcript-body {
        padding: 10px;
        max-height: 180px;
        gap: 10px;
    }

    .bot-bubble p,
    .user-bubble span {
        font-size: 11px;
    }

    .feature-icon.calendar-integration {
        height: auto;
        min-height: 200px;
    }

    .calendar-card {
        max-width: 280px;
    }

    .calendar-content {
        padding: 12px;
    }

    .calendar-header {
        padding: 6px 10px;
    }

    .calendar-month {
        font-size: 10px;
    }

    .booking-text {
        font-size: 9px;
    }

    .booking-dot {
        width: 5px;
        height: 5px;
    }

    .calendar-body {
        padding: 10px;
        gap: 10px;
    }

    .calendar-weekdays,
    .calendar-days {
        font-size: 8px;
    }

    .booking-details {
        width: 80px;
        padding-left: 10px;
        gap: 6px;
    }

    .detail-item {
        font-size: 9px;
    }

    .sync-status {
        padding-top: 6px;
    }

    .sync-status svg {
        width: 8px;
        height: 8px;
    }

    .sync-status span {
        font-size: 8px;
    }

    .calendar-footer {
        padding: 10px 12px;
        font-size: 11px;
    }

    .feature-icon.analytics-dashboard {
        height: auto;
        min-height: 200px;
    }

    .analytics-card {
        max-width: 280px;
    }

    .analytics-content {
        padding: 12px;
    }

    .analytics-header {
        padding: 6px 10px;
    }

    .analytics-title {
        font-size: 10px;
    }

    .live-text {
        font-size: 9px;
    }

    .live-dot {
        width: 5px;
        height: 5px;
    }

    .analytics-body {
        padding: 10px;
    }

    .metrics-grid {
        gap: 6px;
        margin-bottom: 10px;
    }

    .metric-card {
        padding: 6px;
    }

    .metric-label {
        font-size: 8px;
    }

    .metric-value {
        font-size: 16px;
    }

    .metric-change {
        font-size: 7px;
    }

    .chart-section {
        margin-top: 10px;
    }

    .chart-title {
        font-size: 8px;
    }

    .chart-bars {
        height: 20px;
        gap: 3px;
    }

    .bar {
        width: 6px;
    }

    .bar-1 {
        height: 10px;
    }

    .bar-2 {
        height: 16px;
    }

    .bar-3 {
        height: 6px;
    }

    .bar-4 {
        height: 20px;
    }

    .bar-5 {
        height: 13px;
    }

    .bar-6 {
        height: 20px;
    }

    .bar-7 {
        height: 16px;
    }

    .chart-labels {
        font-size: 7px;
    }

    .feature-icon.pipeline-card {
        height: 210px;
        overflow: visible;
        padding-bottom: 8px;
    }

    .pipeline-container {
        max-width: 280px;
        padding: 8px 12px 12px 12px;
    }

    .pipeline-header {
        margin-bottom: 6px;
        padding-bottom: 5px;
        gap: 6px;
    }

    .pipeline-title {
        font-size: 11px;
    }

    .pipeline-roas {
        font-size: 9px;
        padding: 3px 8px;
    }

    .pipeline-roas svg {
        width: 10px;
        height: 10px;
    }

    .pipeline-steps {
        gap: 6px;
    }

    .pipeline-step {
        padding: 8px 10px;
        border-radius: 8px;
    }

    .step-content {
        gap: 8px;
    }

    .step-icon {
        width: 28px;
        height: 28px;
    }

    .step-icon-blue svg,
    .step-icon-purple svg,
    .step-icon-green svg {
        width: 14px;
        height: 14px;
    }

    .step-name {
        font-size: 10px;
    }

    .step-desc {
        font-size: 8px;
    }

    .step-status {
        font-size: 9px;
    }

    .feature-title {
        font-size: 17px;
        margin-bottom: 12px;
    }

    .feature-description {
        font-size: 14px;
        line-height: 1.6;
    }

    .qualification-section {
        padding: 40px 15px !important;
    }
    
    .qualification-section .container {
        width: 100% !important;
        margin: 0 auto !important;
        padding: 0 15px !important;
    }

    .qualification-title {
        font-size: 1.75rem;
        margin-bottom: 30px;
        line-height: 1.2;
    }

    .qualification-content {
        gap: 30px;
        align-items: start;
    }

    .phone-mockup {
        width: 100%;
        max-width: 100%;
    }

    .phone-mockup .gradient-bg-wrapper {
        max-width: 100%;
        width: 100%;
        aspect-ratio: auto;
        min-height: auto;
        height: auto;
        overflow: visible;
    }

    .phone-mockup article {
        min-height: auto;
        height: auto;
    }

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

    .selection-text {
        font-size: 14px;
    }

    .criteria-heading {
        font-size: 15px;
        gap: 6px;
    }

    .heading-icon {
        width: 16px;
        height: 16px;
    }

    .criteria-list li {
        font-size: 14px;
        padding-left: 28px;
    }

    .fit-list li::before {
        font-size: 16px;
        width: 20px;
        height: 20px;
    }

    .not-fit-list li::before {
        font-size: 20px;
        width: 20px;
        height: 20px;
    }
    
    .criteria-list li {
        padding-left: 30px;
    }

    .integration-text,
    .closing-text,
    .review-text {
        font-size: 14px;
    }
}

@media (max-width: 360px) {
    .how-it-works .container {
        padding: 3px 2px;
    }

    .section-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .feature-title {
        font-size: 16px;
    }

    .feature-description {
        font-size: 13px;
        line-height: 1.6;
    }

    .qualification-section {
        padding: 40px 15px !important;
    }

    .qualification-section .container {
        padding: 0 15px !important;
    }

    .qualification-title {
        font-size: 1.75rem;
    }

    .phone-mockup img {
        max-width: 100%;
    }

    .intro-text,
    .selection-text,
    .integration-text,
    .criteria-list li,
    .closing-text,
    .review-text {
        font-size: 13px;
    }

    .criteria-heading {
        font-size: 14px;
        gap: 6px;
    }

    .heading-icon {
        width: 15px;
        height: 15px;
    }

    .complete-system-section {
        padding: 40px 15px;
    }

    .system-title {
        font-size: 1.75rem;
        margin-bottom: 30px;
    }

    .system-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .phone-showcase {
        position: static;
    }

    .phone-showcase img {
        max-width: 90%;
    }

    .system-intro {
        font-size: 15px;
    }

    .features-subtitle {
        font-size: 16px;
        margin-bottom: 20px;
        gap: 8px;
    }

    .subtitle-icon {
        width: 20px;
        height: 20px;
    }

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

    .benefit-icon {
        width: 20px;
        height: 20px;
    }

    .benefits li {
        gap: 12px;
        margin-bottom: 20px;
    }

    .system-cta {
        margin-top: 28px;
    }

    .who-we-are-section {
        padding: 40px 15px;
    }

    .who-we-are-section .container {
        padding: 28px 20px;
    }

    .who-title {
        font-size: 1.75rem;
        margin-bottom: 25px;
        line-height: 1.2;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 28px;
        padding-bottom: 25px;
    }

    .google-rating-image {
        max-height: 60px;
    }

    .stat-value {
        font-size: 34px;
    }

    .stat-label {
        font-size: 13px;
    }

    .who-text {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 16px;
    }

    .testimonials-section {
        padding: 40px 15px;
    }

    .testimonials-title {
        font-size: 1.75rem;
        margin-bottom: 30px;
        line-height: 1.2;
    }

    .testimonials-row {
        margin-bottom: 15px;
    }

    .testimonial-card {
        width: 260px;
        padding: 18px;
    }

    .stat-card {
        min-height: 220px;
    }

    .stat-number {
        font-size: 46px;
        position: relative;
        z-index: 100 !important;
        transform: translateZ(0);
        color: #ffffff !important;
    }

    .stat-text {
        font-size: 17px;
        position: relative;
        z-index: 100 !important;
        transform: translateZ(0);
        color: #ffffff !important;
    }

    .stat-description {
        font-size: 14px;
        position: relative;
        z-index: 100 !important;
        transform: translateZ(0);
        color: rgba(255, 255, 255, 0.9) !important;
    }

    .client-card {
        min-height: 220px;
    }

    .client-avatar {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .client-name {
        font-size: 16px;
    }

    .star {
        width: 13px;
        height: 13px;
    }

    .client-review {
        font-size: 14px;
    }

    .testimonials-cta {
        margin-top: 40px;
    }

    .faq-section {
        padding: 40px 15px;
    }

    .faq-title {
        font-size: 24px;
        margin-bottom: 30px;
        line-height: 1.3;
    }

    .faq-accordion {
        gap: 15px;
    }

    .faq-question {
        font-size: 16px;
        padding: 18px 20px;
    }

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

    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }

    .faq-answer p,
    .faq-answer li {
        font-size: 14px;
    }

    .final-cta-section {
        padding: 50px 15px;
    }

    .final-cta-headline {
        font-size: 1.75rem;
        margin-bottom: 24px;
        line-height: 1.2;
    }

    .final-cta-copy {
        font-size: 16px;
    }

    .final-cta-button-wrapper {
        margin-top: 35px;
    }

    .cta-button-large {
        font-size: 12px;
        padding: 16px 18px;
        width: 100%;
        max-width: 100%;
    }
    
    .button-text-full {
        display: none;
    }
    
    .button-text-mobile {
        display: inline;
    }

    .final-cta-subtext {
        font-size: 13px;
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .complete-system-section {
        padding: 50px 15px;
    }

    .system-title {
        font-size: 1.75rem;
        margin-bottom: 35px;
        line-height: 1.2;
    }

    .system-content {
        gap: 35px;
    }

    .phone-showcase img {
        max-width: 85%;
    }

    .system-intro {
        font-size: 16px;
    }

    .features-subtitle {
        font-size: 17px;
        margin-bottom: 22px;
        gap: 8px;
    }

    .subtitle-icon {
        width: 20px;
        height: 20px;
    }

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

    .benefit-icon {
        width: 22px;
        height: 22px;
    }
}

/* Logo Carousel Animation */
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.logo-carousel-landing {
    animation: scroll-left 40s linear infinite;
    width: max-content;
}

.logo-carousel-landing:hover {
    animation-play-state: paused;
}

/* Mobile-specific animation */
@media screen and (max-width: 640px) {
    .logo-carousel-landing {
        animation: scroll-left 35s linear infinite !important;
    }
}

