/* ========================================
   ServiceGeni - Premium SaaS Website Styles
   Dark Theme with Neon Accents
   ======================================== */

/* ========================================
   CSS Variables & Reset
   ======================================== */
:root {
    /* Colors */
    --primary-color: #00d4ff;
    --secondary-color: #7c3aed;
    --accent-color: #ff006e;
    --success-color: #10b981;
    --warning-color: #fbbf24;
    
    /* Dark Theme */
    --bg-primary: #0a0e27;
    --bg-secondary: #151937;
    --bg-tertiary: #1e2447;
    --bg-card: rgba(30, 36, 71, 0.6);
    
    /* Text */
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
    --gradient-secondary: linear-gradient(135deg, #7c3aed 0%, #ff006e 100%);
    --gradient-card: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 212, 255, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 212, 255, 0.2);
    --shadow-lg: 0 8px 32px rgba(0, 212, 255, 0.3);
    --shadow-glow: 0 0 20px rgba(0, 212, 255, 0.5);
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-display: 'Orbitron', sans-serif;
    
    /* Spacing */
    --section-padding: 100px;
}

/* Additional mobile-only centering rules appended to ensure buttons are centered
   on screens narrower than 600px. Placed at EOF to override earlier rules if needed. */
@media (max-width: 600px) {
    /* Center 'Learn More' links inside feature cards */
    .feature-card .feature-link {
        display: inline-block;
        margin: 0.5rem auto 0 auto;
        text-align: center;
    }

    /* Center primary action buttons inside feature/detail and hero areas */
    .feature-detail-section .btn,
    .hero-cta-buttons .btn,
    .pricing-card .btn,
    .btn-nav-cta {
        /* Use block layout for proper centering with auto margins on mobile */
        display: block !important;
        width: auto !important;
        margin: 0.75rem auto 0 auto !important;
        text-align: center !important;
    }

    /* Reduce width of prominent CTAs so they don't span full container on mobile */
    .feature-detail-section .btn.btn-primary,
    .feature-detail-section .btn.btn-lg {
        /* tightened width for a narrower pill on mobile */
        max-width: 200px !important;
        width: 70% !important;
        min-width: 220px !important;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    /* Center the feature/detail heading, badge and description on small screens */
    .feature-detail-section .feature-badge,
    .feature-detail-section .feature-title,
    .feature-detail-section .feature-description {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    /* Ensure badges (inline-flex) center correctly by using block/flex layout on mobile */
    .feature-detail-section .feature-badge,
    .feature-badge,
    .hero-badge {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    /* Make badges match the CTA width on mobile for consistent visual rhythm */
    .feature-detail-section .feature-badge,
    .feature-badge,
    .hero-badge {    
        max-width: 200px!important;
        width: 70% !important;
        min-width: 220px !important;
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
    }

    /* Limit description width so centered text reads nicely */
    .feature-detail-section .feature-description {
        max-width: 560px;
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    /* Allow buttons that used to be full-width to size naturally so centering works */
    .feature-detail-section .btn.w-100,
    .hero-cta-buttons .btn.w-100,
    .pricing-card .btn.w-100,
    .btn-nav-cta.w-100 {
        width: auto !important;
    }

    /* Small visual gutter so centered buttons don't touch card edges */
    .pricing-card,
    .feature-card,
    .feature-detail-section .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ========================================
   Typography
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.text-glow {
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px rgba(0, 212, 255, 0.5),
                     0 0 20px rgba(0, 212, 255, 0.3);
    }
    to {
        text-shadow: 0 0 20px rgba(0, 212, 255, 0.8),
                     0 0 30px rgba(0, 212, 255, 0.5),
                     0 0 40px rgba(0, 212, 255, 0.3);
    }
}

/* ========================================
   Navigation - Bootstrap Compatible
   ======================================== */
.navbar {
    padding: 1rem 0;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(10, 14, 39, 0.98);
    box-shadow: var(--shadow-md);
    padding: 0.5rem 0;
}

.navbar-brand {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary) !important;
    transition: all 0.3s ease;
}

.brand-icon {
    font-size: 1.8rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rotate 10s linear infinite;
}

/* Keep brand icon inside the ai-brain static (no rotation) */
.ai-brain .brand-icon {
    animation: none !important;
    /* flip horizontally so the phone faces left */
    transform: scaleX(-1) !important;
    transform-origin: center center !important;
}

/* Video Lightbox Styles */
.video-lightbox {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 20000;
}
.video-lightbox.open {
    display: flex;
}
.video-lightbox__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
}
.video-lightbox__content {
    position: relative;
    max-width: 1100px;
    width: calc(100% - 48px);
    max-height: 80vh;
    z-index: 20001;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.video-container {
    background: #000;
    width: 100%;
    height: 100%;
}
.video-container video {
    display: block;
    width: 100%;
    height: auto;
    max-height: 80vh;
}
.video-lightbox__close {
    position: absolute;
    right: 12px;
    top: 8px;
    z-index: 20002;
    background: rgba(255,255,255,0.06);
    border: none;
    color: #fff;
    font-size: 28px;
    line-height: 1;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.video-lightbox__close:focus {
    outline: 2px solid var(--primary-color);
}

@media (max-width: 600px) {
    .video-lightbox__content {
        width: calc(100% - 24px);
        max-height: 70vh;
        border-radius: 8px;
    }
    .video-lightbox__close {
        right: 8px;
        top: 6px;
        width: 38px;
        height: 38px;
        font-size: 22px;
    }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-toggler {
    border: 2px solid var(--primary-color) !important;
    padding: 0.5rem 0.75rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 212, 255, 0.25) !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%2300d4ff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.navbar-nav {
    align-items: center;
}

.nav-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--primary-color) !important;
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link.active {
    color: var(--primary-color) !important;
}

.btn-nav-cta {
    background: var(--gradient-primary) !important;
    color: var(--text-primary) !important;
    border-radius: 50px;
    padding: 0.5rem 1.5rem !important;
    margin-left: 1rem;
    border: none !important;
}

.btn-nav-cta:hover,
.btn-nav-cta:focus {
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

/* Mobile Menu Styles */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: var(--bg-secondary);
        padding: 1rem;
        border-radius: 15px;
        margin-top: 1rem;
        border: 1px solid rgba(0, 212, 255, 0.2);
    }
    
    .nav-link {
        padding: 0.75rem 1rem !important;
        margin: 0.25rem 0;
    }
    
    .btn-nav-cta {
        margin: 0.5rem 0;
        width: 100%;
        text-align: center;
    }
}

/* ========================================
   Buttons - Bootstrap Compatible
   ======================================== */
.btn {
    border-radius: 50px;
    font-weight: 600;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary) !important;
    border: none !important;
    color: var(--text-primary) !important;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
    z-index: 0;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg) !important;
    background: var(--gradient-primary) !important;
    border: none !important;
}

.btn-glow {
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

.btn-glow:hover {
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.6) !important;
}

.btn-outline-primary {
    border: 2px solid var(--primary-color) !important;
    color: var(--primary-color) !important;
    background: transparent !important;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
    background: var(--primary-color) !important;
    color: var(--bg-primary) !important;
    box-shadow: var(--shadow-glow);
    transform: translateY(-3px);
    border-color: var(--primary-color) !important;
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.5) !important;
    color: var(--text-primary) !important;
    background: transparent !important;
}

.btn-outline-light:hover,
.btn-outline-light:focus,
.btn-outline-light:active {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: var(--text-primary) !important;
    color: var(--text-primary) !important;
}

.btn-block,
.btn.w-100 {
    width: 100%;
}

.btn-lg {
    padding: 0.875rem 2.5rem;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
}

/* ========================================
   Hero Section
   ======================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 60px;
}

/* Improve hero responsiveness: scale text and stack visuals on small screens */
@media (max-width: 991px) {
    .hero-section {
        padding-top: 64px;
        padding-bottom: 40px;
    }

    .hero-title {
        font-size: 2.6rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        max-width: 100%;
        padding-right: 1rem;
        padding-left: 1rem;
    }

    .hero-visual {
        height: auto;
        min-height: 320px;
        margin-top: 1.25rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        overflow: visible;
    }

    .floating-card {
        position: relative;
        margin: 0.5rem 0;
        width: auto;
        max-width: 85%;
        left: auto;
        right: auto;
        transform: none;
        animation: none;
    }

    .ai-brain-container {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin: 0.5rem 0;
    }
}

@media (max-width: 575px) {
    .hero-section {
        padding-top: 56px;
        padding-bottom: 32px;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.15;
        margin-bottom: 1rem;
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1rem;
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }

    .hero-cta-buttons .btn {
        font-size: 0.95rem;
    }

    .hero-visual {
        min-height: 260px;
    }

    .floating-card {
        max-width: 95%;
        padding: 0.6rem 1rem;
        border-radius: 12px;
    }

    body, html {
        overflow-x: hidden;
    }
}

.hero-content {
    padding: 1rem 0;
}

.hero-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 576px) {
    .hero-cta-buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .hero-cta-buttons .btn {
        flex: 1;
        min-width: 200px;
    }
}

.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: radial-gradient(circle at 20% 50%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0, 212, 255, 0.15) 0%, transparent 50%);
}

.floating-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-color);
    animation: float 20s infinite;
}

.floating-particle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.floating-particle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 2s;
}

.floating-particle:nth-child(3) {
    top: 80%;
    left: 10%;
    animation-delay: 4s;
}

.floating-particle:nth-child(4) {
    top: 40%;
    left: 60%;
    animation-delay: 6s;
}

.floating-particle:nth-child(5) {
    top: 10%;
    left: 90%;
    animation-delay: 8s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    50% {
        transform: translate(100px, 100px);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-card);
    border: 1px solid rgba(0, 212, 255, 0.3);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    animation: slideInDown 0.8s ease;
}

/* Add extra space above hero badge on medium and smaller screens */
@media (max-width: 991.98px) {
    .hero-badge {
        margin-top: 1.25rem; /* adds space above on md and below */
        margin-bottom: 1.25rem; /* reduce bottom spacing a bit for smaller screens */
    }
}

@media (max-width: 575.98px) {
    .hero-badge {
        margin-top: 1.5rem; /* slightly larger top spacing for small mobile */
        padding: 0.5rem 1rem;
    }
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: slideInLeft 0.8s ease;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    animation: slideInLeft 1s ease;
}

.hero-cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: slideInLeft 1.2s ease;
    max-width: 650px;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    animation: slideInUp 1.4s ease;
    max-width: 650px;
    justify-content: space-between;
    align-items: flex-start;
}

@media (max-width: 767px) {
    .hero-stats {
        gap: 8rem;
    }
}

@media (max-width: 575px) {
    .hero-stats {
        gap: 4rem;
    }
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 600px;
    animation: slideInRight 0.8s ease;
}

.floating-card {
    position: absolute;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-md);
    animation: floatCard 3s ease-in-out infinite;
}

/* ========================================
   AI Brain Icon - improved readability
   ======================================== */
.ai-brain-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 5;
}

.ai-brain {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0,212,255,0.12), rgba(124,58,237,0.12));
    border: 2px solid rgba(255,255,255,0.04);
    box-shadow: 0 6px 28px rgba(0,212,255,0.08), 0 2px 6px rgba(0,0,0,0.4);
    backdrop-filter: blur(6px);
}

.ai-brain .brand-icon,
.ai-brain i {
    font-size: 42px;
    color: var(--primary-color);
    -webkit-text-stroke: 1px rgba(0,0,0,0.25);
    filter: drop-shadow(0 4px 18px rgba(0,212,255,0.25));
}

@media (max-width: 767px) {
    .ai-brain {
        width: 80px;
        height: 80px;
    }

    .ai-brain .brand-icon,
    .ai-brain i {
        font-size: 36px;
    }
}

/* subtle pulse rings should not obscure the icon */
.ai-brain-container .pulse-ring,
.ai-brain-container .pulse-ring-2 {
    mix-blend-mode: screen;
    opacity: 0.35;
}

.floating-card i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.card-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 30%;
    right: 5%;
    animation-delay: 0.5s;
}

.card-3 {
    bottom: 30%;
    left: 5%;
    animation-delay: 1s;
}

.card-4 {
    bottom: 10%;
    right: 10%;
    animation-delay: 1.5s;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.ai-brain-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ai-brain {
    width: 150px;
    height: 150px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    animation: pulse 2s ease-in-out infinite;
}

.ai-brain i {
    font-size: 4rem;
    color: var(--bg-primary);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.pulse-ring {
    position: absolute;
    width: 150px;
    height: 150px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: pulseRing 2s ease-out infinite;
}

.pulse-ring-2 {
    animation-delay: 1s;
}

@keyframes pulseRing {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: bounce 2s ease-in-out infinite;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        top: 8px;
    }
    100% {
        opacity: 0;
        top: 24px;
    }
}

.arrow span {
    display: block;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid var(--primary-color);
    border-right: 2px solid var(--primary-color);
    transform: rotate(45deg);
    margin: -5px;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* ========================================
   Features Overview Section
   ======================================== */
.features-overview {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.feature-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-align: center;
}

@media (min-width: 768px) {
    .feature-card {
        text-align: left;
    }
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-card);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card > * {
    position: relative;
    z-index: 1;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

@media (max-width: 767px) {
    .feature-icon {
        margin-left: auto;
        margin-right: auto;
    }
}

.feature-card:hover .feature-icon {
    transform: rotateY(360deg);
}

.feature-icon i {
    font-size: 2rem;
    color: var(--bg-primary);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

@media (max-width: 767px) {
    .feature-card h3 {
        font-size: 1.25rem;
    }
}

.feature-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    flex-grow: 1;
}

.feature-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.feature-link:hover {
    gap: 1rem;
}

/* ========================================
   Feature Detail Sections
   ======================================== */
.feature-detail-section {
    padding: var(--section-padding) 0;
}

.bg-dark-alt {
    background: var(--bg-secondary);
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: var(--primary-color);
}

.feature-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-list-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature-list-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.feature-list-icon i {
    font-size: 1.5rem;
    color: var(--bg-primary);
}

.feature-list-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.feature-list-content p {
    color: var(--text-secondary);
    margin: 0;
}

/* Feature Visuals */
.feature-visual {
    position: relative;
    height: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Make phone mockup and floating stats stack nicely on smaller screens */
@media (max-width: 991px) {
    .feature-visual {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 1rem;
        min-height: 420px;
        padding: 1.5rem 0;
    }

    .phone-mockup {
        margin: 0 auto;
        position: relative;
        right: auto;
    }

    .floating-stat {
        /* change to flow with document so they appear below the phone on small screens */
        position: relative;
        right: auto;
        top: auto;
        bottom: auto;
        margin: 0.5rem auto;
        animation: none;
        width: auto;
        max-width: 90%;
    }

    .stat-1, .stat-2 {
        right: auto;
    }
}

@media (max-width: 575px) {
    .feature-visual {
        min-height: 360px;
        padding: 1rem 0;
    }

    .floating-stat {
        padding: 0.6rem 0.9rem;
        border-radius: 12px;
        gap: 0.5rem;
    }

    .call-interface {
        padding: 1.25rem 0.75rem;
    }

    .caller-avatar {
        width: 84px;
        height: 84px;
    }

    .caller-avatar i {
        font-size: 2.25rem;
    }
}

/* Phone Mockup */
.phone-mockup {
    width: 300px;
    height: 600px;
    background: var(--bg-primary);
    border: 8px solid var(--bg-tertiary);
    border-radius: 40px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    position: relative;
    margin: 0 auto;
}

@media (max-width: 991px) {
    .phone-mockup {
        width: 280px;
        height: 560px;
    }
}

@media (max-width: 575px) {
    .phone-mockup {
        width: 240px;
        height: 480px;
    }
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--bg-secondary);
    padding: 1rem;
}

.call-interface {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    height: 100%;
    padding: 2rem 1rem;
}

.caller-info {
    text-align: center;
}

.caller-avatar {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: var(--shadow-glow);
}

.caller-avatar i {
    font-size: 3rem;
    color: var(--bg-primary);
}

.caller-info h4 {
    margin-bottom: 0.5rem;
}

.caller-status {
    color: var(--primary-color);
    font-size: 0.875rem;
}

.call-waveform {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    height: 60px;
}

.call-waveform span {
    width: 4px;
    background: var(--primary-color);
    border-radius: 2px;
    animation: wave 1s ease-in-out infinite;
}

.call-waveform span:nth-child(1) { animation-delay: 0s; height: 20px; }
.call-waveform span:nth-child(2) { animation-delay: 0.1s; height: 30px; }
.call-waveform span:nth-child(3) { animation-delay: 0.2s; height: 40px; }
.call-waveform span:nth-child(4) { animation-delay: 0.3s; height: 50px; }
.call-waveform span:nth-child(5) { animation-delay: 0.4s; height: 40px; }
.call-waveform span:nth-child(6) { animation-delay: 0.5s; height: 30px; }
.call-waveform span:nth-child(7) { animation-delay: 0.6s; height: 35px; }
.call-waveform span:nth-child(8) { animation-delay: 0.7s; height: 45px; }
.call-waveform span:nth-child(9) { animation-delay: 0.8s; height: 25px; }
.call-waveform span:nth-child(10) { animation-delay: 0.9s; height: 30px; }

@keyframes wave {
    0%, 100% { height: 20px; }
    50% { height: 50px; }
}

.call-actions {
    display: flex;
    gap: 1rem;
}

.call-btn {
    width: 60px;
    height: 60px;
    background: var(--bg-tertiary);
    border: none;
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.call-btn.active {
    background: var(--gradient-primary);
    color: var(--bg-primary);
    box-shadow: var(--shadow-glow);
}

.call-btn:hover {
    transform: scale(1.1);
}

.floating-stat {
    position: absolute;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    padding: 0.75rem 1.25rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-md);
    animation: floatCard 3s ease-in-out infinite;
}

.floating-stat i {
    color: var(--success-color);
    font-size: 1.25rem;
}

.stat-1 {
    top: 10%;
    right: -20%;
}

.stat-2 {
    bottom: 20%;
    right: -20%;
    animation-delay: 1s;
}

/* Estimate Mockup */
.estimate-mockup {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .estimate-mockup {
        max-width: 100%;
    }
}

.estimate-header {
    background: var(--gradient-primary);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--bg-primary);
}

.estimate-header i {
    font-size: 2rem;
}

.estimate-header h3 {
    font-size: 1.5rem;
    margin: 0;
}

.estimate-body {
    padding: 2rem;
}

.estimate-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.estimate-item .price {
    font-weight: 600;
    color: var(--primary-color);
}

.estimate-divider {
    height: 1px;
    background: var(--gradient-primary);
    margin: 1rem 0;
}

.estimate-total {
    display: flex;
    justify-content: space-between;
    padding-top: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.price-total {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.estimate-footer {
    padding: 1rem 2rem 2rem;
    display: flex;
    gap: 1rem;
}

.btn-estimate {
    flex: 1;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-estimate.approve {
    background: var(--primary-color);
    color: var(--bg-primary);
}

.btn-estimate:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.processing-indicator {
    position: absolute;
    bottom: -10%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    padding: 1rem 2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-md);
}

.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Tablet Mockup */
.tablet-mockup {
    width: 450px;
    height: 550px;
    background: var(--bg-primary);
    border: 10px solid var(--bg-tertiary);
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    margin: 0 auto;
}

@media (max-width: 991px) {
    .tablet-mockup {
        width: 400px;
        height: 500px;
    }
}

@media (max-width: 575px) {
    .tablet-mockup {
        width: 320px;
        height: 400px;
    }
}

.tablet-screen {
    width: 100%;
    height: 100%;
    background: var(--bg-secondary);
    padding: 1.5rem;
}

.inspection-interface {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.inspection-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.inspection-header h4 {
    margin: 0;
}

.badge-progress {
    background: var(--gradient-primary);
    color: var(--bg-primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.inspection-image {
    text-align: center;
    padding: 3rem 0;
    background: var(--bg-tertiary);
    border-radius: 15px;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.inspection-checklist {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-tertiary);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.check-item.completed {
    background: rgba(16, 185, 129, 0.1);
    border-left: 3px solid var(--success-color);
}

.check-item.active {
    background: rgba(0, 212, 255, 0.1);
    border-left: 3px solid var(--primary-color);
}

.check-item i {
    font-size: 1.25rem;
}

.check-item.completed i {
    color: var(--success-color);
}

.check-item.active i {
    color: var(--primary-color);
}

.ai-suggestion {
    position: absolute;
    bottom: 10%;
    left: -20%;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(251, 191, 36, 0.3);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-md);
    animation: floatCard 3s ease-in-out infinite;
}

.ai-suggestion i {
    color: var(--warning-color);
    font-size: 1.5rem;
}

/* Dashboard Mockup */
.dashboard-mockup {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .dashboard-mockup {
        padding: 1.5rem;
        max-width: 100%;
    }
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

@media (max-width: 575px) {
    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

.dashboard-header h3 {
    margin: 0;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

@media (max-width: 575px) {
    .dashboard-header h3 {
        font-size: 1.25rem;
    }
}

.dashboard-header .date {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-family: var(--font-primary);
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (max-width: 575px) {
    .dashboard-stats {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }
}

.stat-card {
    background: var(--bg-tertiary);
    padding: 1.5rem;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(0, 212, 255, 0.1);
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.stat-icon i {
    color: var(--bg-primary);
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.stat-trend {
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.stat-trend.up {
    color: var(--success-color);
}

.stat-trend.down {
    color: var(--accent-color);
}

.dashboard-chart {
    background: var(--bg-tertiary);
    padding: 2rem;
    border-radius: 15px;
    height: 200px;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.chart-bar {
    flex: 1;
    background: var(--gradient-primary);
    border-radius: 5px 5px 0 0;
    transition: all 0.3s ease;
    animation: growBar 1s ease-out;
}

.chart-bar:hover {
    opacity: 0.8;
    transform: scaleY(1.05);
}

@keyframes growBar {
    from {
        height: 0;
    }
}

.dashboard-footer {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.advisor-rank {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--warning-color);
    font-weight: 600;
}

.advisor-rank i {
    font-size: 1.25rem;
}

/* ========================================
   Call Recordings Section
   ======================================== */
.call-recordings-section {
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.recording-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

@media (max-width: 767px) {
    .recording-card {
        padding: 1.5rem;
    }
}

.recording-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.recording-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    color: var(--bg-primary);
}

@media (max-width: 767px) {
    .recording-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
}

.recording-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

@media (max-width: 767px) {
    .recording-card h4 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
}

.recording-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    flex-grow: 1;
}

@media (max-width: 767px) {
    .recording-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
}

.audio-player {
    margin-bottom: 1rem;
}

.audio-player audio {
    width: 100%;
    height: 40px;
    border-radius: 10px;
    outline: none;
}

.audio-player audio::-webkit-media-controls-panel {
    background: var(--bg-tertiary);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 10px;
}

.audio-player audio::-webkit-media-controls-play-button,
.audio-player audio::-webkit-media-controls-current-time-display,
.audio-player audio::-webkit-media-controls-time-remaining-display {
    color: var(--text-primary);
}

.audio-player audio::-webkit-media-controls-timeline {
    background: var(--bg-secondary);
    border-radius: 5px;
}

.recording-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    font-size: 0.875rem;
}

@media (max-width: 767px) {
    .recording-meta {
        font-size: 0.8rem;
        padding-top: 0.75rem;
    }
}

.recording-meta .duration {
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.recording-meta .success-rate {
    color: var(--success-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.recording-meta i {
    font-size: 0.875rem;
}

/* ========================================
   Pricing Section
   ======================================== */
.pricing-section {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
}

.pricing-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

@media (max-width: 767px) {
    .pricing-card {
        padding: 2rem;
    }
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.pricing-card.featured {
    background: var(--gradient-card);
    border: 2px solid var(--primary-color);
}

@media (min-width: 992px) {
    .pricing-card.featured {
        transform: scale(1.05);
    }
    
    .pricing-card.featured:hover {
        transform: scale(1.08) translateY(-10px);
    }
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--bg-primary);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    white-space: nowrap;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    /* Ensure all pricing headers occupy the same vertical space so prices align */
    min-height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.pricing-header h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 575px) {
    .pricing-header h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    /* Reduce the header min-height on smaller screens */
    .pricing-header {
        min-height: 120px;
        margin-bottom: 1.25rem;
    }
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.currency {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.amount {
    font-size: 2.2rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 575px) {
    .amount {
        font-size: 1.8rem;
    }
}

.period {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.pricing-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

@media (max-width: 575px) {
    .pricing-features li {
        font-size: 0.9rem;
        padding: 0.6rem 0;
    }
}

.pricing-features i {
    font-size: 1.125rem;
    flex-shrink: 0;
.pricing-features i {
    font-size: 1.125rem;
    flex-shrink: 0;
    width: 28px; /* fixed icon column width so text lines up */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
@media (max-width: 575px) {
    .pricing-features i {
        width: 22px;
    }
}
}

.pricing-features .fa-check {
    color: var(--success-color);
}

.pricing-features .fa-times {
    color: var(--text-muted);
}

/* ========================================
   Testimonials Section
   ======================================== */
.testimonials-section {
    padding: var(--section-padding) 0;
}

.testimonial-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

@media (max-width: 767px) {
    .testimonial-card {
        padding: 1.5rem;
    }
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.stars {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

@media (max-width: 575px) {
    .stars {
        font-size: 1rem;
    }
}

.testimonial-text {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    flex-grow: 1;
}

@media (max-width: 575px) {
    .testimonial-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

@media (max-width: 575px) {
    .author-avatar {
        width: 50px;
        height: 50px;
    }
}

.author-avatar i {
    font-size: 1.5rem;
    color: var(--bg-primary);
}

@media (max-width: 575px) {
    .author-avatar i {
        font-size: 1.25rem;
    }
}

.author-info h5 {
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

@media (max-width: 575px) {
    .author-info h5 {
        font-size: 1rem;
    }
}

.author-info p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin: 0;
}

@media (max-width: 575px) {
    .author-info p {
        font-size: 0.8rem;
    }
}

/* ========================================
   Contact Form - Bootstrap Compatible
   ======================================== */
.contact-form {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
}

.form-control,
.contact-form .form-control {
    background: var(--bg-tertiary) !important;
    border: 1px solid rgba(0, 212, 255, 0.2) !important;
    color: var(--text-primary) !important;
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.form-control:focus,
.contact-form .form-control:focus {
    background: var(--bg-secondary) !important;
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1) !important;
    color: var(--text-primary) !important;
    outline: none;
}

.form-control::placeholder,
.contact-form .form-control::placeholder {
    color: var(--text-muted);
    opacity: 1;
}

.form-control:disabled,
.form-control[readonly] {
    background-color: var(--bg-tertiary) !important;
    opacity: 0.6;
}

.form-select {
    background: var(--bg-tertiary) !important;
    border: 1px solid rgba(0, 212, 255, 0.2) !important;
    color: var(--text-primary) !important;
    border-radius: 10px;
}

.form-select:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1) !important;
}

.form-check-input {
    background-color: var(--bg-tertiary) !important;
    border: 1px solid rgba(0, 212, 255, 0.2) !important;
}

.form-check-input:checked {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 212, 255, 0.25) !important;
}

.form-label {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.invalid-feedback,
.valid-feedback {
    display: none;
}

.was-validated .form-control:invalid,
.form-control.is-invalid {
    border-color: var(--accent-color) !important;
}

.was-validated .form-control:valid,
.form-control.is-valid {
    border-color: var(--success-color) !important;
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
    z-index: 0;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-item {
    text-align: center;
}

.contact-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-item h5 {
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-secondary);
    margin: 0;
}

/* ========================================
   Contact Info Cards
   ======================================== */
.contact-info {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(124, 58, 237, 0.05) 100%);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    margin: 2rem 0;
}

@media (max-width: 767px) {
    .contact-info {
        padding: 1.5rem 1rem;
        margin: 1.5rem 0;
    }
}

.contact-item {
    text-align: center;
    padding: 1.5rem 1rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

@media (max-width: 767px) {
    .contact-item {
        padding: 1rem 0.75rem;
    }
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-item i {
    font-size: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 1rem;
}

@media (max-width: 767px) {
    .contact-item i {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
}

.contact-item h5 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

@media (max-width: 767px) {
    .contact-item h5 {
        font-size: 1rem;
        margin-bottom: 0.35rem;
    }
}

.contact-item p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.95rem;
}

@media (max-width: 767px) {
    .contact-item p {
        font-size: 0.9rem;
    }
}

/* ========================================
   Footer - Bootstrap Compatible
   ======================================== */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

@media (max-width: 575px) {
    .footer-brand {
        font-size: 1.25rem;
    }
}

.footer-brand i {
    font-size: 1.8rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    max-width: 350px;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--bg-tertiary);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gradient-primary);
    color: var(--bg-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-transform: none;
    letter-spacing: 0;
}

@media (max-width: 575px) {
    .footer-title {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

@media (max-width: 575px) {
    .footer-links li {
        margin-bottom: 0.5rem;
    }
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.95rem;
}

@media (max-width: 575px) {
    .footer-links a {
        font-size: 0.9rem;
    }
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 2rem;
}

@media (max-width: 575px) {
    .footer-bottom {
        padding-top: 1rem;
        margin-top: 1.5rem;
    }
}

.footer-bottom p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.95rem;
}

@media (max-width: 575px) {
    .footer-bottom p {
        font-size: 0.85rem;
    }
}

/* Footer column spacing & desktop widths */
.footer > .container > .row {
    gap: 3rem;
}

.footer .col-lg-4 {
    flex: 0 0 36%;
    max-width: 36%;
}

.footer .col-lg-2 {
    flex: 0 0 18%;
    max-width: 18%;
}

@media (max-width: 991.98px) {
    .footer > .container > .row {
        gap: 1.25rem;
    }
    .footer .col-lg-4,
    .footer .col-lg-2 {
        flex: 0 0 auto;
        max-width: 100%;
    }
}

/* Push middle footer columns slightly to the right on desktop */
@media (min-width: 992px) {
    .footer > .container > .row > .col-lg-2:nth-child(2) {
        margin-left: 4.5rem;
    }
    .footer > .container > .row > .col-lg-2:nth-child(3) {
        margin-left: 3.5rem;
    }
}

.footer-bottom .text-md-start {
    text-align: left;
}

.footer-bottom .text-md-end {
    text-align: right;
}

@media (max-width: 767px) {
    .footer-bottom .text-md-start,
    .footer-bottom .text-md-end {
        text-align: center;
    }
}

/* Center footer content on mobile devices */
@media (max-width: 767px) {
    .footer,
    .footer .container {
        text-align: center;
    }

    .footer > .container > .row {
        justify-content: center;
    }

    .footer-brand {
        justify-content: center;
        margin-left: 0;
    }

    .footer-description {
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }

    .social-links {
        justify-content: center;
        margin: 0.5rem 0 1rem 0;
    }

    .footer-links {
        display: inline-block;
        text-align: left;
    }

    .footer-links li {
        text-align: center;
    }
}

/* ========================================
   Animations
   ======================================== */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* AOS Animation Library Compatibility */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
    transition-duration: 0.8s;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-down"] {
    transform: translateY(-30px);
}

[data-aos="fade-down"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-left"] {
    transform: translateX(50px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-right"] {
    transform: translateX(-50px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

/* ========================================
   Responsive Design - Bootstrap Breakpoints
   ======================================== */

/* Large devices (desktops, 992px and up) */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .feature-title {
        font-size: 2.5rem;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (max-width: 992px) {
    :root {
        --section-padding: 80px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .feature-title {
        font-size: 2.25rem;
    }
    
    .hero-visual {
        margin-top: 3rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .phone-mockup,
    .tablet-mockup {
        margin: 0 auto;
    }
    
    .floating-stat,
    .ai-suggestion {
        position: relative;
        left: 0;
        right: 0;
        margin-top: 1rem;
    }
    
    /* Bootstrap col adjustments */
    .col-lg-6.order-lg-1 {
        order: 2;
    }
    
    .col-lg-6.order-lg-2 {
        order: 1;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .feature-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .hero-subtitle,
    .section-subtitle,
    .feature-description,
    .cta-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
    }
    
    .hero-cta-buttons .btn {
        width: 100%;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hero-visual {
        height: 400px;
    }
    
    .floating-card {
        font-size: 0.875rem;
        padding: 0.75rem 1rem;
    }
    
    .ai-brain {
        width: 120px;
        height: 120px;
    }
    
    .ai-brain i {
        font-size: 3rem;
    }
    
    .phone-mockup {
        width: 250px;
        height: 500px;
    }
    
    .tablet-mockup {
        width: 350px;
        height: 450px;
    }
    
    .estimate-mockup,
    .dashboard-mockup {
        max-width: 100%;
    }
    
    .dashboard-stats {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: scale(1) translateY(-10px);
    }
    
    /* Bootstrap utilities for tablets */
    .container {
        max-width: 720px;
    }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.25rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .feature-title {
        font-size: 1.75rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .feature-list-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-list-icon {
        margin: 0 auto;
    }
    
    .hero-visual {
        height: 350px;
    }
    
    .floating-card {
        font-size: 0.75rem;
        padding: 0.5rem 0.75rem;
    }
    
    .floating-card i {
        font-size: 1rem;
    }
    
    .ai-brain {
        width: 100px;
        height: 100px;
    }
    
    .ai-brain i {
        font-size: 2.5rem;
    }
    
    .contact-info {
        flex-direction: column;
    }
    
    /* Bootstrap column stacking */
    .col-6 {
        width: 100%;
    }
    
    .btn {
        font-size: 0.9rem;
        padding: 0.65rem 1.5rem;
    }
    
    .btn-lg {
        font-size: 1rem;
        padding: 0.75rem 2rem;
    }
    
    /* Container adjustments */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* ========================================
   Utility Classes - Bootstrap Compatible
   ======================================== */

/* Background utilities */
.bg-dark {
    background-color: var(--bg-primary) !important;
}

.bg-secondary {
    background-color: var(--bg-secondary) !important;
}

/* Text utilities */
.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--text-secondary) !important;
}

.text-muted {
    color: var(--text-muted) !important;
}

.text-white {
    color: var(--text-primary) !important;
}

/* Border utilities */
.border-primary {
    border-color: var(--primary-color) !important;
}

/* Card component */
.card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    color: var(--text-primary);
}

.card-body {
    padding: 1.5rem;
}

.card-header {
    background: var(--bg-tertiary);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    padding: 1rem 1.5rem;
}

.card-footer {
    background: var(--bg-tertiary);
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    padding: 1rem 1.5rem;
}

/* Alert component */
.alert {
    border-radius: 15px;
    border: 1px solid;
}

.alert-primary {
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.alert-success {
    /* Use primary blue gradient for success banners to match theme */
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--text-primary);
    box-shadow: 0 12px 30px rgba(0, 212, 255, 0.12);
    border-radius: 999px;
    padding: 0.8rem 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.alert-success .icon,
.alert-success i {
    background: rgba(255,255,255,0.08);
    color: var(--text-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
}

.alert-warning {
    background: rgba(251, 191, 36, 0.1);
    border-color: var(--warning-color);
    color: var(--warning-color);
}

.alert-danger {
    background: rgba(255, 0, 110, 0.1);
    border-color: var(--accent-color);
    color: var(--accent-color);
}

/* Badge component */
.badge {
    border-radius: 50px;
    padding: 0.35em 0.85em;
    font-weight: 600;
}

.badge.bg-primary {
    background: var(--gradient-primary) !important;
    color: var(--bg-primary);
}

.badge.bg-success {
    background: var(--success-color) !important;
}

/* Modal component */
.modal-content {
    background: var(--bg-secondary);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    color: var(--text-primary);
}

.modal-header {
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.modal-footer {
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.modal-backdrop {
    background-color: rgba(10, 14, 39, 0.8);
}

.btn-close {
    filter: invert(1);
    opacity: 0.8;
}

.btn-close:hover {
    opacity: 1;
}

/* Dropdown component */
.dropdown-menu {
    background: var(--bg-secondary);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.dropdown-item {
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background: rgba(0, 212, 255, 0.1);
    color: var(--primary-color);
}

.dropdown-divider {
    border-color: rgba(0, 212, 255, 0.2);
}

/* Pagination component */
.pagination {
    gap: 0.5rem;
}

.page-link {
    background: var(--bg-tertiary);
    border: 1px solid rgba(0, 212, 255, 0.2);
    color: var(--text-primary);
    border-radius: 10px;
    margin: 0 0.25rem;
}

.page-link:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.page-item.active .page-link {
    background: var(--gradient-primary);
    border-color: var(--primary-color);
    color: var(--bg-primary);
}

/* Progress component */
.progress {
    background: var(--bg-tertiary);
    border-radius: 50px;
    height: 1rem;
}

.progress-bar {
    background: var(--gradient-primary);
    border-radius: 50px;
}

/* Spinner component */
.spinner-border {
    border-color: var(--primary-color);
    border-right-color: transparent;
}

/* Tooltip & Popover */
.tooltip .tooltip-inner {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: var(--shadow-md);
}

.tooltip .tooltip-arrow::before {
    border-top-color: var(--bg-secondary);
}

.popover {
    background: var(--bg-secondary);
    border: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: var(--shadow-lg);
}

.popover-header {
    background: var(--bg-tertiary);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    color: var(--text-primary);
}

.popover-body {
    color: var(--text-secondary);
}

/* Bootstrap Grid Enhancements */
.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    padding-left: 15px;
    padding-right: 15px;
}

/* Row gutters */
.row {
    margin-left: -15px;
    margin-right: -15px;
}

.row > * {
    padding-left: 15px;
    padding-right: 15px;
}

.text-center {
    text-align: center;
}

.mt-5 {
    margin-top: 3rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .btn,
    .scroll-indicator {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
}

/* Desktop tweak: increase spacing between hero stats on large screens */
@media (min-width: 992px) {
    .hero-stats {
        gap: 6rem !important;
    }

    .hero-stats .stat-item {
        padding-right: 0.5rem;
    }
}

/* Mobile tweak: keep hero stats on a single horizontal row for small phones */
@media (max-width: 575px) {
    .hero-stats {
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        gap: 1rem !important;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .hero-stats .stat-item {
        flex: 0 0 auto;
        min-width: 100px;
        text-align: center !important;
    }

    .hero-stats .stat-number {
        font-size: 1.9rem !important;
    }

    .hero-stats .stat-label {
        font-size: 0.82rem !important;
    }
}

/* Center card contents (pricing, stat, generic cards) on small screens */
@media (max-width: 767px) {
    /* Pricing cards */
    .pricing-card,
    .pricing-card .pricing-header,
    .pricing-card .price,
    .pricing-header h3 {
        text-align: center !important;
    }

    .pricing-features {
        list-style: none;
        padding: 0;
        margin: 0.75rem auto 0 auto;
        display: block;
        text-align: center;
    }

    .pricing-features li {
        display: block;
        margin: 0.35rem 0;
        text-align: center;
    }

    .pricing-features i {
        display: inline-block;
        margin-right: 0.5rem;
        vertical-align: middle;
    }

    /* Dashboard / stat cards */
    .stat-card,
    .dashboard-stats .stat-card,
    .stat-card .stat-icon,
    .stat-card .stat-value,
    .stat-card .stat-label,
    .stat-card .stat-trend {
        text-align: center !important;
    }

    .stat-card .stat-icon {
        margin: 0 auto 0.5rem auto;
        display: inline-flex;
        justify-content: center;
        align-items: center;
    }

    .stat-card .stat-value {
        font-size: 2rem;
        margin: 0.25rem 0;
        display: block;
    }

    .stat-card .stat-trend {
        margin-top: 0.5rem;
        display: block;
    }

    /* Generic cards and features */
    .stat-item,
    .hero-stats .stat-item,
    .card,
    .card .card-body,
    .feature-card {
        text-align: center !important;
    }

    .stat-number,
    .card .card-body .stat-number {
        margin-left: auto;
        margin-right: auto;
        display: block;
    }

    /* Ensure icons inside cards are centered */
    .card .icon,
    .feature-card i,
    .pricing-card .pricing-header i,
    .feature-icon,
    .feature-icon i {
        display: inline-flex;
        margin: 0 auto 0.5rem auto;
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 575px) {
    .feature-card {
        text-align: center;
    }
    
    /* Ensure proper spacing on mobile for feature detail sections */
    .feature-detail-section {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
}
