@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700;900&display=swap');

:root {
    --primary-blue: #007bff;
    --dark-navy: #0b1120;
    --soft-gray: #f8f9fa;
    --border-color: #e5e7eb;
    --text-muted: #6b7280;
}

/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1f2937;
    line-height: 1.6;
    background-color: #ffffff;
}

html {
    scroll-behavior: smooth;
}

/* Navbar Styles */
.navbar {
    padding: 1.2rem 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.navbar .navbar-brand {
    font-size: 1.5rem;
    color: var(--primary-blue) !important;
    letter-spacing: -0.02em;
}

.navbar .nav-link {
    color: #4b5563 !important;
    font-weight: 500;
    transition: color 0.3s ease;
    margin: 0 0.5rem;
}

.navbar .nav-link:hover {
    color: var(--primary-blue) !important;
}

/* Hero Section */
.hero-section {
    padding: 30px 0 80px;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.05) 0%, rgba(255, 255, 255, 0.5) 100%);
    overflow: hidden;
}

.hero-section h1 {
    font-family: 'Roboto', sans-serif;
    font-size: 56px;
    font-weight: 900;
    letter-spacing: 0%;
    line-height: 60px;
    margin-bottom: 1.5rem;
    width: 700px;
    opacity: 1;

    padding: 10px 16px;
    text-shadow: 0 2px 0 rgba(0, 0, 0, 0.03), 0 6px 18px rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 30px rgba(16, 24, 40, 0.04);
}

.hero-section .highlight {
    display: inline-block;
    background-color: #FFD700;
    padding: 0 10px;
    color: #000;
    margin-left: 8px;
    border-radius: 4px;
}

.hero-section p {
    font-size: 1.2rem;
    line-height: 1.8;
}

.hero-section .lead {
    margin-top: 5px;
}

.btn {
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-blue);
    border: none;
}

.btn-primary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.3);
}

.btn-outline-secondary {
    color: #6b7280;
    border-color: #d1d5db;
}

.btn-outline-secondary:hover {
    background-color: #f3f4f6;
    border-color: #9ca3af;
}

/* Final CTA styles (blue background, white input, arrow) */
.cta-form {
    display: inline-block;
    background: #0d6efd;
    /* primary blue */
    padding: 8px;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(13, 110, 253, 0.12);
}

.cta-form .cta-inner {
    display: flex;
    gap: 12px;
    align-items: center;
}

.cta-input {
    background: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 14px 18px;
    min-width: 320px;
    color: #1f2937;
    font-size: 16px;
    box-shadow: 0 4px 18px rgba(2, 6, 23, 0.06);
}

.cta-input::placeholder {
    color: #bfc7d0;
}

.cta-input:focus {
    outline: none;
    box-shadow: 0 6px 22px rgba(2, 6, 23, 0.09);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #fff;
    border: none;
    padding: 14px 24px;
    font-weight: 700;
    font-size: 18px;
    border-radius: 8px;
    cursor: pointer;
}

.cta-button:hover {
    background: rgba(255, 255, 255, 0.06);
}

.cta-arrow {
    color: #ffffff;
    transform: translateX(0);
    transition: transform .18s ease;
}

.cta-button:hover .cta-arrow {
    transform: translateX(6px);
}

.free {
    list-style: none;
}

.points {
    display: flex;
}

.points>ul {
    display: flex;
    gap: 25px;
    margin-top: 20px;
}

.hero-frame {
    height: 600px;
    width: 1920px;
    margin-left: 200px;
    background-color: #D6DAE433;
    position: relative;
    bottom: 250px;
}

.frame-text {
    margin-top: 350px;
    margin-left: 100px;
    color: #9CA0AC;
    font-family: Roboto;
    font-weight: 500px;
    font-size: 18px;

    line-height: 100%;
    letter-spacing: 0%;
    box-shadow: 50px;
    vertical-align: middle;
    font-variant: small-caps;
}

.card-1 {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    padding: 40px 0;
}

.card-1-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-1-right {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.fruits {
    padding: 30px;
    width: 100%;
    max-width: 100%;
}

.card-1-right-text>h6 {
    font-family: Roboto;
    font-weight: 900;
    font-size: 48px;

    line-height: 100%;
    letter-spacing: 0%;

}

.card-1-right-text {
    margin-bottom: 24px;
}

.card-1-right>ul {
    list-style: none;
    padding-left: 0;
}

.card-1-right ul li {
    margin-bottom: 16px;
    padding-bottom: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    width: 100%;
    white-space: nowrap;
}

.card-1-right ul li img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.card-1-right ul li.carousel-highlight {
    background-color: #F4F6FA;
    color: var(--primary-blue);
    padding: 12px 4px;
    border-radius: 8px;
    width: 200px;
}

/* Story Saver Section */
.story-saver-section {
    background-color: #f0f2f7;
    padding: 60px 0;
}

.story-saver-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.highlight-yellow {
    background-color: #FFD700;
    padding: 0 8px;
    color: #000;
}

.story-saver-section .lead {
    color: #4b5563;
    font-size: 1.05rem;
    margin-bottom: 40px;
}

.social-cards-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.social-card {
    background: #fff;
    padding: 30px 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    min-width: 160px;
    flex: 0 1 calc(20% - 16px);
}

.social-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.social-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 28px;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
}

.social-icon.facebook {
    background: #1877f2;
    color: #fff;
}

.social-icon.tiktok {
    background: #25f4ee;
    color: #000;
}

.social-icon.twitter {
    background: #1da1f2;
    color: #fff;
}

.social-icon.linkedin {
    background: #0a66c2;
    color: #fff;
}

.social-card h6 {
    font-weight: 700;
    color: #1f2937;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .social-card {
        flex: 0 1 calc(33.333% - 14px);
    }
}

@media (max-width: 768px) {
    .social-card {
        flex: 0 1 calc(50% - 10px);
    }

    .story-saver-section h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .social-cards-row {
        flex-direction: column;
    }

    .social-card {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    .cta-inner {
        flex-direction: column;
        gap: 10px;
    }

    .cta-input {
        min-width: 100%;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }
}

/* Dashboard Preview */
.dashboard-preview {
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-color);
    max-width: 100%;
    animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stats Section */
.stats-section {
    background-color: #f8f9fa;
}

.stats-section h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.stats-section p {
    color: #6b7280;
    font-size: 1.1rem;
}

/* Features Section */
.ideas-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
}

.feature-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 255, 0.1);
    border-color: var(--primary-blue);
}

.feature-card h5 {
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.7;
}

.feature-card .icon {
    display: flex;
    align-items: center;
}

/* Widgets Section */
.widgets-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
}

.widgets-section .rounded {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.widgets-section .rounded:hover {
    transform: scale(1.02);
}

/* Add gap between framed/widget images */
.widgets-section .row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 0 -8px;
}

.widgets-section .col-md-6 {
    flex: 1 1 calc(50% - 16px);
    padding: 0 8px 16px;
    box-sizing: border-box;
}

.widgets-section .rounded {
    margin: 0;
    /* gap handled by row gap */
}

/* Hero frame image gaps */
.hero-frame {
    margin-top: 24px;
}

.hero-frame .frame-imgs {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 12px;
}

.hero-frame .frame-imgs img {
    max-height: 40px;
    object-fit: contain;
    display: block;
}

/* Get Started Section */
.get-started {
    padding: 80px 0;
}

.bg-dark-custom {
    background-color: var(--dark-navy);
    color: white;
}

.bg-dark-custom h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

.get-started .btn-primary {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Pricing Section */
.pricing-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
}

.pricing-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.pricing-card h6 {
    font-weight: 700;
    letter-spacing: 0.05em;
}

.pricing-card h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.pricing-card ul li {
    color: #6b7280;
    border-bottom: 1px solid var(--border-color);
    padding: 0.75rem 0;
}

.pricing-card ul li:last-child {
    border-bottom: none;
}

.pricing-card ul li i {
    margin-right: 0.5rem;
}

.pricing-card.featured {
    border: 2px solid var(--primary-blue);
    box-shadow: 0 20px 40px rgba(0, 123, 255, 0.15);
}

.pricing-card.featured .badge {
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
}

.pricing-card .btn {
    padding: 12px 28px;
    margin-top: 1rem;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
}

.faq-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 3rem;
}

.accordion {
    border: none;
    background-color: transparent;
}

.accordion-item {
    border: 1px solid var(--border-color);
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-button {
    background-color: white;
    color: #1f2937;
    font-weight: 600;
    padding: 1.5rem;
    border: none;
}

.accordion-button:not(.collapsed) {
    background-color: #f8f9fa;
    color: var(--primary-blue);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-blue);
}

.accordion-body {
    padding: 1.5rem;
    color: #6b7280;
    line-height: 1.8;
    background-color: white;
}

/* Footer */
.footer {
    background-color: var(--dark-navy);
    color: #d1d5db;
}

.footer h5,
.footer h6 {
    color: white;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer a {
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--primary-blue) !important;
}

.footer p {
    color: #9ca3af;
    line-height: 1.8;
}

.footer .text-secondary {
    color: #9ca3af !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .stats-section h3 {
        font-size: 2rem;
    }

    .ideas-section h2,
    .widgets-section h2,
    .pricing-section h2,
    .faq-section h2 {
        font-size: 1.8rem;
    }

    .d-flex.gap-3 {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .navbar .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .pricing-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 60px 0 40px;
    }

    .hero-section h1 {
        font-size: 1.8rem;
    }

    .hero-section p {
        font-size: 0.95rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .container.px-5 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
}

/* Utility Classes */
.text-white-50 {
    color: rgba(255, 255, 255, 0.5);
}

.opacity-75 {
    opacity: 0.75;
}

/* Smooth Transitions */
a,
button {
    transition: all 0.3s ease;
}

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

body {
    animation: fadeIn 0.6s ease-in;
}

/* Feature Cards */
.feature-card {
    border: 1px solid var(--border-color);
    background: #fff;
    transition: all 0.3s ease;
    border-radius: 12px;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-blue);
}

.feature-icon {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

/* Growth Section */
.growth-section {
    background: #fff;
    padding: 80px 0;
}

.growth-section h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 48px;
    font-weight: 900;
    line-height: 1.3;
    color: #000;
    margin-bottom: 60px;
}

.highlight-yellow {
    background-color: #FFD700;
    padding: 4px 10px;
    display: inline-block;
}

.benefits-row {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.benefit-card {
    background: #e8ecf8;
    padding: 40px 30px;
    border-radius: 12px;
    width: 100%;
    max-width: 340px;
    flex: 1 1 calc(33.333% - 20px);
    text-align: left;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin-bottom: 20px;
}

.benefit-icon.brands {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.benefit-icon.marketers {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.benefit-icon.designers {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.benefit-card h5 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #000;
}

.benefit-subheading {
    font-size: 14px;
    font-weight: 600;
    color: #4b5563;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.benefit-text {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1024px) {
    .benefits-row {
        flex-direction: column;
        align-items: center;
    }

    .benefit-card {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .growth-section h2 {
        font-size: 36px;
    }

    .benefit-card {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .growth-section h2 {
        font-size: 28px;
    }

    .benefit-card {
        padding: 20px 16px;
    }
}

/* Testimonial Section */
.testimonial-section {
    background: #fff;
    padding: 80px 0;
}

.testimonial-card {
    background: #fff;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-company {
    font-size: 24px;
    font-weight: 900;
    color: #000;
    margin-bottom: 30px;
    font-family: 'Roboto', sans-serif;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 40px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.author-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 3px solid #e0e0e0;
}

.author-info {
    text-align: left;
}

.author-name {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin: 0;
}

@media (max-width: 768px) {
    .testimonial-section {
        padding: 60px 0;
    }

    .testimonial-text {
        font-size: 16px;
    }

    .testimonial-company {
        font-size: 20px;
    }

    .author-image {
        width: 70px;
        height: 70px;
    }

    .author-name {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .testimonial-section {
        padding: 40px 0;
    }

    .testimonial-text {
        font-size: 14px;
    }

    .testimonial-company {
        font-size: 18px;
    }

    .testimonial-author {
        flex-direction: column;
        gap: 15px;
    }

    .author-info {
        text-align: center;
    }

    .author-image {
        width: 60px;
        height: 60px;
    }
}

/* Pricing Section */
.pricing-card {
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--border-color);
    background: #fff;
}

.pricing-card.featured {
    border: 2px solid var(--primary-blue);
    transform: scale(1.05);
    z-index: 2;
}

.price-tag {
    font-size: 3rem;
    font-weight: 800;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-blue);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 10px;
}

.btn-outline-primary {
    border-width: 2px;
    font-weight: 600;
}

/* Templates Section */
.templates-section {
    background: linear-gradient(135deg, #0b1120 0%, #1a2a4a 100%);
    padding: 80px 0;
}

.templates-heading {
    font-family: 'Roboto', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 20px;
}

.templates-description {
    font-size: 16px;
    color: #d1d5db;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.templates-button {
    display: inline-block;
    background: #0d6efd;
    color: #fff;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    margin-bottom: 60px;
}

.templates-button:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(13, 110, 253, 0.3);
    color: #fff;
}

.templates-button i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.templates-button:hover i {
    transform: translateX(4px);
}

.templates-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.template-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.template-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.template-image {
    width: 100%;
    height: 200px;
    background: #f0f2f7;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.template-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.highlights-preview {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.highlight-item img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e0e0e0;
}

.highlight-item span {
    font-size: 12px;
    color: #1f2937;
    font-weight: 500;
    text-align: center;
}

.template-content {
    padding: 24px;
}

.template-content h5 {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.template-content p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.pagination-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #fff;
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1024px) {
    .templates-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .templates-heading {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .templates-section {
        padding: 60px 0;
    }

    .templates-grid {
        grid-template-columns: 1fr;
    }

    .templates-heading {
        font-size: 32px;
    }

    .templates-description {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .templates-section {
        padding: 40px 0;
    }

    .templates-heading {
        font-size: 24px;
    }

    .template-image {
        height: 150px;
    }

    .templates-button {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* Integrations Section */
.integrations-section {
    background: #e8ecf8;
    padding: 80px 0;
}

.integrations-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.integrations-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
    background: rgba(13, 110, 253, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    width: fit-content;
}

.integrations-heading {
    font-family: 'Roboto', sans-serif;
    font-size: 44px;
    font-weight: 900;
    color: #000;
    line-height: 1.3;
    margin-bottom: 20px;
}

.integrations-description {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 40px;
}

.integrations-checklist {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #1f2937;
}

.check-item i {
    color: var(--primary-blue);
    font-size: 20px;
    flex-shrink: 0;
}

.integrations-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.integrations-icon {
    width: 120px;
    height: 120px;
    background: rgba(13, 110, 253, 0.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: var(--primary-blue);
    flex-shrink: 0;
}

.integrations-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.logo-item {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.logo-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.logo-item img {
    max-width: 90%;
    max-height: 60px;
    object-fit: contain;
}

@media (max-width: 1024px) {
    .integrations-row {
        gap: 40px;
    }

    .integrations-heading {
        font-size: 36px;
    }

    .integrations-logos {
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .integrations-section {
        padding: 60px 0;
    }

    .integrations-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .integrations-heading {
        font-size: 32px;
    }

    .integrations-visual {
        flex-direction: column;
        gap: 30px;
    }

    .integrations-icon {
        width: 100px;
        height: 100px;
        font-size: 50px;
    }

    .integrations-logos {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .integrations-section {
        padding: 40px 0;
    }

    .integrations-heading {
        font-size: 24px;
    }

    .integrations-description {
        font-size: 14px;
    }

    .integrations-logos {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .logo-item {
        padding: 16px;
        min-height: 70px;
    }
}

/* Section Label */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 16px;
    background: rgba(13, 110, 253, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    width: fit-content;
}

.section-description {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* Customization Section */
.customization-section {
    background: #fff;
    padding: 80px 0;
}

.customization-heading {
    font-family: 'Roboto', sans-serif;
    font-size: 44px;
    font-weight: 900;
    color: #000;
    line-height: 1.3;
    margin-bottom: 20px;
}

.features-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.feature-badge {
    display: inline-block;
    background: #f0f2f7;
    color: #1f2937;
    padding: 10px 18px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.feature-badge:hover {
    background: #e8ecf8;
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

/* Icon inside feature badge */
.feature-badge i {
    margin-right: 10px;
    color: var(--primary-blue);
    font-size: 16px;
    vertical-align: middle;
}

.customization-image {
    margin-top: 50px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.customization-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Installation Section */
.installation-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.installation-row {
    display: flex;
    flex-direction: row;
    gap: 60px;
    align-items: center;
    justify-content: center;
}

.installation-content {
    order: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
}

.installation-heading {
    font-family: 'Roboto', sans-serif;
    font-size: 44px;
    font-weight: 900;
    color: #000;
    line-height: 1.3;
    margin-bottom: 30px;
}

.installation-features {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.install-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 16 px;
    color: #1f2937;
}

.install-feature i {
    display: flex;
    color: var(--primary-blue);
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.installation-image {
    order: 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 520px;
    margin-top: 20px;
}

.installation-image img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 1024px) {

    .customization-heading,
    .installation-heading {
        font-size: 36px;
    }

    .installation-row {
        gap: 40px;
    }
}

@media (max-width: 768px) {

    .customization-section,
    .installation-section {
        padding: 60px 0;
    }

    .customization-heading,
    .installation-heading {
        font-size: 32px;
    }

    .installation-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .installation-content {
        order: 1;
    }

    .installation-image {
        order: 2;
    }

    .features-badges {
        gap: 10px;
    }

    .feature-badge {
        font-size: 13px;
        padding: 8px 14px;
    }
}

@media (max-width: 576px) {

    .customization-section,
    .installation-section {
        padding: 40px 0;
    }

    .customization-heading,
    .installation-heading {
        font-size: 24px;
    }

    .section-description {
        font-size: 14px;
    }

    .features-badges {
        gap: 8px;
    }

    .feature-badge {
        font-size: 12px;
        padding: 6px 12px;
    }

    .installation-features {
        gap: 16px;

    }

    .install-feature {
        font-size: 14px;
    }
}

/* Footer Styling */
/* Implementation Section */
.implementation-section {
    background: #fff;
    padding: 80px 0;
}

.implementation-row {
    display: grid;
    grid-template-columns: 1fr 520px;
    gap: 40px;
    align-items: center;
}

.implementation-screenshot img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(2, 6, 23, 0.08);
    background: #f8fafc;
}

.implementation-modal {
    display: flex;
    align-items: center;
    justify-content: center;
}

.impl-modal-card {
    width: 100%;
    max-width: 520px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(2, 6, 23, 0.08);
    padding: 20px;
    border: 1px solid #eef2f6;
}

.impl-modal-media img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 14px;
}

.impl-title {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.impl-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.impl-tabs .tab {
    background: #f3f4f6;
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    color: #374151;
}

.impl-tabs .tab.active {
    background: var(--primary-blue);
    color: #fff;
}

.impl-code {
    background: #0f1724;
    color: #e6eef8;
    padding: 14px;
    border-radius: 8px;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, 'Roboto Mono', 'Courier New', monospace;
    font-size: 13px;
    overflow-x: auto;
    margin-bottom: 12px;
}

.impl-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-start;
}

.copy-btn {
    background: var(--primary-blue);
    color: #fff;
    padding: 10px 16px;
    border-radius: 8px;
    border: none;
    font-weight: 700;
}

@media (max-width: 1024px) {
    .implementation-row {
        grid-template-columns: 1fr;
    }

    .impl-modal-card {
        max-width: 680px;
    }
}

@media (max-width: 576px) {
    .implementation-section {
        padding: 40px 0;
    }

    .impl-modal-media img {
        height: 120px;
    }

    .impl-title {
        font-size: 16px;
    }
}

footer {
    background-color: var(--dark-navy);
    padding: 80px 0 40px;
}

footer a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s;
}

footer a:hover {
    color: #fff;
}

/* CTA Form Styles - updated to match provided design */
.cta-form {
    background: var(--primary-blue);
    border: none;
    padding: 10px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    max-width: 100%;
}

.cta-form .input-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cta-form .cta-input {
    background: #ffffff;
    border-radius: 6px;
    border: none;
    padding: 14px 18px;
    min-width: 300px;
    color: #1f2937;
}

.cta-form .cta-input::placeholder {
    color: #bfc7d0;
}

.cta-form .cta-input:focus {
    outline: none;
    box-shadow: 0 4px 18px rgba(2, 6, 23, 0.08);
}

.cta-form .cta-button {
    background: rgba(255, 255, 255, 0.0);
    color: #fff;
    border: none;
    padding: 14px 28px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 10px;
}

.cta-form .cta-button .fa-arrow-right {
    font-size: 1rem;
}

/* Use a slightly darker blue for button hover */
.cta-form .cta-button:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

@media (max-width: 768px) {
    .cta-form {
        width: 100%;
        padding: 8px;
    }

    .cta-form .input-group {
        flex-direction: column;
        gap: 12px;
    }

    .cta-form .cta-input {
        min-width: 100%;
    }

    .cta-form .cta-button {
        width: 100%;
        justify-content: center;
    }
}

/* Get Started Widget Section */
.start-widget-section {
    background: linear-gradient(135deg, #e8ecf8 0%, #f0f2f7 100%);
    padding: 80px 0;
}

.start-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.start-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.start-heading {
    font-family: 'Roboto', sans-serif;
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    color: #000;
}

.start-lead {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.8;
}

.start-cta {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.start-input {
    flex: 1;
    background: #fff;
    border: 2px solid #d1d5db;
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 14px;
    color: #1f2937;
}

.start-input::placeholder {
    color: #9ca3af;
}

.start-input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
}

.start-button {
    background: var(--primary-blue);
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.start-button:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.3);
}

.start-button i {
    transition: transform 0.3s ease;
}

.start-button:hover i {
    transform: translateX(4px);
}

.start-sub {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
}

.start-right {
    position: relative;
}

.preview-carousel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    width: 100%;
}

.carousel-nav {
    background: rgba(0, 0, 0, 0.5);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.carousel-nav:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: scale(1.1);
}

.preview-cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    flex: 1;
    width: 100%;
}

.preview-card {
    position: relative;
    flex: 0 0 calc(33.333% - 14px);
    max-width: 240px;
    height: 340px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
    transition: all 0.3s ease;
    background: #fff;
}

.preview-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    z-index: 2;
    text-transform: capitalize;
}

.card-image {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.card-overlay {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    z-index: 3;
    backdrop-filter: blur(4px);
}

.card-number {
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.card-number small {
    font-size: 10px;
    opacity: 0.85;
    font-weight: 500;
}

.card-title {
    padding: 12px 14px;
    font-size: 13px;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    background: #fff;
    border-top: 1px solid #f3f4f6;

    font-weight: 600;
    color: #1f2937;
    margin: 0;
    background: #fff;
    border-top: 1px solid #f3f4f6;
}

.powered {
    text-align: center;
    font-size: 13px;
    color: #6b7280;
}

.powered i {
    color: var(--primary-blue);
    margin: 0 4px;
    font-size: 8px;
}


.features-wrapper {
    margin-top: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.features-layout {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
}

.feature-box {
    background: #fff;
    border-radius: 20px;
    padding: 35px 30px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #0066FF;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-box h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 16px;
    line-height: 1.5;
    color: #333;

}

.features-wrapper>h6 {
    padding: 30px;
    font-family: Roboto;
    font-weight: 900;
    font-size: 48px;
    line-height: 100%;
    letter-spacing: 0px;
    text-align: center;
    vertical-align: middle;

}


.review-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    background: #1a2332;
    border-radius: 30px;
    padding: 60px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.review-text {
    flex: 1;
    color: white;
}

.review-text h1 {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 30px 0;
    line-height: 1.2;
}

.review-text blockquote {
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 25px 0;
    color: #e5e5e5;
}

.review-author {
    font-size: 16px;
    color: #b8b8b8;
    margin-bottom: 35px;
}

.review-brand {
    font-family: 'Brush Script MT', cursive;
    font-size: 42px;
    color: white;
    font-style: italic;
}

.review-photo {
    flex: 1;
    min-width: 500px;
    height: 320px;
    background: #d4d4d4;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 18px;
}

@media (max-width: 1024px) {
    .review-wrapper {
        flex-direction: column;
        padding: 40px;
    }

    .review-photo {
        min-width: 100%;
        width: 100%;
    }

    .review-text h1 {
        font-size: 36px;
    }
}

@media (max-width: 1200px) {
    .features-layout {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .start-row {
        gap: 40px;
    }

    .preview-card {
        flex: 0 0 calc(33.333% - 14px);
        max-width: 220px;
        height: 320px;
    }

    .card-image {
        height: 240px;
    }
}

@media (max-width: 768px) {
    .start-widget-section {
        padding: 60px 0;
    }

    .start-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .start-heading {
        font-size: 36px;
    }

    .start-cta {
        flex-direction: column;
    }

    .start-input,
    .start-button {
        width: 100%;
    }

    .preview-cards {
        gap: 16px;
    }

    .preview-card {
        flex: 0 0 calc(33.333% - 11px);
        max-width: 180px;
        height: 300px;
    }

    .card-image {
        height: 220px;
    }

    .preview-carousel {
        gap: 16px;
    }
}

@media (max-width: 576px) {
    .start-widget-section {
        padding: 40px 0;
    }

    .start-heading {
        font-size: 28px;
    }

    .start-lead {
        font-size: 14px;
    }

    .start-input,
    .start-button {
        font-size: 13px;
        padding: 12px 14px;
    }

    .preview-cards {
        gap: 12px;
    }

    .preview-card {
        flex: 0 0 calc(33.333% - 8px);
        max-width: 160px;
        height: 260px;
    }

    .card-image {
        height: 200px;
    }

    .preview-carousel {
        gap: 12px;
    }

    .carousel-nav {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
}