/*
Theme Name: Foster & Funnel
Theme URI: https://fosterandfunnel.com
Author: Foster & Funnel
Author URI: https://fosterandfunnel.com
Description: A custom WordPress theme for Foster & Funnel landing page with Bootstrap 5
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: foster-funnel
Tags: business, landing-page, bootstrap, responsive
*/

/* ==========================================
   TABLE OF CONTENTS
   ==========================================
   1. Imports & Fonts
   2. CSS Variables
   3. Reset & Base Styles
   4. Header & Navigation
   5. Hero Section
   6. Typography
   7. Buttons & CTAs
   8. Sections
   9. Feature Cards
   10. Testimonials & Case Studies
   11. Carousel
   12. FAQ / Accordion
   13. Form
   14. Footer
   15. Blog
   16. Post
   17. Responsive Media Queries
   ========================================== */

/* ==========================================
   1. IMPORTS & FONTS
   ========================================== */
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* ==========================================
   2. CSS VARIABLES
   ========================================== */
:root {
    /* Colors */
    --primary-blue: #0732EF;
    --primary-pink: #EB5600;
    --text-dark: #1E1E1E;
    --text-medium: #37414E;
    --text-light: #64748B;
    --bg-light: #E0E6FF;
    --border-light: #E2E8F0;
    --card-bg: rgba(255, 255, 255, 0.40);
    --card-border: rgba(255, 255, 255, 1);
    
    /* Spacing & Layout */
    --radius: 12px;
    --gap: 24px;
    --blur: 7.5px;
    
    /* Effects */
    --shadow: 0 1px 0 rgba(0, 0, 0, .02), 0 10px 30px rgba(0, 0, 0, .08);
    --duration: 60s;
}

/* ==========================================
   3. RESET & BASE STYLES
   ========================================== */
*, html {
    margin-top: 0 !important;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rubik', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 16px;
}

body::before {
    content: "";
    position: fixed;
    opacity: 0.1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: radial-gradient(
        circle at 20% 30%,
        var(--primary-blue) 0%,
        white 50%,
        var(--primary-pink) 100%
    );
    z-index: -1;
}

/* Hide WordPress Admin Bar */
#wpadminbar,
.nfd-site-preview-warning {
    display: none !important;
}

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

mark,
.mark {
    background-color: yellow;
}

.gradient-text {  
    font-weight: 800;
    background: linear-gradient(to right, #0732EF 0%, #0024C4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


/* ==========================================
   4. HEADER & NAVIGATION
   ========================================== */
body.home .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: all 0.1s ease;
    border-bottom: none;
}

.site-header {
    padding: 24px 0;
    border-bottom: 1px solid var(--border-light);
}

body.home .site-header.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 0;
    border-bottom: 1px solid white;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.site-header .hero-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
    height: 32px;
}

.site-header .hero-logo {
    position: relative;
    height: 32px;
    display: flex;
    align-items: center;
}

.brand-logo,
.brand-logo-full {
    height: 28px;
    width: auto;
    opacity: 1;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.site-header .cta-secondary {
    transition: all 0.3s ease;
    display: none;
    background: white;
}

body.home .site-header .cta-secondary {
    display: inline-block;
}

#content.site-content {
    padding-top: 0;
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--primary-blue);
}

/* ==========================================
   5. HERO SECTION
   ========================================== */
.hero-section {
    padding: 80px 0 96px 0;
    position: relative;
    overflow: hidden;
}

.hero-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-logo {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-blue);
    letter-spacing: 0.5px;
}

.hero-content-wrapper {
    position: relative;
}

.hero-box {
    background: linear-gradient(135deg, #0732EF 50%, #0024C4 100%);
    border-radius: var(--radius);
    padding: 96px 20px;
    margin: 0 24px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-box::before {
    content: "";    
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url('images/image-hero-background.png');
    background-size: auto;
    background-position: top center;
    background-repeat: no-repeat;
    opacity: 0.6; 
    mix-blend-mode: overlay; 
    z-index: -1; 
}

.hero-box .eyebrow {
    color: white;
    text-align: center !important;
    font-weight: 300;
    font-size: 18px;
}

.hero-box .description {
    color: white;
    max-width: 860px;
    margin: 0 auto 24px;
}

.hero-box .description strong {
    font-weight: 700;
}

.hero-box .trust-badge {
    color: white;
}

.hero-section .description {
    text-align: center;
}

/* Metric Cards */
.metric-cards-image {
    position: relative;
    top: -72px;
    margin: 0 auto -36px;
    width: 100%;
    max-width: 1000px;
    pointer-events: none;
    z-index: 2;
}

img.metrics {
    width: 100%;
    height: auto;
    display: block;
}

/* Partner Logos */
.partner-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 40px;
    margin: 0 0 72px;
    align-items: center;
    justify-items: center;
}

.partner-logo {
    max-height: 60px;
    width: auto;
    transition: opacity 0.3s;
}

.cta-group-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

/* ==========================================
   6. TYPOGRAPHY
   ========================================== */
h1,
h2,
h3,
h4,
h5 {
    font-family: 'Montserrat', sans-serif; 
}

.hero-title {
    font-size: 92px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 24px;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
}

.section-title {
    font-size: 48px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 36px;
    line-height: 1.2;
    letter-spacing: 0.01em;
}

.section-subtitle {
    font-size: 32px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 96px auto 24px;
    line-height: 1.2;
    letter-spacing: 0.01em;
}

.subtitle {
    font-size: 28px;
    color: var(--text-dark);
    margin: 0 0 24px;
    line-height: 1.5;
    font-weight: 400;
}

.description {
    font-size: 20px;
    color: var(--text-dark);
    margin: 0 0 48px;
    line-height: 1.7;
    font-weight: 400;
}

.eyebrow {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 12px;
}



/* ==========================================
   7. BUTTONS & CTAs
   ========================================== */
.cta-button {
    background: var(--text-dark);
    color: white;
    padding: 16px 24px;
    border-radius: 6px;
    font-weight: 400;
    border: none;
    font-size: 16px;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
}

.cta-button i {
    margin-left: 5px;
}

.cta-button:hover {
    background: var(--primary-pink);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.5);
    color: white;
}

.cta-secondary {
    transition: all 0.3s;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
    border-radius: 6px;
    padding: 8px 12px;
    border: 1px solid var(--text-dark);
}

.cta-secondary:hover {
    color: white;
    background: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.cta-phone {
    text-decoration: none;
    margin: 0 24px;
    color: var(--text-dark);
    font-size: 14px;
}

.cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 24px 0 0;
}

.trust-badge {
    text-align: center;
    padding: 16px;
    color: var(--text-light);
    font-size: 14px;
}

.form-submit-button-gray-900.submit-button, li[data-type=control_button] button.jf-form-buttons.form-submit-button-gray-900.submit-button {
    background: var(--text-dark) !important;
    color: white !important;
    padding: 16px 24px !important;
    border-radius: 6px !important;
    font-weight: 400 !important;
    border: none !important;
    font-size: 16px !important;
    transition: all 0.3s !important;
    text-decoration: none !important;
    display: inline-block !important;
    cursor: pointer !important;
    height: auto !important;
}

.form-submit-button-gray-900.submit-button:hover, li[data-type=control_button] button.jf-form-buttons.form-submit-button-gray-900.submit-button:hover {
    background: var(--primary-pink) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 16px rgba(233, 30, 140, 0.3) !important;
    color: white !important;
}

.success-animation { 
        margin: 180px auto 0 !important;
    }
    .success-notice {

    text-align: center;
    margin-top: 12px !important;
    font-size: 18px;
    font-weight: 600;
    margin-right: 5px;
    color: #4bb71b;

    }

.checkmark {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #4bb71b;
    stroke-miterlimit: 10;
    box-shadow: inset 0px 0px 0px #4bb71b;
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
    position:relative;
    top: 5px;
    right: 5px;
   margin: 0 auto;
}
.checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #4bb71b;
    fill: #fff;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
 
}

.checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes scale {
    0%, 100% {
        transform: none;
    }

    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 30px #4bb71b;
    }
}


.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #0732EF 50%, #0024C4 100%);
    z-index: 1000;
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-logo {
    flex-shrink: 0;
}

.cta-logo .logo-icon {
    height: 30px;
    width: auto;
}

.cta-text-action {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    flex: 1;
    justify-content: flex-end;
    color: white;
    font-size: 12px;
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--text-dark);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-blue);
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.5);
}

.back-to-top:active {
    transform: translateY(-2px);
}

.back-to-top i {
    transition: transform 0.3s ease;
}

.back-to-top:hover i {
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .sticky-cta {
        padding: 16px 0;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .cta-text-action {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .cta-logo .logo-icon {
        height: 32px;
    }
}

/* ==========================================
   8. SECTIONS
   ========================================== */
.section-content {
    padding: 96px 0;
    position: relative;
}

.section-bg-light {
    background: linear-gradient(to bottom right, #E0E6FF, #E9EDFF);
}

.success-section {
    padding: 96px 0;
}

/* Team Section */
.team-image {
    width: 100%;
    border-radius: 12px;
}

.founder-signature {
    margin-top: 32px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.founder-image {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.founder-name {
    font-weight: 600;
    display: block;
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.founder-title {
    color: var(--text-dark);
    font-size: 14px;
    display: block;
}

/* ==========================================
   9. FEATURE CARDS
   ========================================== */
.features-section {
    padding: 96px 0;
    position: relative;
}

.features-grid {
    margin-bottom: 24px;
}


.features-grid:last-child {
    margin-bottom: 96px;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 40px;
    transition: all 0.3s;
    height: 100%;
    backdrop-filter: blur(var(--blur));
    -webkit-backdrop-filter: blur(var(--blur));
    box-shadow: var(--shadow);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.feature-card h4 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 16px;
    font-size: 28px;
}

.feature-subheading {
    color: var(--text-medium);
    font-size: 18px;
    font-weight: 500;
}

.feature-description {
    color: var(--text-medium);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.feature-description::after {
    content: "";
    display: block;
    position: relative;
    margin-top: 24px;
    width: 100%;
    height: 1px;
    background-color: var(--border-light);
}

.feature-includes {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 0;
}

.feature-card .cta-group {
    align-items: start;
    margin: 0;
    position: absolute;
    bottom: 40px;
}

/* Integration Logos */
.integration-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    align-items: center;
    justify-items: center;
    margin: 60px 0;
}

.integration-logo {
    max-height: 60px;
    width: auto;
}

/* ==========================================
   10. TESTIMONIALS & CASE STUDIES
   ========================================== */
.testimonial-wrapper,
.casestudy-wrapper {
    max-width: 100%;
    margin: 0 auto;
}

.testimonial-image-wrapper,
.casestudy-image-wrapper {
    margin-bottom: 0;
}

.testimonial-image,
.casestudy-image {
    width: 100%;
    box-shadow: none;
    border-radius: 12px 12px 0 0;
}

.testimonial-card,
.casestudy-card {
    padding: 48px;
    position: relative;
    flex: 0 0 auto;
    border-radius: var(--radius);
    border: 1px solid var(--card-border);
    background: var(--card-bg);
    backdrop-filter: blur(var(--blur));
    -webkit-backdrop-filter: blur(var(--blur));
    box-shadow: var(--shadow);
}

.testimonial-card {
    width: 340px;
}

.testimonial-badge,
.casestudy-badge {
    position: absolute;
    top: -20px;
    right: 48px;
    background: #D4F4DD;
    color: #047857;
    padding: 12px 20px;
    border-radius: 24px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.testimonial-stars,
.casestudy-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
}

.testimonial-star,
.casestudy-star {
    color: #FFC107;
    font-size: 24px;
}

.testimonial-text,
.casestudy-text {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 32px;
    font-weight: 400;
}

.testimonial-text strong,
.casestudy-text strong {
    font-weight: 600;
}

.testimonial-author,
.casestudy-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-image {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    flex: 1;
}

.author-info h5 {
    margin: 0 0 4px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.author-info p {
    margin: 0;
    font-size: 14px;
    color: var(--text-dark);
}

.testimonial-stats {
    display: flex;
    gap: 32px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
}

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

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 4px;
}

.stat-label {
    display: block;
    font-size: 14px;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonial-logo {
    height: 70px;
}

/* ==========================================
   11. CAROUSEL
   ========================================== */
.casestudy-section {
    padding: 96px 0 0;
}

.carousel-item {
    border-radius: var(--radius);
    border: 1px solid var(--card-border);
    background: var(--card-bg);
    backdrop-filter: blur(var(--blur));
    -webkit-backdrop-filter: blur(var(--blur));
    box-shadow: var(--shadow);
}

.carousel-inner {
    overflow: visible;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid var(--border-light);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    color: var(--text-dark);
}

.carousel-arrow:hover {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

.carousel-arrow.prev {
    left: -24px;
}

.carousel-arrow.next {
    right: -24px;
}

/* Testimonial Slider */
@keyframes scrollSlider {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.testimonial-slider {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scrollSlider 30s linear infinite;
}

.testimonial-slider-wrapper {
    width: 100%;
    position: relative;
    padding: 96px 0;
    overflow-x: hidden;
}

.testimonial-slider::-webkit-scrollbar {
    display: none;
}

/* ==========================================
   12. FAQ / ACCORDION
   ========================================== */
.accordion {
    --bs-accordion-bg: transparent;
    --bs-accordion-border-radius: 0;
    --bs-accordion-border-width: 0;
}

.accordion-item,
.accordion-item:not(:first-of-type) {
    border-top: 1px solid var(--border-light);
}

.accordion-button {
    line-height: 1.7;
    font-weight: 500;
    font-size: 18px;
    font-family: 'Rubik', sans-serif;
}

.accordion-button:not(.collapsed) {
    background: transparent;
    box-shadow: none;
    color: var(--text-dark);
}

.accordion-body {
    padding-top: 0;
    color: var(--text-medium);
}

.faq-section {
    padding: 96px 0 0;
}

.faq-item {
    border-radius: 8px;
    padding: 24px 28px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid var(--card-border);
    background: var(--card-bg);
    backdrop-filter: blur(var(--blur));
    -webkit-backdrop-filter: blur(var(--blur));
    box-shadow: var(--shadow);
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    border-color: var(--primary-blue);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 16px;
}

.faq-arrow {
    transition: transform 0.3s;
    color: var(--text-dark);
    font-size: 14px;
}



/* ==========================================
   13. FORM SECTION
   ========================================== */
form {
    position: sticky;
    top: 24px;
}

.form-section {  
    padding: 72px 0 0;
}

.form-section .description {
    margin-bottom: 12px;
}

.form-section .section-title {
    margin-bottom: 24px;
}

.form-section .content ul {
    list-style: none;
}

.form-section .content ul li {
    margin-bottom: 6px;
    position: relative;
}

.form-section .content ul li:before {
    content: '✓';
    color: var(--primary-blue);
    font-weight: 600;
    margin-right: 7px;
    position: absolute;
    left: -20px;
}

.form-section .trust-badge {
    padding: 48px 0 24px;
    text-align: left;
}

.form-section .partner-logos {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.form-section .partner-logos .partner-logo {
    max-height: 50px;
}

.form-all {
    padding: 24px 0 0 !important;
    margin: 36px 0 0 !important;
    border-radius: var(--radius) !important;
    border: 1px solid var(--card-border) !important;
    background: var(--card-bg) !important;
    backdrop-filter: blur(var(--blur)) !important;
    -webkit-backdrop-filter: blur(var(--blur)) !important;
    box-shadow: var(--shadow) !important;
}

.form-all .formFooter {
    display: none !important;
    height: 0 !important;
    opacity: 0 !important;
    visibility: none !important;
} 

.form-all .form-line {
    padding: 12px 10px 0 !important;
    margin: 12px 4px 0 !important;
}

.form-all .form-label-top {
    margin-bottom: 5px !important;
}

.form-all .form-sub-label {
    margin-top: 4px !important;
}

.form-all ul.page-section {
    padding: 0 24px !important;
}

/* ==========================================
   14. FOOTER
   ========================================== */
.final-cta-section {
    padding: 96px 0;
    margin: 0 24px;
    border-radius: var(--radius);
    position: relative;
    background-color: transparent;
    transition: background-color 0.8s ease;
    z-index: 1;
}

.final-cta-section .section-title,
.final-cta-section .trust-badge {
    transition: color 0.8s ease;
}

.final-cta-section .cta-button {
    transition: all 0.8s ease;
}

.final-cta-section .eyebrow {
    text-align: center !important;
    color: var(--text-dark);
    transition: all 0.8s ease;
    display: block;
}

.final-cta-section.in-view {
    background: linear-gradient(135deg, #0732EF 50%, #0024C4 100%);
}
.final-cta-section.in-view::before {
    content: "";    
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url('images/image-hero-background.png');
    background-size: auto;
    background-position: top center;
    background-repeat: no-repeat;
    opacity: 0.6; 
    mix-blend-mode: overlay; 
    z-index: -1; 
}

.final-cta-section.in-view .section-title {
    color: white;
}
.final-cta-section.in-view .eyebrow {
    color: white;
}

.final-cta-section.in-view .trust-badge {
    color: rgba(255, 255, 255, 0.8);
}

.site-footer {
    background: transparent;
    padding: 48px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 48px;
}

.footer-title {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 600;
}

.footer-description {
    line-height: 1.7;
    font-size: 14px;
}

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

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

.footer-links a {
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
    color: var(--primary-blue);
}

.footer-social {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 24px;
}

.footer-social a {
    font-size: 20px;
    transition: opacity 0.3s;
}

.footer-social a:hover {
    opacity: 0.7;
}

.footer-divider {
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin: 48px 0 24px;
}

.footer-copyright {
    margin: 0;
    text-align: center;
    font-size: 14px;
}

.footer-copyright a {
    text-decoration: none;
}



/* ============================================
   15. BLOG STYLES
   ============================================ */

/* Blog Hero Section */
.blog-hero-section {
    padding: 80px 0 60px;
    background: #fff;
}

.blog-hero-section .hero-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

@media (max-width: 768px) {
    .blog-hero-section {
        padding: 60px 0 40px;
    }
    
    .blog-hero-section .hero-title {
        font-size: 1.875rem;
    }
}

/* Featured Post Section */
.featured-post-section {
    padding: 60px 0;
}

.featured-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-post {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-post:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.featured-image-link {
    display: block;
    overflow: hidden;
}

.featured-post-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.featured-post:hover .featured-post-image {
    transform: scale(1.05);
}

.featured-post-content {
    padding: 2.5rem;
}

.featured-post-title {
    font-size: 2rem;
    line-height: 1.3;
    margin: 1rem 0 1.25rem;
    font-weight: 700;
}

.featured-post-title a {
    color: #1a202c;
    text-decoration: none;
    transition: color 0.3s ease;
}

.featured-post-title a:hover {
    color: #667eea;
}

.featured-post-excerpt {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .featured-post-content {
        padding: 1.5rem;
    }
    
    .featured-post-title {
        font-size: 1.5rem;
    }
    
    .featured-post-excerpt {
        font-size: 1rem;
    }
}

/* Post Meta */
.post-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.875rem;
    color: #718096;
}

.post-category {
    font-weight: 600;
    color: #667eea;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-date,
.post-reading-time {
    display: flex;
    align-items: center;
}

.post-meta > *:not(:last-child)::after {
    content: "•";
    margin-left: 1rem;
    color: #cbd5e0;
}

/* Read More Link */
.read-more-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.read-more-link:hover {
    gap: 0.75rem;
    color: #764ba2;
}

/* Category Filter Section */
.blog-filter-section {
    padding: 40px 0;
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
}

.category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.filter-btn {
    padding: 10px 24px;
    border: 2px solid #e2e8f0;
    background: #fff;
    color: #4a5568;
    border-radius: 25px;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: #667eea;
    color: #667eea;
    background: #f7fafc;
}

.filter-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-color: transparent;
}

.filter-btn:focus {
    outline: 3px solid #667eea;
    outline-offset: 2px;
}

/* Blog Posts Grid */
.blog-posts-section {
    padding: 60px 0;
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .blog-posts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Blog Post Card */
.blog-post-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.post-image-link {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.post-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.blog-post-card:hover .post-thumbnail {
    transform: scale(1.08);
}

.post-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.post-title {
    font-size: 1.25rem;
    line-height: 1.4;
    margin: 0.75rem 0 1rem;
    font-weight: 700;
}

.post-title a {
    color: #1a202c;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-title a:hover {
    color: #667eea;
}

.post-excerpt {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 1.25rem;
    flex: 1;
}

.post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

/* No Posts Message */
.no-posts-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 1rem;
}

/* Pagination */
.blog-pagination {
    margin-top: 3rem;
}

.blog-pagination .page-numbers {
    display: inline-flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.blog-pagination .page-numbers li {
    display: inline-block;
}

.blog-pagination a,
.blog-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    color: #4a5568;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-pagination a:hover {
    border-color: #667eea;
    color: #667eea;
    background: #f7fafc;
}

.blog-pagination .current {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-color: transparent;
}

.blog-pagination a:focus {
    outline: 3px solid #667eea;
    outline-offset: 2px;
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
}

.newsletter-form {
    margin-top: 2rem;
}

.newsletter-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form .form-input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.newsletter-form .form-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.newsletter-form .cta-button {
    width: 100%;
}

@media (min-width: 640px) {
    .newsletter-form .form-group {
        flex-direction: row;
    }
    
    .newsletter-form .form-input {
        flex: 1;
    }
    
    .newsletter-form .cta-button {
        width: auto;
        white-space: nowrap;
    }
}

/* Blog CTA Section */
.blog-cta-section {
    padding: 60px 0;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Focus Visible */
a:focus-visible,
button:focus-visible {
    outline: 3px solid #667eea;
    outline-offset: 2px;
}


/* ============================================
   16. SINGLE POST STYLES
   ============================================ */

/* Post Header */
.post-header {
    padding: 60px 0 40px;
    background: #fff;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #718096;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: #718096;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #667eea;
}

.breadcrumb .separator {
    color: #cbd5e0;
}

.breadcrumb .current {
    color: #4a5568;
    font-weight: 500;
}

.post-category-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-title {
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    font-size: 0.9375rem;
    color: #718096;
}

.post-meta .separator {
    color: #cbd5e0;
}

.post-meta time {
    font-weight: 500;
}

.post-meta .updated {
    font-style: italic;
    color: #a0aec0;
}

@media (max-width: 768px) {
    .post-header {
        padding: 40px 0 30px;
    }
    
    .post-title {
        font-size: 2rem;
    }
}

/* Featured Image */
.post-featured-image {
    padding: 40px 0;
    background: #f7fafc;
}

.featured-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
    .post-featured-image {
        padding: 30px 0;
    }
    
    .featured-image {
        border-radius: 8px;
    }
}

/* Post Content */
.post-content {
    padding: 60px 0;
}

.content-wrapper {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #2d3748;
}

.content-wrapper > *:first-child {
    margin-top: 0;
}

.content-wrapper > *:last-child {
    margin-bottom: 0;
}

.content-wrapper p {
    margin-bottom: 1.5rem;
}

.content-wrapper h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.content-wrapper h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-top: 2rem;
    margin-bottom: 0.875rem;
    line-height: 1.4;
}

.content-wrapper h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.content-wrapper a {
    color: #667eea;
    text-decoration: underline;
    text-decoration-color: rgba(102, 126, 234, 0.3);
    text-underline-offset: 2px;
    transition: all 0.3s ease;
}

.content-wrapper a:hover {
    color: #764ba2;
    text-decoration-color: rgba(118, 75, 162, 0.5);
}

.content-wrapper strong,
.content-wrapper b {
    font-weight: 600;
    color: #1a202c;
}

.content-wrapper em,
.content-wrapper i {
    font-style: italic;
}

.content-wrapper mark {
    background: rgba(102, 126, 234, 0.1);
    padding: 2px 4px;
    border-radius: 3px;
}

.content-wrapper blockquote {
    border-left: 4px solid #667eea;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #4a5568;
    background: #f7fafc;
    padding: 1.5rem;
    border-radius: 8px;
}

.content-wrapper ul,
.content-wrapper ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.content-wrapper ul li,
.content-wrapper ol li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.content-wrapper ul li::marker {
    color: #667eea;
}

.content-wrapper ol li::marker {
    color: #667eea;
    font-weight: 600;
}

.content-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
}

.content-wrapper figure {
    margin: 2rem 0;
}

.content-wrapper figcaption {
    text-align: center;
    font-size: 0.9375rem;
    color: #718096;
    margin-top: 0.75rem;
    font-style: italic;
}

.content-wrapper code {
    background: #f7fafc;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 0.9em;
    color: #d73a49;
}

.content-wrapper pre {
    background: #2d3748;
    color: #e2e8f0;
    padding: 1.5rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 2rem 0;
}

.content-wrapper pre code {
    background: none;
    padding: 0;
    color: inherit;
}

.content-wrapper table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-size: 1rem;
}

.content-wrapper table th,
.content-wrapper table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border: 1px solid #e2e8f0;
}

.content-wrapper table th {
    background: #f7fafc;
    font-weight: 600;
    color: #1a202c;
}

.content-wrapper table tr:nth-child(even) {
    background: #fafafa;
}

@media (max-width: 768px) {
    .post-content {
        padding: 40px 0;
    }
    
    .content-wrapper {
        font-size: 1rem;
    }
    
    .content-wrapper h2 {
        font-size: 1.75rem;
    }
    
    .content-wrapper h3 {
        font-size: 1.375rem;
    }
}

/* Post Tags */
.post-tags {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.tags-label {
    font-weight: 600;
    color: #4a5568;
    margin-right: 0.75rem;
}

.post-tags a {
    display: inline-block;
    background: #f7fafc;
    color: #4a5568;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.875rem;
    text-decoration: none;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.post-tags a:hover {
    background: #667eea;
    color: #fff;
    border-color: #667eea;
}

/* Author Bio */
.author-bio {
    padding: 60px 0;
}

.author-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
}

.author-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
}

.author-card p {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.author-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.author-cta:hover {
    gap: 0.75rem;
    color: #764ba2;
}

@media (max-width: 768px) {
    .author-bio {
        padding: 40px 0;
    }
    
    .author-card {
        padding: 1.5rem;
    }
}

/* Share Buttons */
.post-share {
    padding: 40px 0;
    border-top: 1px solid #e2e8f0;
}

.share-wrapper h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
}

.share-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 10px 20px;
    border: 2px solid #e2e8f0;
    background: #fff;
    color: #4a5568;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.share-btn.twitter:hover {
    background: #1da1f2;
    color: #fff;
    border-color: #1da1f2;
}

.share-btn.linkedin:hover {
    background: #0077b5;
    color: #fff;
    border-color: #0077b5;
}

.share-btn.facebook:hover {
    background: #1877f2;
    color: #fff;
    border-color: #1877f2;
}

.share-btn.copy:hover {
    background: #667eea;
    color: #fff;
    border-color: #667eea;
}

.share-btn.copied {
    background: #48bb78;
    color: #fff;
    border-color: #48bb78;
}

.share-btn:focus {
    outline: 3px solid #667eea;
    outline-offset: 2px;
}

@media (max-width: 768px) {
    .share-buttons {
        flex-direction: column;
    }
    
    .share-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Related Posts */
.related-posts {
    padding: 60px 0;
    background: #f7fafc;
}

.related-posts .section-subtitle {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 2rem;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.related-post-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.related-post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.related-post-image {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-post-card:hover .related-post-image img {
    transform: scale(1.08);
}

.related-post-content {
    padding: 1.5rem;
}

.related-post-content .post-meta {
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.related-post-content .post-category {
    font-weight: 600;
    color: #667eea;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.related-post-title {
    font-size: 1.125rem;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.related-post-title a {
    color: #1a202c;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-post-title a:hover {
    color: #667eea;
}

.related-post-excerpt {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #4a5568;
}

@media (max-width: 768px) {
    .related-posts {
        padding: 40px 0;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
}

/* Post CTA Section */
.post-cta-section {
    padding: 80px 0;
}

@media (max-width: 768px) {
    .post-cta-section {
        padding: 60px 0;
    }
}

/* WordPress Core Styles */
.alignleft {
    float: left;
    margin-right: 1.5rem;
    margin-bottom: 1rem;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    text-align: center;
    font-size: 0.9375rem;
    color: #718096;
    margin-top: 0.75rem;
    font-style: italic;
}

/* Gutenberg Block Styles */
.wp-block-image {
    margin: 2rem 0;
}

.wp-block-quote {
    border-left: 4px solid #667eea;
    padding-left: 1.5rem;
    margin: 2rem 0;
}

.wp-block-pullquote {
    border-top: 4px solid #667eea;
    border-bottom: 4px solid #667eea;
    padding: 2rem 0;
    text-align: center;
    font-size: 1.25rem;
    font-style: italic;
}

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}



/* ==========================================
   17. RESPONSIVE MEDIA QUERIES
   ========================================== */

/* Large Tablets and Small Desktops (1024px and below) */
@media (max-width: 1024px) {
    br {
        display: none;
    }

    .hero-title {
        font-size: 72px;
    }
    
    .subtitle {
        font-size: 22px;
    }
    
    .section-title {
        font-size: 40px;
    }
    
    .metric-cards-image {
        max-width: 1000px;
    }
    
    .hero-box {
        padding: 60px 40px;
    }
    
    .integration-logos {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablets (768px and below) */
@media (max-width: 768px) {
    .site-header {
        padding: 16px 0;
    }
    
    .site-header.scrolled {
        padding: 8px 0;
    }
    
    .site-header .hero-logo {
        height: 32px;
    }
    
    .brand-logo-full,
    .brand-logo-icon {
        height: 24px;
    }
    
    .hero-header {
        gap: 16px;
        align-items: flex-start;
    }

    .cta-phone {
        margin: 0;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-box {
        padding: 48px 32px;
    }
    
    .subtitle {
        font-size: 20px;
    }
    
    .description {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-content {
        padding: 60px 0;
    }
    
    .partner-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .integration-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .metric-cards-image {
        position: relative;
        top: auto;
        margin-top: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .carousel-arrow {
        width: 40px;
        height: 40px;
    }
    
    .carousel-arrow.prev {
        left: 10px;
    }
    
    .carousel-arrow.next {
        right: 10px;
    }
    
    .testimonial-text,
    .casestudy-text {
        font-size: 16px;
    }
    
    .testimonial-card,
    .casestudy-card {
        padding: 32px 24px;
    }


    .accordion-button {
        line-height: 1.5;
        font-size: 16px;
    }

    .accordion-body {
        font-size: 14px;
    }
    form {
        position: relative;
        top: 0;
    }
}

/* Mobile (576px and below) */
@media (max-width: 576px) {
    .hero-title {
        font-size: 48px;
        white-space-collapse: break-spaces;
    }
    
    .hero-box {
        padding: 84px 0;
        margin: 0;
        border-radius: 0;
        margin-bottom: 48px;
    }

    .hero-box .eyebrow {
        text-align: center !important;
        font-size: 16px;
    }

    body.home .hero-section {
        padding: 60px 0;
    } 
    
    .hero-section .description {
        text-align: center;
    }

    .metric-cards-image {
        display: none;
    }

    .subtitle {
        font-size: 18px;
    }
    
    .description {
        font-size: 16px;
        text-align: left
        margin: 0 0 36px;
    }
    
    .eyebrow {
        text-align: left !important;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 24px;
        text-align: left;
    }

    .success-animation {
        display: none;
    }


    .success-notice {
        display: none;
    }

    .team-image {
        margin-bottom: 24px !important;
    }
    
    .partner-logos {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        margin: 0 0 48px;
    }

    .partner-logo {
        height: 40px;
    }
        
    .integration-logos {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .integration-logo {
        max-height: 40px;
    }
       
    .cta-button {
        padding: 14px 36px;
        font-size: 15px;
    }

    body.home .site-header .cta-secondary {
        display: none;
    }
    
    .section-content {
        padding: 60px 0 12px;
    }

    .section-subtitle {
        margin: 48px auto 24px;
        font-size: 28px;
    }

    .features-section {
        padding: 60px 0;
    }

    .features-section .description {
        text-align: left !important;
    }

    .features-section .section-subtitle {
        text-align: left !important;
    }

    .feature-card {
        padding: 32px 24px;
        height: auto;
        margin-bottom: 24px;
    }

    .feature-card h4 {
        font-size: 24px;
    }

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

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

    .features-grid {
        margin-bottom: 0;
    }

    .features-grid:last-child {
        margin-bottom: 36px;
    }

    .success-section {
        padding: 60px 0 36px;
    }

    .casestudy-section {
        padding: 60px 0;
    }

    .casestudy-section .section-title {
        text-align: left !important;
    }

    .testimonial-badge,
    .casestudy-badge {
        right: 24px;
    }

    .testimonial-logo {
        height: 40px;
    }

    .testimonial-card {
        width: 300px;
    }


    .faq-section {
        padding: 48px 0 0;
    }

    .faq-section .section-subtitle {
        text-align: left !important;
        margin-bottom: 24px !important;
    }
    .form-all {
        margin-top: 12px !important;
    }
    .form-all ul.page-section {
        padding: 0 !important;
    }

    .form-section {
        padding: 36px 0 0;
    }

    .form-section .section-title {
        font-size: 32px;
    }

    .form-section .partner-logos {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .form-section .partner-logos .partner-logo {
        height: 40px;
    }
    .final-cta-section {
        padding: 148px 0;
    }
    .final-cta-section .section-title {
        font-size: 36px;
        margin-bottom: 24px !important;
        font-weight: 700;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
    }
    .final-cta-section .eyebrow {
        text-align: center !important;
    }

    .form-section .trust-badge {
        padding: 12px 0 24px;
        margin-top: 48px !important;
    }
    a.scroll {
      height: 50px;
      width: 30px;
      display: block;
      margin: auto;
      position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
    }
    a.scroll .indicator,
    a.mobile .indicator::after {
      text-align: center;
      width: 0;
      margin: auto;
      position: relative;
      display: block;
    }
    a.mobile .indicator {
      height: 0;
      top: 35px;
      border: 4px solid rgba(225, 225, 225, 1);
      border-radius: 15px;
      animation: mobileScrollAction 2s 1s ease-in-out infinite;
    }
    @keyframes mobileScrollAction {
      0% {
        opacity: 0;
        top: 35px;
      }
      25% {
        opacity: 1;
        top: 35px;
      }
      75% {
        opacity: 1;
        top: 15px;
      }
      100% {
        opacity: 0;
        top: 15px;
      }
    }
}