/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Helvetica;
    color: #1a1a1a;
    background: #ffffff;
    line-height: 1.6;
}

.container {
    max-width: 1070px!important;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
nav {
    position: absolute;
    top: 0;
    padding: 0;
    z-index: 1000;
    width: 100%;
    left: 0;
}

.nav-container {
    max-width: 1412px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* .nav-container .logo {
    font-size: 26px;
    font-weight: 700;

    display: flex;
    align-items: center;
    z-index: 1001;
}

.nav-container .logo a {
    color: #fff!important;
    text-decoration: none;
}

.nav-container .logo img {
    margin-right: 8px;
    width: clamp(20px, 4vw, 32px);
    height: auto;
} */

.nav-container .nav-links {
    display: flex;
    gap: 65px;
    align-items: center;
}

.nav-container .nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.nav-container .nav-links a:hover {
    color: #ffd700;
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #6355ea;
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 10px 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    margin-top: 10px;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 12px 24px;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    border-left-color: #6E60F4;
    color: #ffd700;
    padding-left: 28px;
}

.nav-container button {
    background-color: #fff;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    z-index: 1001;
    position: relative;
    width: 50px;
    height: 50px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.mobile-menu-btn span {
    width: 28px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: all 0.3s ease;
    transform-origin: center;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.mobile-menu-btn.active {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: rotate(0deg);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
    background: #fff;
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background: #fff;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, rgba(110, 96, 244, 0.95) 0%, rgba(99, 102, 241, 0.95) 100%);
    backdrop-filter: blur(20px);
    z-index: 999;
    padding-top: 120px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow-y: auto;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, transparent 100%);
    z-index: 1;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
    padding: 50px 30px 40px;
    position: relative;
    z-index: 2;
}

.mobile-menu-links a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 20px;
    transition: all 0.3s ease;
    padding: 5px 30px;
    border-radius: 12px;
    text-align: center;
    width: 100%;
    max-width: 300px;
    position: relative;
    overflow: hidden;
    /* background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2); */
    backdrop-filter: blur(10px);
}

.mobile-menu-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.mobile-menu-links a:hover::before {
    left: 100%;
}

.mobile-menu-links a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.mobile-menu-links a:active {
    transform: translateY(-1px) scale(1.01);
}

.mobile-menu-links .cta-button {
    margin-top: 30px;
    font-size: 22px;
    padding: 18px 35px;
    background: #ffffff;
    color: #6E60F4;
    border: 2px solid #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.mobile-menu-links .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(110, 96, 244, 0.1), transparent);
    transition: left 0.6s ease;
}

.mobile-menu-links .cta-button:hover::before {
    left: 100%;
}

.mobile-menu-links .cta-button:hover {
    background: #6E60F4;
    color: #ffffff;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 35px rgba(110, 96, 244, 0.4);
}

/* Mobile Dropdown Menu */
.mobile-dropdown {
    width: 100%;
    max-width: 300px;
}

.mobile-dropdown-toggle {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dropdown-arrow {
    font-size: 14px;
    transition: transform 0.3s ease;
    margin-left: 10px;
}

.mobile-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, margin 0.4s ease;
    margin-top: 0;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    max-height: 300px;
    margin-top: 10px;
}

.mobile-dropdown-menu a {
    /* background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15); */
    font-size: 17px;
    padding: 7px 25px;
    margin-bottom: 8px;
    /* border-left: 3px solid transparent; */
    display: block;
}

.mobile-menu-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1002;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: rotate(90deg) scale(1.1);
}

.mobile-menu-close::before,
.mobile-menu-close::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: #ffffff;
    border-radius: 1px;
}

.mobile-menu-close::before {
    transform: rotate(45deg);
}

.mobile-menu-close::after {
    transform: rotate(-45deg);
}

/* CTA Buttons */
.cta-button {
    background: #6E60F4;
    color: #EC4899;
    padding: 11px 25px 7px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    display: flex;
}

.cta-button:hover {
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.cta-secondary {
    background: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
}

.cta-secondary:hover {
    background: #1a1a1a;
    color: white;
}

.buttons-container {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}

.packages-button {
    background-color: #242424;
    color: white;
    border-radius: 5px;
}

/* Hero Section */
.hero {
    padding: 120px 0 10px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 4fr 1fr;
    /* gap: 47px; */
    align-items: center;
    z-index: 5;
    position: relative;
    margin-left: 30px;
}

.container .path-4-jaWknw {
    background-color: transparent;
    width: 100%;
    height: 1019px;
    left: 0;
    object-fit: cover;
    position: absolute;
    top: -10px;
}

.hero-cta {
    background: #6355ea;
    color: white;
    padding: 10px 25px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.hero-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(99, 85, 234, 0.4);
    background: #5245d9;
}

.hero-cta span {
    margin-top: 2px;
    margin-left: 15px;
}

.hero-btn {
    background-color: #161617;
}

.trust-section {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.trust-section p {
    color: #656B7A;
    font-size: 13px;
    margin-bottom: 1rem;
}

.trust-section strong {
    color: #6E60F4;
    margin-left: 35px;
}

.trust-logos {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
    opacity: 0.7;
}

.trust-logos span {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
}

.financing {
    margin-top: 55px;
    color: #707070;
}

.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}


/* Timing Section */
.time-sec {
    max-width: 138px;
    text-align: center;
}

.time-sec h5 {
    font-size: 52px;
    line-height: 1.2;
    font-weight: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}

.time-sec p {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.time-sec p:last-of-type {
    font-size: 10px;
    font-weight: bold;
    line-height: 1.2;
    margin: 0;
}

.timing-container {
    display: flex;
    justify-content: end;
    gap: 40px;
}

.section-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2rem 0 5rem;
}

/* How It Works Section */
.how-section {
    background: #fafafa;
    padding: 100px 40px;
}

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

.three-column {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.column-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
}

.icon {
    width: 80px;
    height: 80px;
    font-size: 40px;
}

.column-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.column-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 8px;
}

.column-card .perfect-for {
    font-size: 14px;
    color: #999;
    font-style: italic;
    margin-top: 16px;
}

/* Omnichannel Section */
.omnichannel-works {
    position: relative;
    background-image: url("/images/omnichannel-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 756px;
}

.omnichannel-works .content-layer {
    padding: 10% 17%;
}

.omnichannel-works .header {
    margin-bottom: 80px;
    max-width: 600px;
    margin-left: 15px;
}

.omnichannel-works .header h1 {
    font-size: 44px;
    font-weight: 700;
    color: #fff;
    line-height: 60px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.omnichannel-works .header p {
    font-size: 17px;
    color: #fff;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 855px;
    margin-left: 20px;
}

.stats-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
    border-left: 2px solid #2ABAFA;
}

.stats-number {
    font-size: 42px;
    font-weight: 700;
    color: #F89B05;
    line-height: 1;
    letter-spacing: -2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    padding-left: 20px;
}

.stats-description {
    font-size: 13px;
    color: #fff;
    line-height: 1.4;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    max-width: 180px;
    padding-left: 25px;
}

.stats-description2 {
    font-size: 13px;
    color: #fff;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    padding-left: 25px;
    margin-top: 20px;
}

/* Complete Package Section */
.package-section {
    padding: 40px;
}

.package-section h2 {
    font-size: 42px;
    font-weight: bold;
}

.package-container {
    max-width: 1145px;
    margin: 0 auto;
}

.package-container .section-header {
    text-align: left;
}

.four-column {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 45px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-top: 10px solid #6366f1;
    transition: all 0.3s ease;
    position: relative;
    width: 300px;
    height: 294px;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.feature-card .icon {
    width: 70px;
    height: 70px;
    font-size: 36px;
}

.feature-card h4 {
    font-size: 25px;
    font-weight: 500;
    line-height: 60px;
}

.feature-card p {
    color: #000;
    font-size: 13px;
    line-height: 20px;
    max-width: 171px;
}

.feature-card .small-print {
    font-size: 12px;
    color: #6366f1;
    margin-top: 20px;
}

/* Financing Section */
.financing-section {
    padding: 100px 20px;
}

.financing-container {
    max-width: 1164px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.financing-container .cta-button {
    color: #fff;
}

.financing-content h2 {
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -1px;
    line-height: 44px;
}

.financing-content p {
    font-size: 17px;
    color: #000;
    line-height: 26px;
    margin-bottom: 30px;
}

.financing-visual {
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #999;
}

/* Testimonials Section */
.testimonials-section {
    display: flex;
    gap: 20px;
}

.testimonial-card {
    border-radius: 16px;
    padding: 30px;
    color: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    width: 350px;
    height: 350px;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-card.dark {
    background: linear-gradient(135deg, #2c3e5f 0%, #1a2332 100%);
}

.testimonial-card.light {
    background: #AE9BBB;
}

.testimonial-card.light .testimonial-quote,
.testimonial-card.light .testimonial-stars .star,
.testimonial-card.light .testimonial-author {
    color: #000;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 15px;
}

.testimonial-stars .star {
    color: #fff;
    font-size: 25px;
}

.testimonial-quote {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 500;
}

.testimonial-author {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    bottom: 35px;
    position: absolute;
    font-weight: 500;
    bottom: 20px;
}

/* Payments Section */
.klarna-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border-radius: 12px;
    font-weight: 700;
    margin: 30px 0 20px;
}

.trustpilot-badge {
    display: inline-block;
}

.trustpilot-header {
    display: flex;
    align-items: center;
    gap: 8px;
}

.trustpilot-logo {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.trustpilot-star-icon {
    color: #00b67a;
    font-size: 28px;
}

.trustpilot-stars {
    display: flex;
    gap: 6px;
    margin-bottom: 10px;
}

.star-box {
    width: 36px;
    height: 36px;
    background: #00b67a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.star-box.half {
    background: linear-gradient(90deg, #00b67a 50%, #dcdce6 50%);
}

.star-box.empty {
    background: #dcdce6;
}

.star-box svg {
    width: 28px;
    height: 28px;
    fill: #fff;
}

.trustpilot-rating {
    font-size: 14px;
    color: #1a1a1a;
    font-weight: 600;
}

.trustpilot-rating strong {
    font-weight: 700;
}

.trustpilot-rating a {
    color: #1a1a1a;
    text-decoration: underline;
}

/* Brands Section */
.brands {
    background: #161617;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
    z-index: 5;
    overflow: hidden;
}

.brands-note {
    width: 100%;
    text-align: center;
    color: #c5c4cc;
    font-size: 14px;
    font-family: Helvetica;
}

.brands .logo-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 100px;
    width: max-content;
    animation: moveLeft 40s linear infinite;
}

.brands .logo {
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    opacity: 0.9;
    transition: opacity 0.3s;
    flex-shrink: 0;
    white-space: nowrap;
}

.brands .logo:hover {
    opacity: 1;
}

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

/* Commercial Section */
.commercial {
    position: relative;
    height: 846px;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23c8b5a0" width="1200" height="600"/></svg>');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.commercial-content {
    z-index: 1;
    background-image: url("/images/commercial-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.commercial h1 {
    color: #fff;
    font-size: 34px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    bottom: 50px;
    position: absolute;
    font-family: Helvetica;
}

.overlay {
    position: absolute;
    left: 0;
    top: 65%;
    height: 35%;
    width: 100%;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.7));
}

/* Three Ways Section */
.three-ways {
    max-width: 1160px;
    margin: 0 auto;
    background: #fff;
    padding: 100px 0;
    border-radius: 12px;
}

.three-ways .header {
    text-align: left;
    margin-bottom: 60px;
    display: block;
}

.three-ways .header h1 {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 40px;
    margin-bottom: 15px;
}

.three-ways .header p {
    font-size: 16px;
    color: #666;
    font-weight: 400;
}

.three-ways .cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.three-ways .card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    height: 566px;
}

.three-ways .card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.three-ways .card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 70%, transparent 100%);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.three-ways .card-title {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.three-ways .card-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    bottom: 60px;
    position: absolute;
}

.three-ways .card .card-icon {
    font-size: 0;
}

.three-ways .card:hover .card-icon {
    background: #6E60F4 !important;
    transform: rotate(0deg);
}

.three-ways .card:hover .card-icon::after {
    height: 0;
    opacity: 0;
}

.three-ways .card-1 {
    background-image: url('/images/3ways-send-assets.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.three-ways .card-2 {
    background-image: url('/images/3ways-film.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.three-ways .card-3 {
    background-image: url('/images/3ways-full-creative.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.service-card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 40px 35px;
    display: flex;
    flex-direction: column;
    color: #fff;
    letter-spacing: -1px;
}

.service-title {
    font-size: 23px;
    font-weight: 500;
    margin-bottom: 25px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    position: absolute;
    bottom: 40px;
    left: 35px;
    right: 90px;
    transition: all 0.4s ease;
    transform: translateY(0);
    opacity: 1;
    letter-spacing: 0px;
    font-family: Helvetica;
}

.service-provide {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
}

.service-list {
    list-style: none;
    margin-bottom: 25px;
}

.service-list li {
    font-size: 18px;
    padding-left: 20px;
    position: relative;
    font-weight: 500;
}

.service-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    font-size: 18px;
}

.service-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-perfect {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
    font-style: italic;
}

.service-target {
    font-size: 18px;
    margin-bottom: 25px;
    opacity: 0.95;
}

.service-cta {
    display: flex;
    align-items: center;
    margin-top: auto;
    font-size: 18px;
    color: #fff;
    gap: 10px;
}

.service-cta .cta-link {
    color: #fff;
    text-decoration: underline;
}

.service-toggle {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 70px 35px;
    transform: translateY(100%);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    z-index: 4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 300px;
}

.service-toggle * {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.card-icon {
    position: absolute;
    bottom: 40px;
    right: 35px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    z-index: 5;
    position: relative;
    overflow: hidden;
}

.card-icon::before,
.card-icon::after {
    content: '';
    position: absolute;
    background: #fff;
    transition: all 0.3s ease;
}

.card-icon::before {
    width: 20px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.card-icon::after {
    width: 2px;
    height: 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.card-icon:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: rotate(90deg);
    border-color: rgba(255, 255, 255, 0.6);
}

.service-card-content:hover .service-toggle {
    transform: translateY(0);
    opacity: 1;
}

.service-card-content:hover .service-title {
    opacity: 0;
    transform: translateY(-20px);
}

.text-decoration-none {
    text-decoration: none;
}

.btn-section-box {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Industries Section */
.industries-section {
    padding: 100px 40px;
}

.industries-section .industries-container {
    max-width: 1270px;
    margin: 0 auto;
}

.industries-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.industries-section .section-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #000;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.industries-section .section-header p {
    font-size: 17px;
    color: #656B7A;
    max-width: 560px;
    margin: 0 auto;
    line-height: 26px;
}

.industries-section .industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.industries-section .industry-card {
    border-radius: 20px;
    transition: all 0.3s ease;
    height: 830px;
    position: relative;
    overflow: hidden;
}

.industries-section .industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.industries-section .industry-card .industry-icon img {
    width: 100%;
    object-fit: cover;
}

.industries-section .blue_layout {
    background: linear-gradient(185deg, #ffffff00 0%, #123be8 58%);
    padding: 20px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    padding-top: 280px;
    border-radius: 20px;
}

.industries-section .yellow_layout {
    background: linear-gradient(185deg, #ffffff00 0%, #ce9a0d 58%);
    padding: 20px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    padding-top: 280px;
     border-radius: 20px;
}

.industries-section .pink_layout {
    background: linear-gradient(185deg, #ffffff00 0%, #bd1448 58%);
    padding: 20px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    padding-top: 280px;
     border-radius: 20px;
}

.industries-section .industry-icon {
    font-size: 64px;
    display: block;
}

.industries-section .industry-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.industries-section .industry-card .subtitle {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.5;
}

.industries-section .industry-stats {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 5px 20px;
    margin-bottom: 24px;
}

.industries-section .stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.industries-section .stat-item:not(:last-child) {
    border-bottom: 1px solid #e0e0e0;
}

.industries-section .stat-label {
    font-size: 14px;
    color: #666;
}

.industries-section .stat-value {
    font-size: 16px;
    font-weight: 700;
    color: #6c63ff;
}

.industries-section .industry-features {
    margin-bottom: 30px;
}

.industries-section .feature-item {
    display: flex;
    align-items: start;
    gap: 10px;
    font-size: 15px;
    color: #ffffff;
    text-align: left;
    max-width: 100%;
}

.industries-section .check-icon {
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.industries-section .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.industries-section .btn-primary {
    background: #fff;
    color: #234df3;
    padding: 12px 32px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    display: block;
}

.industries-section .btn-primary:hover {
    background: #234df3;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(108, 99, 255, 0.3);
}

.industries-section .btn-secondary {
    background: transparent;
    color: #ffffff;
    padding: 12px 32px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid #fff;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    display: block;
}

.industries-section .pink-hover.btn-secondary:hover {
    background: #bd1448;
    color: white;
}

.industries-section .blue-hover.btn-secondary:hover {
    background: #234df3;
    color: white;
}

.industries-section .yellow-hover.btn-secondary:hover {
    background: #ce9a0d;
    color: white;
}

.industries-section .trust-note {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-top: 8px;
}

/* Design Section */
.design-section {
    color: #fff;
    position: relative;
    overflow: hidden;
    margin-top: -35px;
}

.text-grid {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.text-column {
    width: 43%;
    padding-right: 20px;
}

.text-column:last-child {
    padding-right: 0;
}

.text-column.right-aligned {
    text-align: right;
}

.professional-text {
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
}

.ai-powered-text {
    font-size: 0.9em;
    opacity: 0.9;
}

/* Video Section */
.video-section {
    position: relative;
    width: 100%;
    max-width: 1030px;
    height: auto;
    padding-bottom: 50.25%;
    margin-bottom: 0;
    background-color: #000;
    z-index: 3;
}

.main-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.overlay-face {
    position: absolute;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    width: 80px;
    height: 80px;
    background-color: gray;
}

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

.face-small-left {
    bottom: 10%;
    left: 5%;
    z-index: 10;
}

.face-tiny-right {
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    z-index: 10;
}

.black-bar {
    position: absolute;
    right: 0;
    top: 0;
    width: 15%;
    height: 100%;
    background-color: black;
    z-index: 5;
}

/* Content Wrapper */
.content-wrapper {
    position: relative;
    z-index: 2;
}

.main-heading {
    font-size: 66px;
    margin-bottom: 20px;
    text-align: left;
    letter-spacing: -1px;
    font-family: unset;
    font-weight: 700;
    color: #fff;
    line-height: 72px;
}

/* Media Section */
.media {
    padding: 10rem 3rem;
}

.value-prop {
    color: #2b2626;
    text-align: left;
    max-width: 970px;
    margin: 0 auto;
    line-height: 30px;
}

.value-prop p {
    font-size: 31px;
    color: #2b2626;
    margin-top: 5px;
    font-weight: bold;
}

.value-prop .subtitle {
    font-size: 13px;
    color: #425466;
    font-weight: bold;
}

.value-prop a {
    font-size: 14px;
    color: #6e60f4;
    font-weight: bold;
    text-decoration: none;
}

.features-grid {
    display: flex;
    gap: 10px;
    padding: 60px 0 0 75px;
    max-width: 1180px;
    margin: 0 auto;
}

.item .head_span {
    font-size: 16px;
    color: #000000;
    text-align: left;
    font-weight: 700;
    margin-top: 25px;
}

.item {
    padding: 0 25px;
}

.feature-item_right_border {
    border-right: 1px solid #4a5568;
}

@media (max-width: 768px) {
    .feature-item_right_border {
        border-right: none;
    }
}

.feature-text {
    font-size: 16px;
    color: #4a5568;
    line-height: 22px;
    margin: 29px 0;
    min-height: 80px;
    text-align: left;
    font-weight: 500;
}

.feature-icon {
    width: 65px;
    height: 65px;
}

.feature-icon img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

/* Guarantees Section */
.guarantees-section {
    background-color: #F5F4FF;
    padding: 7rem 20px;
}

.guarantees-section .section-header {
    text-align: center;
    margin-bottom: 70px;
}

.guarantees-section .section-title {
    font-size: 45px;
    font-weight: 700;
    color: #425466;
}

.guarantees-section .section-subtitle {
    font-size: 1rem;
    color: #718096;
}

.guarantees-section .guarantees-grid {
    max-width: 1365px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.guarantees-section .guarantee-card {
    background-color: #3B82F6;
    padding: 35px;
    border-radius: 40px;
    color: white;
    transition: transform 0.3s, box-shadow 0.3s;
}

.guarantees-section .guarantee-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(66, 153, 225, 0.3);
}

.guarantees-section .card-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
}

.guarantees-section .card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.guarantees-section .card-description {
     font-size: 16px;
    line-height: 20px;
    font-weight: 500;
}

/* Bottom CTA Section */
.bottom-cta {
    background-color: #F7F9FC;
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    color: #242222;
    margin-top: 60px;
}

.bottom-cta h3 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
}

.bottom-cta p {
    font-size: 17px;
    color: #656B7A;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.bottom-cta .btn-primary {
    background: white;
    color: #6c63ff;
    display: inline-block;
    margin: 0 10px;
}

.bottom-cta .btn-primary:hover {
    background: #f8f9fa;
}

.phone-cta {
    margin-top: 30px;
    font-size: 17px;
    color: #656B7A;
}

.phone-cta a {
    color: #6c63ff;
    text-decoration: none;
    border-bottom: 2px solid white;
    font-weight: bold;
}

/* Final CTA Section */
.final-cta {
    /* background-image: url('/images/juggling-bg.png');
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center top;
    height: 1000px; */
    background-color: #F7F9FC;
}

.juggling-vendors {
    max-width: 1160px;
    margin: -20px auto;
    padding: 80px 0px;
}

.final-cta .header {
    margin-bottom: 50px;
}

.final-cta .header h1 {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.final-cta .header p {
    font-size: 16px;
    color: #000;
    line-height: 1.6;
    max-width: 310px;
}

.final-cta .content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.final-cta .image-section {
    position: relative;
    max-width: 508px;
}

.final-cta .featured-image {
    width: 465px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.final-cta .cta-container {
    display: flex;
    gap: 25px;
}

.final-cta .cta-card {
    transition: all 0.3s ease;
    width: 350px;
}

.final-cta .cta-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    border-left: 3px solid #6E5FF5;
    padding-left: 15px;
}

.final-cta .cta-card p {
    font-size: 16px;
    color: #000;
    line-height: 30px;
    margin-bottom: 20px;
    padding-left: 15px;
    max-width: 261px;
}

.final-cta .btn-primary {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.final-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(99, 102, 241, 0.4);
}

.final-cta .btn-primary::after {
    content: '→';
    font-size: 18px;
}

.final-cta .link-secondary {
    color: #6366f1;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
    margin-left: 15px;
}

.final-cta .link-secondary:hover {
    color: #4f46e5;
}

.final-cta .link-secondary::after {
    content: '→';
    font-size: 16px;
}

.final-cta button {
    margin-left: 15px;
}

/* FAQ Section */
.faq-section {
    margin: 0 auto;
    border-radius: 8px;
}

.faq-section .container {
    max-width: 1150px;
    margin: 0 auto;
    padding: 60px 20px;
    border-radius: 8px;
}

.faq-section .header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-section .header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.faq-section .header p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

.faq-section .accordion-item {
    margin-bottom: 0;
}

.faq-section .accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
}

.faq-section .accordion-header:hover {
    color: #555;
}

.faq-section .accordion-title {
    font-size: 18px;
    font-weight: bold;
    line-height: 26px;
    font-style: normal;
    color: #0b0b0b;
    flex: 1;
}

.faq-section .accordion-title.schedule-call {
    color: #6e5ff5;
    font-size: 15px;
}

.faq-section .accordion-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #666;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
    position: relative;
}

.faq-section .accordion-icon::before {
    content: "+";
}

.faq-section .accordion-item.active .accordion-icon::before {
    content: "−";
}

.faq-section .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #666;
    font-size: 17px;
    line-height: 1.8;
}

.faq-section .accordion-content-inner {
    padding-bottom: 25px;
}

.faq-section .accordion-content p {
    margin-bottom: 15px;
}

.faq-section .accordion-content p:last-child {
    margin-bottom: 0;
}

.faq-section .accordion-item.active .accordion-content {
    max-height: 1000px;
}

.faq-section .highlight {
    background-color: #fff8e1;
    padding: 2px 4px;
    border-radius: 3px;
}

/* Footer */
 footer 
 {
    background: #ffffff;
    padding: 5px 40px 30px;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 40px;
}

/* Brand Section */
.footer-brand {
    display: flex;
    flex-direction: column;
}

.brand-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.brand-info{
    margin: 0;
    color:#2E2E2E;
}


.brand-name {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px 0;
}

.brand-description {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    max-width: 300px;
    margin: 0;
}

/* Footer Columns */
.footer-column h3 {
    font-size: 18px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #2E2E2E!important;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #4169E1;
}

        /* Contact Section */
        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 16px;
        }

        .contact-icon {
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #4169E1;
            font-size: 16px;
            margin-top: 2px;
            flex-shrink: 0;
        }

        .contact-text {
            color: #2E2E2E;
            font-size: 14px;
            line-height: 1.5;
        }

        .contact-text a {
            color: #2E2E2E;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .contact-text a:hover {
            color: #4169E1;
        }

        /* Footer Bottom */
        .footer-bottom {
            padding-top: 24px;
            text-align: center;
        }

        .copyright {
            font-size: 13px;
            color: #0D0C0C;
            margin-bottom: 8px;
        }

        .disclaimer {
            font-size: 10px;
            color: rgba(255, 255, 255, 0.5);
            line-height: 1.5;
            padding-top: 2rem;
        }

        .disclaimer a {
            color: #4169E1;
            text-decoration: none;
        }

        .disclaimer a:hover {
            text-decoration: underline;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }
        }

        @media (max-width: 768px) {
            footer {
                padding: 40px 30px 25px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 36px;
            }

            .logo img {
                max-width: 100px;
            }

            .brand-info {
                margin: 0;
            }
        }

        @media (max-width: 576px) {
            footer {
                padding: 40px 20px 20px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .footer-column {
                margin: 0 auto;
            }

            .brand-header {
                flex-direction: column;
                align-items: center;
                text-align: center;
                gap: 16px;
            }

            .logo img {
                max-width: 80px;
                height: auto;
            }

            .brand-info {
                margin: 0;
                max-width: 100%;
            }

            .brand-name {
                font-size: 20px;
            }

            .brand-description {
                max-width: 100%;
                font-size: 13px;
            }

            .footer-column h3 {
                font-size: 16px;
                margin-bottom: 16px;
            }

            .footer-links a {
                font-size: 13px;
            }

            .contact-item {
                margin-bottom: 12px;
            }

            .contact-text {
                font-size: 13px;
            }

            .footer-bottom {
                padding-top: 20px;
            }

            .copyright {
                font-size: 12px;
            }

            .disclaimer {
                font-size: 11px;
            }
        }


/* Calculator Section */
.calculator-section {
    padding: 5rem 20px 10rem;
    background: #F5F4FF;
    position: relative;
}

.calculator-container {
    max-width: 1050px;
    margin: 0 auto;
    position: relative;
    background: #000;
    text-align: center;
    border-radius: 50px;
    padding: 3rem;
    z-index: 9;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 8px 20px rgba(0, 0, 0, 0.3);
}

.calculator-header {
    text-align: center;
    margin: 75px 20px;
    z-index: 9;
    position: relative;
    font-family: Helvetica;
    font-weight: bold;
}

.calculator-header h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #fff;
    line-height: 45px;
    font-weight: 700;
}

.calculator-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 500;
}

.input-card {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    max-width: 620px;
    margin: 0 auto;
}

.input-group {
    margin-bottom: 30px;
}

.input-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    text-align: left;
}

.input-group select {
    width: 100%;
    padding: 8px 14px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 13px;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    transition: border-color 0.3s;
}

.input-group select:focus {
    outline: none;
    border-color: #FF6B35;
}

.slider-input-group {
    margin-bottom: 30px;
}

.input-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    color: #fff;
    font-size: 12px;
}

.input-value {
    font-size: 18px;
    font-weight: 700;
    color: #FF6B35;
}

.text-input {
    width: 100%;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
    transition: border-color 0.3s;
}

.text-input:focus {
    outline: none;
    border-color: #FF6B35;
    background: rgba(255, 255, 255, 0.08);
}

input[type="range"] {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: #FF6B35;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #FF6B35;
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

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

.results-card {
    background: linear-gradient(135deg, #7C3AED 0%, #5B21B6 100%);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    max-width: 620px;
    margin: 2rem auto;
    color: #fff;
}

.main-result {
    text-align: left;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.main-result h3 {
    font-size: 13px;
    font-weight: 500;
    opacity: 0.9;
    margin-bottom: 10px;
    color:#fff;
}

.main-result .amount {
    font-size: 38px;
    font-weight: bold;
    margin-bottom: 5px;
}

.main-result .subtitle {
    font-size: 14px;
    opacity: 0.7;
    font-style: italic;
     color:#fff;
}

.comparison-bars {
    margin: 30px 0;
}

.bar-row {
    margin-bottom: 20px;
}

.bar-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
    opacity: 0.9;
    letter-spacing: 0.5px;
    text-align: left;
}

.bar-container {
    background: rgba(255, 255, 255, 0.1);
    height: 50px;
    border-radius: 10px;
    overflow: visible;
    position: relative;
}

.bar-fill {
    height: 100%;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 15px;
    transition: width 0.8s ease;
    position: relative;
}

.bar-fill.investment {
    background: rgba(255, 255, 255, 0.3);
}

.bar-fill.revenue {
    background: #FF6B35;
}

.bar-amount {
    position: absolute;
    right: -35px;
    font-weight: bold;
    font-size: 13px;
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.metric-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.metric-label {
    font-size: 13px;
    opacity: 0.8;
    margin-bottom: 8px;
}

.metric-value {
    font-size: 22px;
    font-weight: bold;
}

.breakdown-section {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 40px 30px;
    margin-bottom: 30px;
    max-width: 620px;
    margin: 3rem auto;
    color: #fff;
}

.breakdown-section h3 {
    text-align: center;
    font-size: 18px;
    margin-bottom: 10px;
    color: #fff;
    font-weight: bold;
}

.breakdown-section .subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.6)!important;
    margin-bottom: 40px;
    font-size: 11px;
    color: #fff;
}

.benchmark-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.benchmark-card {
    padding: 10px 17px;
    border-radius: 16px;
    text-align: center;
}

.benchmark-card.orange {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
}

.benchmark-card.pink {
    background: linear-gradient(135deg, #EC4899 0%, #BE185D 100%);
}

.benchmark-card.purple {
    background: linear-gradient(135deg, #8B5CF6 0%, #6D28D9 100%);
}

.benchmark-number {
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 10px;
}

.benchmark-label {
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 5px;
}

.benchmark-source {
    font-size: 10px;
    opacity: 0.7;
}

.data-sources {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    line-height: 1.6;
}

.investment-summary {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    max-width: 620px;
    margin: 0 auto;
    color: #fff;
}

.investment-summary h3 {
    text-align: center;
    font-size: 18px;
    margin-bottom: 10px;
    color: #fff;
    font-weight: bold;
    letter-spacing: 0px;
}

.investment-summary .details {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 30px;
    font-size: 12px;
}

.breakeven-box {
    background: linear-gradient(135deg, #7C3AED 0%, #5B21B6 100%);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    margin-bottom: 30px;
}

.breakeven-label {
    font-size: 12px;
    opacity: 0.8;
    margin-bottom: 10px;
}

.breakeven-value {
    font-size: 54px;
    font-weight: bold;
    margin-bottom: 5px;
}

.breakeven-description {
    font-size: 12px;
    opacity: 0.7;
}

.cta-main {
    background: #FF6B35;
    color: white;
    padding: 18px 50px;
    border: none;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s;
}

.cta-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

.disclaimer {
    text-align: center;
    line-height: 1.6;
}

.footer-bg {
    height: 615px;
    object-fit: cover;
    position: absolute;
    bottom: -85px;
    margin-left: -20px;
}

.step-badge {
    background: #FF6B35;
    color: white;
    padding: 5px 30px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 30px;
    margin: 0 auto;
    text-align: center;
    z-index: 9;
    position: relative;
}

.gradient-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background: radial-gradient(ellipse at top center, rgba(147, 51, 234, 0.4) 0%, rgba(139, 92, 246, 0.3) 30%, rgba(88, 28, 135, 0.2) 60%, transparent 70%);
    pointer-events: none;
    display: block!important;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .container .path-4-jaWknw {
        width: 100%;
        height: 900px;
        margin-bottom: 20px;
        left: 0;
    }

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

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

    .benchmark-cards {
        display: block;
        margin-bottom: 30px;
    }

    .benchmark-card {
        padding: 25px 15px;
        margin-bottom: 15px;
    }

    .benchmark-card:last-child {
        margin-bottom: 0;
    }

    .nav-container {
        padding: 0 20px;
        position: relative;
        min-height: 70px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .nav-container button {
        background-color: transparent;
    }

    .nav-container .logo {
        font-size: clamp(18px, 5vw, 24px);
        z-index: 1001;
        position: relative;
    }

    .nav-container .logo img {
        width: clamp(20px, 5vw, 30px);
    }

    .nav-links {
        display: none !important;
    }

    .mobile-menu-btn {
        display: flex;
        position: relative;
        z-index: 1001;
    }

    .mobile-menu {
        display: block;
    }

    nav {
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        transition: all 0.3s ease;
    }

    nav.scrolled {
        background: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(20px);
    }

    .hero h1 {
        font-size: 42px;
        line-height: 45px;
        margin-top: 40px;
        text-align: center;
    }

    .hero .professional-text,.ai-powered-text {
        text-align: center;
    }

    .hero .subhead {
        font-size: 21px;
    }

    .hero .supporting {
        font-size: 16px;
    }

    .section-header h2 {
        font-size: 36px;
    }

    .media {
        padding: 5rem 3rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 20px;
        justify-items: center;
        display: block;
    }

    .feature-item {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .three-column,
    .four-column,
    .platform-grid,
    .stats-grid,
    .proof-stats,
    .results-grid,
    .financing-container,
    .cta-split,
    .stats-container {
        grid-template-columns: 1fr;
    }

    .omnichannel-works .header h1 {
        line-height: 50px;
    }

    .stats-container {
        gap: 30px;
        max-width: 100%;
        padding: 0 20px;
    }

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

    .stats-description {
        max-width: 100%;
        font-size: 16px;
    }

    .trust-logos {
        flex-wrap: wrap;
        gap: 30px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        padding: 0 15px;
        margin-left: 0;
    }

    .hero-text {
        order: 2;
    }

    .hero-image {
        order: 1;
        min-height: 250px;
        margin-bottom: 20px;
        margin-top: 0px;
    }

    .hero-text h1 {
        font-size: clamp(32px, 8vw, 48px);
        line-height: 1.1;
        margin-bottom: 15px;
        color: #000;
    }

    .hero-subtext {
        font-size: clamp(18px, 5vw, 24px);
        line-height: 1.2;
        margin-bottom: 15px;
        color: #000;
    }

    .hero-description {
        font-size: clamp(14px, 4vw, 16px);
        line-height: 1.5;
        margin-top: 20px;
        padding: 0 10px;
    }

    .section-nav {
        flex-direction: column;
        gap: 30px;
        align-items: center;
        text-align: center;
        margin: 2rem 0 5rem;
    }

    .buttons-container {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 300px;
    }

    .hero-cta {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 14px;
        margin-bottom: 5px;
    }

    .timing-container {
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .time-sec {
        max-width: 100px;
    }

    .time-sec h5 {
        font-size: 40px;
    }

    .time-sec p {
        font-size: 12px;
    }

    .time-sec p:last-of-type {
        font-size: 10px;
    }

    .trust-section {
        text-align: center;
        padding: 0 15px;
        margin-top: 30px;
    }

    .trust-section p {
        font-size: 13px;
    }

    .financing-container {
        gap: 40px;
    }

    .financing-content h2 {
        font-size: 36px;
        line-height: 40px;
        text-align: center;
    }

    .financing-content p {
        font-size: 16px;
        text-align: center;
    }

    .financing-visual {
        margin-top: 30px;
    }

    .testimonials-section {
        flex-direction: column;
        gap: 15px;
    }

    .testimonial-card {
        width: 100%;
        height: auto;
        min-height: 250px;
    }

    .juggling-vendors {
        padding: 60px 20px !important;
    }

    .juggling-vendors .featured-image {
        width: 100%;
    }

    .juggling-vendors .header h1 {
        font-size: 36px;
        line-height: 40px;
        text-align: center;
    }

    .juggling-vendors .header p {
        text-align: center;
        max-width: 100%;
    }

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

    .juggling-vendors .cta-container {
        flex-direction: column;
        gap: 20px;
    }

    .juggling-vendors .cta-card {
        width: 100%;
        padding: 20px;
    }

    .juggling-vendors .cta-card h3 {
        font-size: 18px;
    }

    .juggling-vendors .cta-card p {
        line-height: 24px;
    }

    .three-ways {
        padding: 60px 20px;
    }

    .three-ways .header h1 {
        font-size: 36px;
        line-height: 40px;
        text-align: center;
    }

    .three-ways .header p {
        text-align: center;
        max-width: 100%;
    }

    .three-ways .cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .three-ways .card {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        height: 400px;
    }

    .three-ways .card-icon {
        bottom: 34px;
    }

    .service-card-content {
        padding: 30px 20px;
    }

    .service-title {
        font-size: 23px;
        margin-bottom: 20px;
        bottom: 15px;
        color:#fff;
    }

    .service-toggle {
        padding: 30px 25px;
        min-height: 300px;
    }

    .service-provide {
        font-size: 16px;
    }

    .service-list li {
        font-size: 15px;
        margin-bottom: 6px;
    }

    .service-description {
        font-size: 15px;
    }

    .service-perfect {
        font-size: 15px;
    }

    .service-cta {
        font-size: 16px;
    }

    .card-icon {
        bottom: 30px;
        right: 25px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .final-cta {
        height: auto;
    }

    .bottom-cta h3{
        line-height: 50px;
    }

    footer {
        padding: 40px 20px 30px;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }

    .footer-content .logo {
        font-size: 22px;
        gap: 15px;
        justify-content: center;
    }

    .footer-content .logo img {
        width: 30px;
        height: auto;
    }

    .footer-links {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .footer-links a {
        font-size: 16px;
        padding: 10px 0;
    }

    .footer-legal {
        font-size: 13px;
        margin-top: 30px;
        padding: 0 10px;
        line-height: 18px;
    }

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

    .industries-section .section-header h2 {
        font-size: 36px;
        line-height: 40px;
        text-align: center;
    }

    .industries-section .section-header p {
        font-size: 16px;
        text-align: center;
        max-width: 100%;
    }

    .industries-section .industries-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .industries-section .industry-card {
        height: 830px;
        margin: 0 auto;
        max-width: 400px;
    }

    .industries-section .blue_layout,
    .industries-section .yellow_layout,
    .industries-section .pink_layout {
        padding: 20px 15px;
        padding-top: 200px;
    }

    .industries-section .industry-card h3 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .industries-section .industry-card .subtitle {
        font-size: 14px;
        line-height: 1.4;
        margin-bottom: 20px;
    }

    .industries-section .industry-stats {
        margin-bottom: 20px;
    }

    .industries-section .stat-item {
        padding: 6px 0;
    }

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

    .industries-section .stat-value {
        font-size: 15px;
    }

    .industries-section .industry-features {
        margin-bottom: 25px;
    }

    .industries-section .feature-item {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .industries-section .cta-buttons {
        gap: 10px;
    }

    .industries-section .btn-primary,
    .industries-section .btn-secondary {
        padding: 12px 20px;
        font-size: 14px;
    }

    .industries-section .trust-note {
        font-size: 13px;
        margin-top: 6px;
    }

    .industries-section .bottom-cta {
        padding: 40px 20px;
        margin-top: 40px;
    }

    .industries-section .bottom-cta h3 {
        font-size: 28px;
        line-height: 32px;
        margin-bottom: 12px;
    }

    .industries-section .bottom-cta p {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .industries-section .bottom-cta .btn-primary {
        margin: 0 5px 10px;
        padding: 12px 20px;
    }

    .industries-section .phone-cta {
        margin-top: 20px;
        font-size: 18px;
    }

    .main-heading {
        font-size: 2.5em;
    }

    .text-grid {
        flex-direction: column;
    }

    .text-column {
        width: 100%;
        margin-bottom: 20px;
    }

    .face-tiny-right {
        right: 10px;
    }

    .hero {
        overflow: hidden;
    }

    .hero-content {
        margin-left: 0 !important;
        padding: 0 15px;
    }

    .video-section {
        width: 100%;
        max-width: 100%;
    }

    .feature-card {
        width: 100%;
        max-width: 100%;
    }

    .black-bar {
        display: none;
    }

    .how-section,
    .package-section,
    .financing-section {
        padding: 60px 15px;
    }

    .four-column {
        padding: 0 15px;
    }

    .omnichannel-works .content-layer {
        padding: 10% 5%;
    }

    .media {
        overflow: hidden;
    }

    section {
        overflow-x: hidden;
    }

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

    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .metric-item {
        padding: 15px;
    }

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

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

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }

    .guarantee-card {
        padding: 28px 24px;
    }
}

/* Fix for 375px mobile nav */
@media (max-width: 400px) {
    .nav-container {
        padding: 0 8px !important;
        gap: 4px;
    }

    .nav-container .logo {
        font-size: 14px !important;
        gap: 4px !important;
    }

    .nav-container .logo img {
        width: 18px !important;
    }

    .nav-right {
        gap: 4px !important;
    }

    .nav-dropdown {
        margin-right: 0 !important;
    }

    .nav-dropdown-toggle,
    .hero .nav-dropdown-toggle {
        font-size: 12px !important;
        gap: 2px !important;
    }

    .nav-dropdown-toggle svg,
    .hero .nav-dropdown-toggle svg {
        width: 8px !important;
        height: 5px !important;
    }

    .phone-link {
        font-size: 12px !important;
        gap: 2px !important;
    }

    .phone-link svg {
        width: 12px !important;
        height: 12px !important;
    }

    .cta-button-new {
        padding: 5px 8px !important;
        font-size: 12px !important;
        white-space: nowrap;
    }
}
