/* ===================================
   TOPLCR Landing Page - Custom CSS
   ===================================  */

/* CSS Custom Properties (Color Variables) */
:root {
    --primary-color: #FFFFFF;
    --secondary-color: #1ABC9C;
    --accent-color: #FF6B35;
    --dark-text: #333333;
    --light-background: #f8f9fa;
}

/* Global Styles */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--primary-color);
    color: var(--dark-text);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
}

/* Section Padding Utilities */
section {
    padding: 80px 0;
}

/* Responsive Padding for Mobile Devices */
@media (max-width: 768px) {
    section {
        padding: 40px 0;
    }
}

/* ===================================
   HERO SECTION
   =================================== */

/* Hero Section Base */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 40px;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(165deg, #f0fdf9 0%, #ffffff 45%, #f8fafc 100%);
    z-index: 0;
}

.hero-bg::before {
    content: "";
    position: absolute;
    width: 80%;
    max-width: 600px;
    height: 80%;
    max-height: 500px;
    top: -20%;
    right: -15%;
    background: radial-gradient(ellipse, rgba(26, 188, 156, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-bg::after {
    content: "";
    position: absolute;
    width: 60%;
    max-width: 400px;
    height: 60%;
    bottom: -10%;
    left: -10%;
    background: radial-gradient(ellipse, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero-section .container {
    z-index: 1;
}

.hero-content {
    max-width: 720px;
    margin: 0 auto 24px;
}

/* Eyebrow */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 16px;
}

.hero-eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--secondary-color);
    animation: hero-pulse 2s ease-in-out infinite;
}

@keyframes hero-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

@media (prefers-reduced-motion: reduce) {
    .hero-eyebrow-dot {
        animation: none;
        opacity: 1;
    }
    .video-card:hover {
        transform: none;
    }
}

/* Typography */
.hero-headline {
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    color: #e85a2a;
    margin-bottom: 20px;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.hero-headline-accent {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #0d9488 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subheadline {
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: #64748b;
    margin-bottom: 32px;
    line-height: 1.6;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA group */
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    align-items: center;
    margin-bottom: 28px;
}

.cta-button {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 16px 28px;
    border-radius: 12px;
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    text-decoration: none;
    text-align: center;
    min-height: 52px;
}

.cta-primary {
    background: linear-gradient(135deg, var(--accent-color) 0%, #e85a2a 100%);
    color: #fff;
    box-shadow: 0 4px 14px rgba(255, 107, 53, 0.35);
}

.cta-primary:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4);
}

.cta-primary .cta-sub {
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.95;
}

.cta-secondary {
    background: #fff;
    color: #334155;
    border: 2px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.cta-secondary:hover {
    background: #f8fafc;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 188, 156, 0.15);
}

.cta-secondary i {
    margin-right: 6px;
    font-size: 0.9em;
}

.cta-button:active {
    transform: translateY(0);
}

.cta-button:focus-visible {
    outline: 3px solid var(--secondary-color);
    outline-offset: 3px;
}

/* Trust row */
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 28px;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

.hero-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-trust-item i {
    color: var(--secondary-color);
    font-size: 1rem;
}

/* Feature Pills */
.feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    align-items: center;
    margin-top: 36px;
    margin-bottom: 16px;
    padding: 0 20px;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(26, 188, 156, 0.15);
    border-radius: 22px;
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #475569;
    transition: all 0.25s ease;
    cursor: default;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.feature-pill i {
    color: var(--secondary-color);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.feature-pill:hover {
    background: rgba(26, 188, 156, 0.08);
    border-color: rgba(26, 188, 156, 0.35);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(26, 188, 156, 0.15);
}

.feature-pill:hover i {
    color: #0d9488;
}

@media (prefers-reduced-motion: reduce) {
    .feature-pill:hover {
        transform: none;
    }
}

/* Video block */
.video-wrapper {
    scroll-margin-top: 100px;
}

.video-container {
    max-width: 940px;
    margin: 0 auto;
}

.video-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.video-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.06);
    transform: translateY(-4px);
}

.video-container .ratio-16x9 iframe {
    border: none;
    border-radius: 0;
}

/* Legacy trust-badge (if still used elsewhere) */
.trust-badge {
    margin-top: 24px;
    font-size: 15px;
    color: var(--secondary-color);
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* Responsive Design for Large Desktop */
@media (max-width: 992px) {
    .hero-section {
        min-height: auto;
        padding: 80px 20px 60px;
    }
    
    .hero-content {
        margin-bottom: 44px;
    }
    
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .hero-subheadline {
        font-size: 1.125rem;
        margin-bottom: 28px;
    }
    
    .hero-actions {
        margin-bottom: 24px;
    }
    
    .cta-button {
        min-height: 48px;
    }
}

/* Responsive Design for Tablet */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 16px 50px;
    }
    
    .hero-content {
        margin-bottom: 40px;
    }
    
    .hero-headline {
        font-size: 2rem;
        margin-bottom: 16px;
    }
    
    .hero-subheadline {
        font-size: 1rem;
        margin-bottom: 24px;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        margin-bottom: 20px;
    }
    
    .cta-button {
        width: 100%;
        max-width: 100%;
        font-size: 0.9375rem;
        padding: 14px 24px;
        min-height: 48px;
    }
    
    .cta-primary .cta-sub {
        font-size: 0.7rem;
    }
    
    .hero-trust {
        gap: 14px 20px;
        font-size: 0.8125rem;
    }

    .feature-pills {
        margin-top: 28px;
        margin-bottom: 44px;
        gap: 10px;
        padding: 0 12px;
    }

    .feature-pill {
        padding: 9px 17px;
        font-size: 0.875rem;
        gap: 8px;
    }

    .feature-pill i {
        font-size: 1.1rem;
    }

    .video-container {
        margin-bottom: 0;
    }
}

/* Responsive Design for Mobile */
@media (max-width: 480px) {
    .hero-section {
        padding: 48px 12px 40px;
    }
    
    .hero-eyebrow {
        font-size: 0.75rem;
        letter-spacing: 0.1em;
    }
    
    .hero-headline {
        font-size: 1.75rem;
    }
    
    .hero-subheadline {
        font-size: 0.9375rem;
    }
    
    .hero-trust {
        flex-direction: column;
        gap: 10px;
    }

    .feature-pills {
        margin-top: 22px;
        margin-bottom: 34px;
        gap: 8px;
        padding: 0 8px;
    }

    .feature-pill {
        padding: 8px 15px;
        font-size: 0.8125rem;
        gap: 7px;
        border-radius: 20px;
    }

    .feature-pill i {
        font-size: 1rem;
    }

    .trust-badge {
        font-size: 14px;
    }
}

/* ===================================
   PROBLEM-SOLUTION SECTION
   =================================== */

.problem-solution-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    padding: 100px 0 88px;
}

.problem-solution-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}

.problem-solution-eyebrow {
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.problem-solution-heading {
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    color: #1e293b;
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.problem-solution-sub {
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* Grid: 3 columns desktop, 2 tablet, 1 mobile */
.problem-solution-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .problem-solution-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
}

@media (min-width: 992px) {
    .problem-solution-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
}

/* Card */
.problem-solution-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.problem-solution-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border-color: rgba(26, 188, 156, 0.25);
}

.problem-solution-card .ps-card-inner {
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Card icon in rounded container */
.ps-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(26, 188, 156, 0.12) 0%, rgba(26, 188, 156, 0.06) 100%);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.ps-card-icon i {
    font-size: 1.5rem;
}

.ps-card-title {
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

/* Problem / Solution blocks */
.ps-card-problem,
.ps-card-solution {
    margin-bottom: 0;
}

.ps-card-solution {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

.ps-label {
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #94a3b8;
    display: block;
    margin-bottom: 6px;
}

.ps-label-solution {
    color: var(--secondary-color);
}

.ps-card-problem p,
.ps-card-solution p {
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #475569;
    margin: 0;
}

.ps-card-solution p {
    color: #334155;
    font-weight: 500;
}

@media (prefers-reduced-motion: reduce) {
    .problem-solution-card:hover {
        transform: none;
    }
}

/* Responsive: Problem-Solution */
@media (max-width: 768px) {
    .problem-solution-section {
        padding: 64px 0 56px;
    }
    
    .problem-solution-header {
        margin-bottom: 40px;
    }
    
    .problem-solution-heading {
        font-size: 1.625rem;
    }
    
    .problem-solution-sub {
        font-size: 1rem;
    }
    
    .problem-solution-card .ps-card-inner {
        padding: 24px 20px;
    }
    
    .ps-card-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        margin-bottom: 16px;
    }
    
    .ps-card-icon i {
        font-size: 1.25rem;
    }
    
    .ps-card-title {
        font-size: 1.125rem;
        margin-bottom: 16px;
    }
    
    .ps-card-problem p,
    .ps-card-solution p {
        font-size: 0.875rem;
    }
    
    .ps-card-solution {
        margin-top: 16px;
        padding-top: 16px;
    }
}

/* ===================================
   BENEFITS SECTION
   =================================== */

.benefits-section {
    background: linear-gradient(180deg, #ecfdf5 0%, #d1fae5 35%, #a7f3d0 100%);
    padding: 64px 0 88px;
}

.benefits-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 56px;
}

.benefits-eyebrow {
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #047857;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.benefits-eyebrow-link,
.benefits-eyebrow-link:visited,
.benefits-eyebrow-link:active {
    color: #047857;
    text-decoration: none;
    border-bottom: 1.5px solid transparent;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.benefits-eyebrow-link:hover {
    color: #065f46;
    text-decoration: none;
    border-bottom-color: #047857;
}

.benefits-heading {
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    color: #064e3b;
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.benefits-sub {
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    font-size: 1.125rem;
    color: #065f46;
    line-height: 1.5;
    margin: 0;
    opacity: 0.95;
}

/* Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
}

@media (min-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
}

/* Cards */
.benefit-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(6, 78, 59, 0.12);
    box-shadow: 0 4px 16px rgba(6, 78, 59, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(6, 78, 59, 0.12);
    border-color: rgba(6, 78, 59, 0.2);
}

.benefit-card-inner {
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Icon: colored by card type */
.benefit-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.benefit-card-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.benefit-card--speed .benefit-card-icon {
    background: linear-gradient(135deg, var(--accent-color) 0%, #e85a2a 100%);
}

.benefit-card--reliability .benefit-card-icon {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #0d9488 100%);
}

.benefit-card--revenue .benefit-card-icon {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.benefit-card-title {
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

/* List */
.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.benefit-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    font-size: 0.9375rem;
    line-height: 1.55;
    color: #475569;
    margin-bottom: 14px;
}

.benefit-list li:last-child {
    margin-bottom: 0;
}

.benefit-list li i {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    border-radius: 50%;
    background: rgba(26, 188, 156, 0.15);
    color: var(--secondary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
}

@media (prefers-reduced-motion: reduce) {
    .benefit-card:hover {
        transform: none;
    }
}

/* Responsive: Benefits */
@media (max-width: 768px) {
    .benefits-section {
        padding: 64px 0 56px;
    }
    
    .benefits-header {
        margin-bottom: 40px;
    }
    
    .benefits-heading {
        font-size: 1.625rem;
    }
    
    .benefits-sub {
        font-size: 1rem;
    }
    
    .benefit-card-inner {
        padding: 24px 20px;
    }
    
    .benefit-card-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 16px;
    }
    
    .benefit-card-icon i {
        font-size: 1.25rem;
    }
    
    .benefit-card-title {
        font-size: 1.125rem;
        margin-bottom: 16px;
    }
    
    .benefit-list li {
        font-size: 0.875rem;
        margin-bottom: 12px;
    }
}

@media (max-width: 480px) {
    .benefits-section {
        padding: 48px 0 44px;
    }
    
    .benefits-header {
        margin-bottom: 32px;
    }
    
    .benefits-heading {
        font-size: 1.5rem;
    }
    
    .benefit-card-inner {
        padding: 20px 18px;
    }
    
    .benefit-card-title {
        font-size: 1rem;
    }
}

/* ===================================
   FAQ SECTION
   =================================== */

.faq-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    padding: 100px 0 88px;
}

.faq-container {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.faq-header {
    text-align: center;
    margin-bottom: 48px;
}

.faq-eyebrow {
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.faq-heading {
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    color: #1e293b;
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.faq-sub {
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* Legacy subheading (if used elsewhere) */
.faq-subheading {
    text-align: center;
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 48px;
}

/* Accordion: card-style items with gap */
.accordion-faq {
    --faq-accent: var(--secondary-color);
    border: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.accordion-faq .accordion-item {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.accordion-faq .accordion-item:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.accordion-faq .accordion-item:last-child {
    margin-bottom: 0;
}

.accordion-faq .accordion-header {
    padding: 0;
    margin: 0;
}

.accordion-faq .accordion-button {
    background: #fff !important;
    color: #1e293b !important;
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    font-weight: 600;
    font-size: 1.0625rem;
    padding: 20px 24px;
    padding-right: 56px;
    border: none;
    box-shadow: none;
    transition: background-color 0.2s ease, color 0.2s ease;
    position: relative;
    text-align: left;
    min-height: 56px;
    line-height: 1.4;
}

.accordion-faq .accordion-button:hover {
    background: #f8fafc !important;
    color: #0f172a !important;
}

.accordion-faq .accordion-button:not(.collapsed) {
    background: #f0fdf9 !important;
    color: #0f172a !important;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: none;
}

.accordion-faq .accordion-button::after {
    display: none;
}

.accordion-faq .accordion-button::before {
    content: "";
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M19 9l-7 7-7-7'/%3E%3C/svg%3E") no-repeat center;
    background-size: 20px;
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.accordion-faq .accordion-button:not(.collapsed)::before {
    transform: translateY(-50%) rotate(180deg);
}

.accordion-faq .accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(26, 188, 156, 0.25);
    outline: none;
}

.accordion-faq .accordion-body {
    background: #fff;
    padding: 0 24px 20px;
    padding-right: 24px;
    color: #475569;
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    font-size: 0.9375rem;
    line-height: 1.65;
    border: none;
    border-top: none;
}

.accordion-faq .accordion-button:not(.collapsed) + .accordion-collapse .accordion-body {
    border-top: none;
}

@media (prefers-reduced-motion: reduce) {
    .accordion-faq .accordion-button::before {
        transition: none;
    }
}

/* Responsive: FAQ */
@media (max-width: 768px) {
    .faq-section {
        padding: 64px 0 56px;
    }
    
    .faq-header {
        margin-bottom: 36px;
    }
    
    .faq-heading {
        font-size: 1.625rem;
    }
    
    .faq-sub {
        font-size: 1rem;
    }
    
    .faq-container {
        padding: 0 16px;
    }
    
    .accordion-faq {
        gap: 10px;
    }
    
    .accordion-faq .accordion-button {
        padding: 18px 20px;
        padding-right: 48px;
        font-size: 1rem;
        min-height: 52px;
    }
    
    .accordion-faq .accordion-button::before {
        right: 20px;
        width: 18px;
        height: 18px;
        background-size: 18px;
    }
    
    .accordion-faq .accordion-body {
        padding: 0 20px 18px;
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 48px 0 44px;
    }
    
    .faq-header {
        margin-bottom: 28px;
    }
    
    .faq-heading {
        font-size: 1.5rem;
    }
    
    .faq-container {
        padding: 0 12px;
    }
    
    .accordion-faq .accordion-button {
        padding: 16px 18px;
        padding-right: 44px;
        font-size: 0.9375rem;
        min-height: 48px;
    }
    
    .accordion-faq .accordion-button::before {
        right: 18px;
    }
    
    .accordion-faq .accordion-body {
        padding: 0 18px 16px;
        font-size: 0.875rem;
    }
}

/* ===================================
   CONTACT FORM SECTION
   =================================== */

.contact-form-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    padding: 100px 0 88px;
    position: relative;
}

/* Section Header */
.contact-section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}

.contact-eyebrow {
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.contact-heading {
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    color: #1e293b;
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.contact-sub {
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* Two-Column Layout */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .contact-layout {
        grid-template-columns: 1.2fr 1fr;
        gap: 48px;
        align-items: start;
    }
}

/* LEFT: Form Container */
.contact-form-container {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.3s ease;
}

.contact-form-container:hover {
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.06);
}

/* Form Messages */
.form-messages-container {
    margin-bottom: 24px;
}

.form-success-message {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #065f46;
    border: 1px solid #6ee7b7;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 20px;
    display: none;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
}

.form-success-message.show {
    display: block;
}

.form-error-message {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: #991b1b;
    border: 1px solid #fca5a5;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 20px;
    display: none;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
}

.form-error-message.show {
    display: block;
}

/* Form Fields */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-label i {
    color: var(--secondary-color);
    font-size: 0.875rem;
}

.optional-label {
    font-weight: 400;
    color: #94a3b8;
    font-size: 0.875rem;
}

/* Input with Icon */
.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 16px;
    color: #94a3b8;
    font-size: 1rem;
    pointer-events: none;
    transition: color 0.2s ease;
    z-index: 1;
}

.input-icon-textarea {
    top: 16px;
}

.contact-form .input-with-icon .form-control {
    padding-left: 58px;
}

.contact-form .input-with-icon textarea.form-control {
    padding-left: 58px;
}

.input-with-icon .form-control:focus ~ .input-icon,
.input-with-icon .form-control:focus + .input-icon {
    color: var(--secondary-color);
}

/* Form Controls */
.contact-form .form-control {
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    font-size: 0.9375rem;
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    background-color: #fff;
    color: #1e293b;
    transition: all 0.25s ease;
    width: 100%;
}

.contact-form .form-control::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

.contact-form .form-control:hover {
    border-color: #cbd5e1;
}

.contact-form .form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(26, 188, 156, 0.1);
    outline: none;
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

/* Validation States */
.contact-form .form-control.is-invalid {
    border-color: #ef4444;
    background-color: #fef2f2;
}

.contact-form .form-control.is-invalid:focus {
    border-color: #ef4444;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.contact-form .form-control.is-valid {
    border-color: #10b981;
    background-color: #f0fdf4;
}

.contact-form .form-control.is-valid:focus {
    border-color: #10b981;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

/* Error Text */
.form-error-text {
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    font-size: 0.8125rem;
    color: #ef4444;
    font-weight: 500;
    display: block;
    margin-top: 4px;
}

/* Submit Button */
.submit-button {
    background: linear-gradient(135deg, var(--accent-color) 0%, #e85a2a 100%);
    color: #fff;
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    font-size: 1.0625rem;
    font-weight: 700;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(255, 107, 53, 0.45);
}

.submit-button:active {
    transform: translateY(0);
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.submit-button:focus-visible {
    outline: 3px solid var(--secondary-color);
    outline-offset: 3px;
}

.button-icon {
    font-size: 0.875rem;
    transition: transform 0.25s ease;
}

.submit-button:hover .button-icon {
    transform: translateX(4px);
}

/* Privacy Note */
.privacy-note {
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    font-size: 0.8125rem;
    color: #64748b;
    text-align: center;
    margin-top: 16px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.privacy-note i {
    color: var(--secondary-color);
    font-size: 0.75rem;
}

/* RIGHT: Benefits Container */
.contact-benefits-container {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* Benefit Highlight Card */
.benefit-highlight-card {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border: 1px solid #6ee7b7;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
}

.benefit-highlight-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #e85a2a 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.25);
}

.benefit-highlight-icon i {
    font-size: 1.75rem;
    color: #fff;
}

.benefit-highlight-title {
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    font-size: 1.375rem;
    font-weight: 800;
    color: #065f46;
    margin-bottom: 12px;
    line-height: 1.3;
}

.benefit-highlight-text {
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    font-size: 0.9375rem;
    color: #047857;
    line-height: 1.6;
    margin: 0;
}

/* Trust Features */
.trust-features {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px;
}

.trust-features-title {
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
}

.trust-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.trust-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.trust-feature-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, rgba(26, 188, 156, 0.15) 0%, rgba(26, 188, 156, 0.08) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-feature-icon i {
    color: var(--secondary-color);
    font-size: 0.875rem;
}

.trust-feature-content {
    flex: 1;
}

.trust-feature-content strong {
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1e293b;
    display: block;
    margin-bottom: 2px;
}

.trust-feature-content p {
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    font-size: 0.8125rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* Social Proof Stats */
.social-proof-stats {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px 20px;
    gap: 12px;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 500;
    line-height: 1.3;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: #e2e8f0;
}

/* Responsive: Contact Form */
@media (max-width: 991px) {
    .contact-form-section {
        padding: 64px 0 56px;
    }

    .contact-section-header {
        margin-bottom: 44px;
    }

    .contact-layout {
        gap: 32px;
    }

    .contact-form-container {
        padding: 32px;
    }
}

@media (max-width: 768px) {
    .contact-form-section {
        padding: 56px 0 48px;
    }

    .contact-heading {
        font-size: 1.625rem;
    }

    .contact-sub {
        font-size: 1rem;
    }

    .contact-section-header {
        margin-bottom: 36px;
    }

    .contact-layout {
        gap: 28px;
    }

    .contact-form-container {
        padding: 28px;
        border-radius: 16px;
    }

    .contact-form {
        gap: 20px;
    }

    .form-label {
        font-size: 0.875rem;
    }

    .contact-form .form-control {
        font-size: 0.875rem;
        padding: 12px 14px;
    }

    .contact-form .input-with-icon .form-control {
        padding-left: 52px;
    }

    .input-icon {
        left: 14px;
        font-size: 0.9375rem;
    }

    .submit-button {
        font-size: 1rem;
        padding: 14px 28px;
    }

    .benefit-highlight-card {
        padding: 28px;
    }

    .benefit-highlight-icon {
        width: 56px;
        height: 56px;
    }

    .benefit-highlight-icon i {
        font-size: 1.5rem;
    }

    .benefit-highlight-title {
        font-size: 1.25rem;
    }

    .trust-features {
        padding: 24px;
    }

    .social-proof-stats {
        padding: 20px 16px;
    }

    .stat-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-form-section {
        padding: 48px 0 40px;
    }

    .contact-heading {
        font-size: 1.5rem;
    }

    .contact-section-header {
        margin-bottom: 32px;
    }

    .contact-layout {
        gap: 24px;
    }

    .contact-form-container {
        padding: 24px;
        border-radius: 14px;
    }

    .contact-form {
        gap: 18px;
    }

    .form-label {
        font-size: 0.8125rem;
    }

    .contact-form .form-control {
        font-size: 0.875rem;
        padding: 12px 14px;
        border-radius: 10px;
    }

    .contact-form .input-with-icon .form-control {
        padding-left: 50px;
    }

    .input-icon {
        left: 12px;
        font-size: 0.875rem;
    }

    .submit-button {
        font-size: 0.9375rem;
        padding: 14px 24px;
    }

    .benefit-highlight-card {
        padding: 24px;
    }

    .benefit-highlight-icon {
        width: 52px;
        height: 52px;
    }

    .benefit-highlight-icon i {
        font-size: 1.375rem;
    }

    .benefit-highlight-title {
        font-size: 1.125rem;
    }

    .benefit-highlight-text {
        font-size: 0.875rem;
    }

    .trust-features {
        padding: 20px;
    }

    .trust-features-title {
        font-size: 0.9375rem;
        margin-bottom: 16px;
    }

    .trust-features-list {
        gap: 14px;
    }

    .trust-feature-icon {
        width: 28px;
        height: 28px;
    }

    .trust-feature-icon i {
        font-size: 0.75rem;
    }

    .trust-feature-content strong {
        font-size: 0.875rem;
    }

    .trust-feature-content p {
        font-size: 0.75rem;
    }

    .social-proof-stats {
        flex-direction: column;
        padding: 20px;
        gap: 16px;
    }

    .stat-divider {
        width: 100%;
        height: 1px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }
}

/* ===================================
   HOW IT WORKS SECTION
   =================================== */

.how-it-works-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    padding: 100px 0 88px;
}

.how-it-works-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 56px;
}

.how-it-works-eyebrow {
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.how-it-works-heading {
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    color: #1e293b;
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    white-space: nowrap;
}

.how-it-works-sub {
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* Grid: 1 / 2 / 3 columns */
.how-it-works-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .how-it-works-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
}

@media (min-width: 992px) {
    .how-it-works-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }
}

/* Operation card */
.operation-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.operation-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border-color: rgba(26, 188, 156, 0.3);
}

.operation-card-inner {
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Step badge */
.operation-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(26, 188, 156, 0.14) 0%, rgba(26, 188, 156, 0.08) 100%);
    color: var(--secondary-color);
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 18px;
}

.operation-title {
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.operation-description {
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    font-size: 0.9375rem;
    color: #475569;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

@media (prefers-reduced-motion: reduce) {
    .operation-card:hover {
        transform: none;
    }
}

/* Responsive: How it works */
@media (max-width: 768px) {
    .how-it-works-section {
        padding: 64px 0 56px;
    }
    
    .how-it-works-header {
        margin-bottom: 40px;
    }
    
    .how-it-works-heading {
        font-size: 1.625rem;
        white-space: normal;
    }
    
    .how-it-works-sub {
        font-size: 1rem;
    }
    
    .operation-card-inner {
        padding: 24px 20px;
    }
    
    .operation-step {
        width: 36px;
        height: 36px;
        font-size: 0.8125rem;
        margin-bottom: 14px;
    }
    
    .operation-title {
        font-size: 1.0625rem;
        margin-bottom: 10px;
    }
    
    .operation-description {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .how-it-works-section {
        padding: 48px 0 44px;
    }
    
    .how-it-works-header {
        margin-bottom: 32px;
    }
    
    .how-it-works-heading {
        font-size: 1.5rem;
        white-space: normal;
    }
    
    .operation-card-inner {
        padding: 20px 18px;
    }
    
    .operation-step {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }
    
    .operation-title {
        font-size: 1rem;
    }
}

/* Legacy: keep .bot-operations-section for any external refs */
.bot-operations-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    padding: 100px 0 88px;
}

/* ===================================
   FOOTER SECTION
   =================================== */

.footer-section {
    background-color: #333333;
    color: #FFFFFF;
    padding: 40px 0;
    border-top: 1px solid #444444;
    margin-top: 0;
}

/* Footer Heading */
.footer-heading {
    font-size: 1rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
}

/* Footer Text */
.footer-text {
    font-size: 0.9rem;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

/* Footer Subtext */
.footer-subtext {
    font-size: 0.85rem;
    color: #CCCCCC;
    margin-bottom: 0;
}

/* Footer Link Group Spacing */
.footer-link-group {
    margin-bottom: 1rem;
}

/* Footer Links */
.footer-link {
    font-size: 0.9rem;
    color: #1ABC9C;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    color: #FFFFFF;
    text-decoration: none;
}

.footer-link i {
    margin-right: 0.5rem;
}

/* Footer Copyright */
.footer-copyright {
    font-size: 0.85rem;
    color: #CCCCCC;
    margin-bottom: 0;
    margin-top: 1rem;
}

/* Footer Top Border */
.footer-top-border {
    border-top: 1px solid #444444;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
}

/* Back to Top Link */
.footer-back-to-top {
    font-size: 0.9rem;
    color: #1ABC9C;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-back-to-top:hover {
    color: #FFFFFF;
    text-decoration: none;
}

.footer-back-to-top i {
    margin-right: 0.5rem;
}

/* Desktop Responsive - Maintain left alignment */
@media (min-width: 768px) {
    .footer-section .col-md-4 {
        text-align: left;
    }
}

/* Mobile Responsive - Center text and stack columns */
@media (max-width: 767px) {
    .footer-section {
        padding: 30px 0;
    }

    .text-md-start {
        text-align: center;
    }

    .col-sm-12 {
        margin-bottom: 2rem;
    }

    .footer-heading {
        margin-bottom: 1rem;
    }

    .footer-link-group {
        margin-bottom: 0.75rem;
    }

    .footer-copyright {
        margin-top: 0.75rem;
    }
}

/* ===================================
   ENHANCED RESPONSIVE DESIGN
   ===================================
   Comprehensive media queries for:
   - Mobile (<576px): reduce font sizes, increase button padding, stack columns
   - Tablet (576-992px): adjust hero height, 2-column grids
   - Desktop (>992px): max-width containers, optimal spacing
   =================================== */

/* ===================================
   MOBILE FIRST: EXTRA SMALL DEVICES (<576px)
   =================================== */
@media (max-width: 575.98px) {
    /* Root level adjustments */
    html {
        font-size: 14px;
    }

    /* Ensure minimum text size of 16px on mobile (prevent zoom) */
    body {
        font-size: 16px;
        line-height: 1.5;
    }

    /* All text should be readable without zoom */
    p, li, span, label, button, input, textarea, select {
        font-size: 16px;
    }

    /* ===== HERO SECTION ===== */
    .hero-section {
        min-height: auto;
        padding: 40px 12px;
    }

    .hero-content {
        margin-bottom: 32px;
    }

    .hero-headline {
        font-size: 1.5rem;
        margin-bottom: 16px;
        line-height: 1.3;
    }

    .hero-subheadline {
        font-size: 1rem;
        margin-bottom: 24px;
        max-width: 100%;
    }

    .video-wrapper {
        margin-top: 0;
    }

    .video-container {
        max-width: 100%;
    }

    /* CTA button - minimum touch target 44x44px */
    .cta-button {
        width: 100%;
        min-height: 44px;
        min-width: 44px;
        padding: 12px 24px;
        font-size: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-trust {
        font-size: 0.8125rem;
    }

    .feature-pills {
        margin-top: 20px;
        margin-bottom: 32px;
        gap: 8px;
        padding: 0 8px;
    }

    .feature-pill {
        padding: 7px 14px;
        font-size: 0.8125rem;
        gap: 7px;
        border-radius: 20px;
    }

    .feature-pill i {
        font-size: 1rem;
    }

    .trust-badge {
        font-size: 14px;
        margin-top: 20px;
    }

    /* ===== PROBLEM-SOLUTION SECTION ===== */
    .problem-solution-section {
        padding: 48px 0 40px;
    }

    .problem-solution-header {
        margin-bottom: 32px;
    }

    .problem-solution-heading {
        font-size: 1.375rem;
    }

    .problem-solution-sub {
        font-size: 0.9375rem;
    }

    .problem-solution-grid {
        gap: 20px;
    }

    .problem-solution-card .ps-card-inner {
        padding: 20px 16px;
    }

    .ps-card-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 12px;
    }

    .ps-card-icon i {
        font-size: 1.125rem;
    }

    .ps-card-title {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .ps-card-problem p,
    .ps-card-solution p {
        font-size: 0.8125rem;
    }

    .ps-card-solution {
        margin-top: 12px;
        padding-top: 12px;
    }

    .solution-label {
        font-size: 14px;
    }

    /* Stack all columns vertically */
    .col-lg-4, .col-md-6, .col-sm-12 {
        flex-basis: 100%;
    }

    /* ===== BENEFITS SECTION ===== */
    .benefits-section {
        padding: 48px 0 40px;
    }

    .benefits-header {
        margin-bottom: 32px;
    }

    .benefits-heading {
        font-size: 1.375rem;
    }

    .benefits-sub {
        font-size: 0.9375rem;
    }

    .benefits-grid {
        gap: 20px;
    }

    .benefit-card-inner {
        padding: 20px 16px;
    }

    .benefit-card-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 12px;
    }

    .benefit-card-icon i {
        font-size: 1.125rem;
    }

    .benefit-card-title {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .benefit-list li {
        font-size: 0.8125rem;
        margin-bottom: 10px;
    }

    /* ===== HOW IT WORKS / OPERATIONS SECTION ===== */
    .how-it-works-section {
        padding: 48px 0 40px;
    }

    .how-it-works-header {
        margin-bottom: 32px;
    }

    .how-it-works-heading {
        font-size: 1.375rem;
    }

    .how-it-works-sub {
        font-size: 0.9375rem;
    }

    .how-it-works-grid {
        gap: 20px;
    }

    .operation-card-inner {
        padding: 20px 16px;
    }

    .operation-step {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }

    .operation-title {
        font-size: 1rem;
    }

    .operation-description {
        font-size: 0.875rem;
    }

    /* ===== FAQ SECTION ===== */
    .faq-section {
        padding: 48px 0 40px;
    }

    .faq-container {
        padding: 0 12px;
    }

    .faq-header {
        margin-bottom: 28px;
    }

    .faq-heading {
        font-size: 1.375rem;
    }

    .faq-sub {
        font-size: 0.9375rem;
    }

    .accordion-faq .accordion-button {
        padding: 14px 16px;
        padding-right: 44px;
        font-size: 0.9375rem;
        min-height: 48px;
    }

    .accordion-faq .accordion-body {
        padding: 0 16px 14px;
        font-size: 0.875rem;
    }

    /* ===== CONTACT FORM SECTION ===== */
    .contact-form-section {
        padding: 40px 0;
    }

    .contact-heading {
        font-size: 1.375rem;
    }

    .contact-sub {
        font-size: 0.9375rem;
    }

    .contact-section-header {
        margin-bottom: 28px;
    }

    .contact-layout {
        gap: 20px;
    }

    .contact-form-container {
        padding: 20px;
        border-radius: 12px;
    }

    .contact-form {
        gap: 16px;
    }

    .form-label {
        font-size: 0.8125rem;
    }

    .contact-form .form-control {
        font-size: 16px;
        padding: 12px 14px;
        min-height: 44px;
        border-radius: 10px;
    }

    .contact-form .input-with-icon .form-control {
        padding-left: 50px;
    }

    .input-icon {
        left: 12px;
        font-size: 0.875rem;
    }

    .contact-form textarea.form-control {
        min-height: 90px;
    }

    .submit-button {
        font-size: 16px;
        min-height: 44px;
        min-width: 44px;
        width: 100%;
        padding: 12px 24px;
    }

    .benefit-highlight-card {
        padding: 20px;
    }

    .benefit-highlight-icon {
        width: 48px;
        height: 48px;
    }

    .benefit-highlight-icon i {
        font-size: 1.25rem;
    }

    .benefit-highlight-title {
        font-size: 1.125rem;
    }

    .benefit-highlight-text {
        font-size: 0.875rem;
    }

    .trust-features {
        padding: 18px;
    }

    .trust-features-title {
        font-size: 0.9375rem;
    }

    .trust-feature-content strong {
        font-size: 0.875rem;
    }

    .trust-feature-content p {
        font-size: 0.75rem;
    }

    .social-proof-stats {
        flex-direction: column;
        padding: 18px;
        gap: 12px;
    }

    .stat-divider {
        width: 100%;
        height: 1px;
    }

    /* ===== FOOTER SECTION ===== */
    .footer-section {
        padding: 24px 0;
        margin-top: 0;
    }

    .footer-heading {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .footer-text,
    .footer-link {
        font-size: 13px;
    }

    .footer-copyright {
        font-size: 12px;
    }

    /* ===== RESPONSIVE UTILITIES FOR MOBILE ===== */
    .show-mobile { display: block !important; }
    .hide-mobile { display: none !important; }
    .text-center-mobile { text-align: center !important; }
}

/* ===================================
   SMALL DEVICES (576px - 767px)
   =================================== */
@media (min-width: 576px) and (max-width: 767.98px) {
    /* Ensure minimum text size */
    p, li, span, label, button, input, textarea, select {
        font-size: 15px;
    }

    .hero-section {
        min-height: 70vh;
        padding: 50px 16px;
    }

    .hero-headline {
        font-size: 28px;
    }

    .hero-subheadline {
        font-size: 16px;
    }

    .cta-button {
        min-height: 44px;
        min-width: 44px;
        font-size: 15px;
    }

    .problem-solution-heading {
        font-size: 1.625rem;
    }

    .ps-card-title {
        font-size: 1.125rem;
    }

    .benefits-heading {
        font-size: 1.625rem;
    }

    .benefit-card-title {
        font-size: 1.125rem;
    }

    .how-it-works-heading {
        font-size: 1.5rem;
    }

    .faq-heading {
        font-size: 1.625rem;
    }

    .faq-sub {
        font-size: 1rem;
    }

    .accordion-faq .accordion-button {
        font-size: 1rem;
        min-height: 48px;
        padding: 16px 20px;
        padding-right: 48px;
    }

    .contact-heading {
        font-size: 1.625rem;
    }

    .contact-form-container {
        padding: 25px;
    }

    .contact-form .form-control {
        font-size: 15px;
        min-height: 42px;
    }

    .submit-button {
        min-height: 44px;
        font-size: 15px;
    }

    /* Show/hide utilities for tablet */
    .show-tablet { display: block !important; }
    .hide-tablet { display: none !important; }
}

/* ===================================
   TABLET DEVICES (768px - 991px)
   Adjust hero height, card grid to 2 columns
   =================================== */
@media (min-width: 768px) and (max-width: 991.98px) {
    /* Ensure text is readable */
    p, li, span, label, button, input, textarea, select {
        font-size: 15px;
    }

    .hero-section {
        min-height: 70vh;
        padding: 60px 20px;
    }

    .hero-headline {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .hero-subheadline {
        font-size: 1.0625rem;
        margin-bottom: 28px;
    }

    .hero-actions {
        gap: 12px;
    }

    .cta-button {
        min-height: 48px;
        font-size: 1rem;
        padding: 14px 28px;
        max-width: 320px;
    }

    /* Problem-Solution: 2 columns */
    .problem-solution-section {
        padding: 72px 0 64px;
    }

    .problem-solution-header {
        margin-bottom: 48px;
    }

    .problem-solution-heading {
        font-size: 2rem;
    }

    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-md-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    /* Benefits Section */
    .benefits-section {
        padding: 72px 0 64px;
    }

    .benefits-header {
        margin-bottom: 48px;
    }

    .benefits-heading {
        font-size: 2rem;
    }

    .benefit-card-inner {
        padding: 28px 24px;
    }

    .benefit-card-icon {
        width: 52px;
        height: 52px;
    }

    .benefit-card-title {
        font-size: 1.125rem;
    }

    /* How it works: 2 columns */
    .how-it-works-section {
        padding: 72px 0 64px;
    }

    .how-it-works-header {
        margin-bottom: 48px;
    }

    .how-it-works-heading {
        font-size: 2rem;
    }

    .operation-card-inner {
        padding: 26px 22px;
    }

    /* FAQ and Contact adjustments */
    .faq-header {
        margin-bottom: 44px;
    }

    .faq-heading {
        font-size: 2rem;
    }

    .contact-heading {
        font-size: 2rem;
    }

    .contact-form-container {
        padding: 32px;
    }

    .contact-form .form-control {
        min-height: 42px;
    }

    .submit-button {
        min-height: 44px;
        font-size: 16px;
    }

    /* Tablet utilities */
    .show-tablet { display: block !important; }
    .hide-tablet { display: none !important; }
    .show-mobile { display: none !important; }
    .hide-mobile { display: block !important; }
}

/* ===================================
   DESKTOP DEVICES (≥992px)
   Ensure max-width containers don't stretch too wide
   =================================== */
@media (min-width: 992px) {
    /* Constrain max widths for better readability on ultra-wide screens */
    .container {
        max-width: 1200px;
    }

    .video-container {
        max-width: 960px;
    }

    .faq-container {
        max-width: 720px;
    }

    .contact-layout {
        max-width: 1100px;
    }

    .hero-section {
        min-height: 85vh;
        padding: 80px 20px;
    }

    .hero-content {
        margin-bottom: 64px;
    }

    .hero-headline {
        font-size: 3.25rem;
        white-space: nowrap;
    }

    .hero-subheadline {
        font-size: 1.25rem;
        max-width: 580px;
    }

    .hero-actions {
        gap: 16px;
        margin-bottom: 32px;
    }

    .cta-button {
        min-height: 52px;
        min-width: 140px;
        font-size: 1.0625rem;
        padding: 18px 32px;
    }

    .cta-primary .cta-sub {
        font-size: 0.8125rem;
    }

    /* Problem-Solution 3 columns (section uses own grid) */
    .problem-solution-section {
        padding: 100px 0 88px;
    }

    .problem-solution-header {
        margin-bottom: 56px;
    }

    /* Other sections: 3-column grid */
    .col-lg-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .problem-solution-card {
        margin-bottom: 0;
    }

    /* Buttons should maintain minimum touch targets */
    button, .btn {
        min-height: 44px;
        min-width: 44px;
    }

    /* Accordion and form elements */
    .accordion-faq .accordion-button {
        min-height: 56px;
        font-size: 1.0625rem;
        padding: 20px 24px;
        padding-right: 56px;
    }

    .contact-form .form-control {
        min-height: 40px;
        font-size: 16px;
    }

    .submit-button {
        min-height: 50px;
        font-size: 18px;
    }

    /* Desktop utilities */
    .show-desktop { display: block !important; }
    .hide-desktop { display: none !important; }
    .show-mobile { display: none !important; }
    .hide-mobile { display: block !important; }
    .show-tablet { display: none !important; }
    .hide-tablet { display: block !important; }

    /* Benefits heading — single line on desktop */
    .benefits-header {
        max-width: 900px;
    }

    .benefits-heading {
        white-space: nowrap;
    }
}

/* ===================================
   ULTRA-WIDE SCREENS (≥1400px)
   Additional spacing optimization
   =================================== */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }

    section {
        padding: 100px 0;
    }

    .hero-section {
        min-height: 90vh;
    }

    .hero-headline {
        font-size: 3.5rem;
    }

    .hero-content {
        margin-bottom: 40px;
    }
}

/* ===================================
   RESPONSIVE VIDEO EMBED
   Maintains 16:9 aspect ratio on all screens
   Bootstrap's ratio utility handles this via ratio-16x9 class
   =================================== */
.ratio {
    position: relative;
    width: 100%;
}

.ratio-16x9 {
    aspect-ratio: 16 / 9;
}

.ratio-16x9 > * {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
}

/* Video iframe inherits card styling; no extra radius needed */
@media (max-width: 767px) {
    .video-card {
        border-radius: 12px;
    }
}

/* ===================================
   RESPONSIVE UTILITIES CLASSES
   Use these for show/hide elements by breakpoint
   =================================== */

/* Visibility utilities */
.d-mobile { display: none; }
.d-tablet { display: none; }
.d-desktop { display: block; }

@media (max-width: 575.98px) {
    .d-mobile { display: block; }
    .d-tablet { display: none; }
    .d-desktop { display: none; }
    
    .hidden-mobile { display: none !important; }
    .visible-mobile { display: block !important; }
}

@media (min-width: 576px) and (max-width: 991.98px) {
    .d-mobile { display: none; }
    .d-tablet { display: block; }
    .d-desktop { display: none; }
    
    .hidden-tablet { display: none !important; }
    .visible-tablet { display: block !important; }
}

@media (min-width: 992px) {
    .d-mobile { display: none; }
    .d-tablet { display: none; }
    .d-desktop { display: block; }
    
    .hidden-desktop { display: none !important; }
    .visible-desktop { display: block !important; }
}

/* ===================================
   ACCESSIBILITY: FOCUS STATES
   Enhanced keyboard navigation for all devices
   =================================== */
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
a:focus-visible {
    outline: 3px solid var(--secondary-color);
    outline-offset: 2px;
}

/* Remove outline on mouse/touch, keep on keyboard */
button:focus:not(:focus-visible),
input:focus:not(:focus-visible),
textarea:focus:not(:focus-visible),
select:focus:not(:focus-visible),
a:focus:not(:focus-visible) {
    outline: none;
}

/* ===================================
   TOUCH-FRIENDLY SPACING
   Increased spacing on mobile for easier interaction
   =================================== */
@media (max-width: 767px) {
    /* Increase gap between interactive elements */
    .row {
        gap: 16px;
    }

    .row.g-4 {
        gap: 1.5rem;
    }

    /* Better spacing between form fields */
    .mb-3 {
        margin-bottom: 1.5rem !important;
    }

    /* More breathing room around cards */
    .card {
        margin-bottom: 1rem;
    }
}