/* Landing Page Styles - Parent Portal */
/* Modernized with Glassmorphism & Micro-animations */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

/* Landing page has no sidebar — override tpp.css sidebar offsets */
.topbar {
    background: #222222;
}
footer {
    margin-left: 0;
}
.topbar-theme-toggle {
    display: none;
}

:root {
    /* Brand Colors (Preserved) */
    --primary-blue: #84BED6;
    --primary-blue-rgb: 132, 190, 214;
    --primary-blue-light: #eff8fb;
    --primary-blue-dark: #5a9bb5;

    --primary-red: #ea7066;
    --primary-red-rgb: 234, 112, 102;
    --primary-red-light: #fff5f4;

    /* Neutral & UI Colors */
    --text-dark: #1e293b;
    --text-body: #475569;
    --text-muted: #94a3b8;
    --white: #ffffff;
    --bg-light: #f8fafc;
    --bg-cream: #fffaf9;
    --bg-contrast: #eef8ff;
    /* Soft blue tint for contrast */
    --bg-hero-red: #FFF7F5;
    /* User requested light red */


    /* Modern UI Variables */
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(132, 190, 214, 0.15), 0 4px 6px -2px rgba(132, 190, 214, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: 1px solid rgba(255, 255, 255, 0.5);
    --glass-blur: blur(12px);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;

    --primary-green: #10b981;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: hidden;
    /* Prevent horizontal scroll from animations */
}

body {
    font-family: var(--font-sans);
    color: var(--text-body);
    line-height: 1.7;
    background-color: var(--bg-light);
    margin: 0;
    overflow-x: hidden;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: none;
}

.fade-up {
    transform: translateY(30px);
}

.fade-left {
    transform: translateX(30px);
}

.fade-right {
    transform: translateX(-30px);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

/* Components */
.hero-section,
.feature-hero {
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background-color: #FFF7F5;
    /* Explicit Light Red */
}

.btn-primary-landing {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    box-shadow: 0 4px 15px rgba(132, 190, 214, 0.4);
    cursor: pointer;
    letter-spacing: 0.01em;
}

.btn-primary-landing:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(132, 190, 214, 0.5);
    color: var(--white);
}

.btn-secondary-landing {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--text-dark);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.btn-secondary-landing:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-blue);
    color: var(--primary-blue-dark);
}

.btn-tertiary-landing {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--text-muted);
    padding: 16px 24px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-tertiary-landing:hover {
    color: var(--primary-blue-dark);
    background: var(--primary-blue-light);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 120px 0 80px;
    background: radial-gradient(circle at top right, var(--primary-blue-light) 0%, transparent 40%),
        radial-gradient(circle at bottom left, var(--primary-red-light) 0%, transparent 40%),
        var(--bg-hero-red);
    overflow: hidden;
}

.fill-hero-red {
    fill: var(--bg-hero-red) !important;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: table;
    /* Centers the badge while keeping fit-content width */
    margin: 0 auto 32px;
    /* Center horizontally */
    background: var(--primary-blue);
    /* Solid Blue - High Contrast */
    color: var(--white);
    /* White text */
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-sm);
    border: none;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 540px;
    margin-left: auto;
    /* Ensure description is centered too if block */
    margin-right: auto;
}

/* ... */

/* Consolidated into main .section-title rule below */

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.hero-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    /* transform: perspective(1000px) rotateY(-5deg); Removed static tilt for float */
    background: white;
    padding: 10px;
    animation: float-hero 6s ease-in-out infinite;
}

@keyframes float-hero {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-5px, -15px);
    }

    /* Up and Left slightly */
    100% {
        transform: translate(0, 0);
    }
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: calc(var(--radius-lg) - 5px);
    display: block;
}

/* Trust Bar */
.trust-bar {
    background: var(--white);
    padding: 60px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    z-index: 5;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-md);
    /*box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05);*/
    /* Premium shadow */
    align-items: center;
    /* Vertically align items */
}

.trust-item {
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.trust-item strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.trust-item span {
    font-size: 14px;
    color: var(--text-muted);
}

/* Content Sections */
.content-section {
    padding: 100px 0 50px 0;
    position: relative;
}

.bg-light {
    position: relative;
    background: transparent !important;
    /* Overriding old utility */
}

.bg-white {
    background-color: var(--white);
    position: relative;
}

.bg-contrast {
    background-color: var(--bg-contrast);
    position: relative;
}

.fill-white {
    fill: var(--white) !important;
}

.fill-contrast {
    fill: var(--bg-contrast) !important;
}

/* Wave Decoration */
.wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.wave-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
    filter: drop-shadow(0px 4px 3px rgba(0, 0, 0, 0.05));
}

.wave-bottom .shape-fill {
    fill: var(--white);
}

.wave-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-top svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
    filter: drop-shadow(0px 4px 3px rgba(0, 0, 0, 0.05));
    /* Shadow below the wave */
}

.wave-top .shape-fill {
    fill: var(--white);
}

.wave-flip-vertical {
    transform: scaleY(-1);
    filter: drop-shadow(0px -4px 3px rgba(0, 0, 0, 0.05)) !important;
    /* Inverted shadow to cast down despite flip */
}

.wave-flip-horizontal {
    transform: scaleX(-1);
}


/* Decorative Blobs for Light Sections */
/* Decorative Blobs for Light Sections Removed */
/* .bg-light::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    max-width: 1200px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle at 10% 20%, rgba(132, 190, 214, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(234, 112, 102, 0.05) 0%, transparent 40%);
    z-index: -1;
} */

.section-header {
    margin-bottom: 60px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    display: inline-block;
    color: var(--white);
    /* White text */
    background: var(--primary-blue);
    /* Solid Blue */
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    padding: 8px 16px;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
}

.section-badge.badge-white {
    background: var(--white);
    color: var(--primary-blue-dark);
    border: 1px solid var(--primary-blue-light);
}

.section-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    text-align: center;
    width: 100%;
    display: block !important;
    /* Override global flex styles */
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-body);
    line-height: 1.6;
}

/* Filter Buttons */
.filter-btn {
    display: inline-block;
    padding: 12px 28px;
    margin: 0 8px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: none;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    background: transparent;
}

.filter-btn:hover {
    background: rgba(132, 190, 214, 0.1);
    color: var(--primary-blue-dark);
}

.filter-btn.active {
    background: var(--primary-blue);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(132, 190, 214, 0.3);
}

/* Video Section*/
.video-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-xl);
    padding: 10px;
    background: white;
}

.video-wrapper video,
.video-wrapper .plyr {
    border-radius: calc(var(--radius-lg) - 5px);
    width: 100%;
    display: block;
}

/* Feature Sections */
.feature-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.feature-image:hover {
    transform: scale(1.02);
}

.feature-badge {
    color: var(--primary-blue);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 13px;
    margin-bottom: 12px;
    display: block;
}

.feature-title {
    font-family: var(--font-serif);
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.feature-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-body);
}

.feature-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 14px;
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 500;
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: -2px;
    /* Adjusted to align with text */
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2384BED6'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* Simple Features Grid */
.features-grid-simple {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.feature-card-simple {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-md);
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.feature-card-simple:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: white;
    border-color: rgba(132, 190, 214, 0.3);
}

.feature-icon-simple {
    width: 60px;
    height: 60px;
    background: var(--primary-blue-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-blue);
    font-size: 24px;
    transition: all 0.3s ease;
}

.feature-card-simple:hover .feature-icon-simple {
    background: var(--primary-blue);
    color: var(--white);
    transform: rotateY(180deg);
}

.feature-card-simple h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(132, 190, 214, 0.3);
    /* Added border for contrast */
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    /* Enable flex for vertical stack */
    flex-direction: column;
    height: 100%;
    /* Take full height of grid cell */
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-family: var(--font-serif);
    font-size: 80px;
    color: var(--primary-blue-light);
    line-height: 1;
    z-index: 0;
}

.testimonial-text {
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: auto;
    /* Push to bottom */
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    border: 3px solid var(--primary-blue-light);
    flex-shrink: 0;
}

.author-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.author-info strong {
    display: block;
    color: var(--primary-blue-dark);
    font-size: 0.95rem;
    line-height: 1.2;
}

.author-info span {
    display: block;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 2px;
}

/* Pricing High Impact */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.feature-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 12px;
    margin-top: 4px;
    /* Align with text */
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    background-color: rgba(16, 185, 129, 0.15);
    color: var(--primary-green);
}

.pricing-impact-card {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    box-shadow: var(--shadow-xl);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(132, 190, 214, 0.2);
    display: block;
    /* Ensure it takes width */
}

/* Fix flexbox in bootstrap row context inside card */
.pricing-impact-card .row {
    margin: 0;
}

.pricing-badge {
    display: inline-block;
    background: var(--primary-blue-light);
    color: var(--primary-blue-dark);
    font-weight: 700;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.pricing-h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.pricing-desc {
    color: var(--text-body);
    margin-bottom: 30px;
}

.contact-info-simple {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.contact-item-simple {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    padding: 10px 20px;
    background: white;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.contact-item-simple:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.contact-item-simple i {
    color: var(--primary-blue);
    font-size: 18px;
}

.contact-item-simple a {
    color: var(--text-dark);
    text-decoration: none;
}

.contact-item-simple a:hover {
    color: var(--primary-blue);
}

.pricing-cta-side {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: white;
}

.price-tag-wrapper {
    text-align: center;
    margin-bottom: 10px;
}

.price-label {
    display: block;
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-value {
    display: block;
    font-family: var(--font-serif);
    font-size: 3rem;
    line-height: 1;
    font-weight: 700;
}

.price-period {
    font-size: 16px;
    opacity: 0.8;
}

.pricing-features-grid-new {
    display: flex;
    flex-direction: column;
    gap: 16px;
    /* Space between items */
    margin-top: 30px;
}

.pricing-feat {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.btn-white-landing {
    display: inline-block;
    background: white;
    color: var(--primary-blue-dark);
    padding: 16px 24px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: none;
    margin-bottom: 20px;
}

.btn-white-landing:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    color: var(--primary-blue);
}

.guarantee-text {
    font-size: 13px;
    opacity: 0.8;
    display: flex;
    align-items: center;
}

/* Resp adjustments */
@media (max-width: 992px) {
    .pricing-impact-card .row>div {
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .pricing-cta-side {
        padding: 40px !important;
    }
}

/* Pricing */
.pricing-simple {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: var(--radius-lg);
    padding: 60px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.pricing-simple::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-red));
}

.pricing-features-row {
    gap: 40px;
    margin-bottom: 40px;
}

/* .pricing-feature-item i merged into standardized block */

/* FAQ */
.faq-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question span {
    font-family: var(--font-serif);
    /* Premium font */
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

.faq-question:hover span {
    color: var(--primary-blue);
}

.faq-answer {
    padding: 0 30px 24px;
    color: var(--text-body);
}

/* Contact Form */
.contact-form-simple {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-xl);
    border: none;
}

.contact-form-simple label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-form-simple .form-control {
    border: 2px solid var(--bg-light);
    background: var(--bg-light);
    padding: 14px 20px;
    border-radius: var(--radius-sm);
}

.contact-form-simple .form-control:focus {
    background: white;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px var(--primary-blue-light);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-section {
        padding: 80px 0;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.25rem;
        text-align: center;
    }

    .hero-content {
        text-align: center;
        margin-bottom: 40px;
    }

    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-description {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        justify-content: center;
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .hero-cta .btn-primary-landing,
    .hero-cta .btn-secondary-landing,
    .hero-cta .btn-tertiary-landing {
        width: 100%;
    }

    .hero-image {
        transform: none;
        margin-top: 20px;
        box-shadow: var(--shadow-lg);
    }

    .hero-image img {
        border-radius: var(--radius-md);
    }

    /* Add subtle decorative blob behind mobile hero to make it less boring */
    .hero-section::after {
        content: '';
        position: absolute;
        top: 10%;
        left: 50%;
        transform: translateX(-50%);
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, var(--primary-blue-light) 0%, transparent 70%);
        z-index: 1;
        opacity: 0.6;
        pointer-events: none;
    }
}

/* Pricing Page Specific Styles */
.pricing-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pricing-tier {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-tier:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(132, 190, 214, 0.3);
}

.pricing-tier-popular {
    border: 2px solid var(--primary-blue);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: var(--shadow-lg);
}

.pricing-tier-popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-blue);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-md);
}

.tier-header {
    text-align: center;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--bg-light);
    padding-bottom: 20px;
}

.tier-header h3 {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.tier-size {
    color: var(--text-muted);
    font-weight: 500;
}

.tier-price {
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.price-amount {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
}

.price-period {
    font-size: 16px;
    color: var(--text-muted);
}

.tier-features {
    flex-grow: 1;
    margin-bottom: 30px;
}

.tier-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-body);
    font-size: 15px;
}

/* .tier-feature i merged into standardized block */

/* Comparison Table */
.comparison-table {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    margin-top: 40px;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    border-bottom: 1px solid var(--bg-light);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-cell {
    padding: 20px;
    display: flex;
    align-items: center;
    font-size: 15px;
    color: var(--text-body);
}

.comparison-cell i,
.tier-feature i,
.pricing-feat i,
.pricing-feature-item i {
    font-size: 14px;
    margin-right: 12px;
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    background-color: rgba(16, 185, 129, 0.15);
    color: var(--primary-green) !important;
}

/* Specific overrides if needed, but we want standardization */
.comparison-cell .fa-times {
    background-color: rgba(239, 68, 68, 0.15);
    color: #ef4444 !important;
    /* Override text-danger */
}

.comparison-header {
    background: var(--primary-blue-light);
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.05em;
}

.comparison-cell.highlight {
    background: rgba(132, 190, 214, 0.05);
    font-weight: 600;
    color: var(--primary-blue-dark);
}

@media (max-width: 768px) {
    .pricing-tier-popular {
        transform: none;
    }

    .comparison-row {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 20px;
        border-bottom: 2px solid var(--bg-light);
    }

    .comparison-cell {
        padding: 5px 0;
    }

    .comparison-header {
        display: none;
    }
}

/* Blog Page Specific Styles */
.blog-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.blog-card {
    flex: 1 1 340px;
    max-width: 450px;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.blog-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-blue-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4px);
}

.blog-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
    font-weight: 500;
}

.blog-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
    color: var(--primary-blue);
}

.blog-excerpt {
    color: var(--text-body);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-author {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--bg-light);
    padding-top: 20px;
}

.blog-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.blog-author-info {
    display: flex;
    flex-direction: column;
    font-size: 13px;
}

.blog-author-info strong {
    color: var(--text-dark);
    font-weight: 600;
}

.blog-author-info span {
    color: var(--text-muted);
}

/* Featured Article Style overrides */
.blog-card.featured {
    flex: 1 1 100%;
    max-width: 100%;
    grid-column: auto;
    /* Reset just in case */
    display: block;
    position: relative;
    min-height: 500px;
}

.blog-card.featured .blog-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card.featured .blog-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.blog-card.featured .blog-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.blog-card.featured .blog-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 60px;
    color: white;
}

.blog-card.featured .blog-title {
    color: white;
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.blog-card.featured .blog-excerpt {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    max-width: 800px;
    margin-bottom: 30px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.blog-card.featured .blog-meta {
    color: rgba(255, 255, 255, 0.8);
}

.blog-card.featured .blog-author {
    border-top-color: rgba(255, 255, 255, 0.2);
}

.blog-card.featured .blog-author-info strong {
    color: white;
}

.blog-card.featured .blog-author-info span {
    color: rgba(255, 255, 255, 0.8);
}

/* Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 60px;
}

.pagination-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: white;
    border: 1px solid var(--bg-light);
    color: var(--text-dark);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-btn:hover,
.pagination-btn.active {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

@media (max-width: 992px) {
    .blog-card.featured .blog-title {
        font-size: 2rem;
    }

    .blog-card.featured .blog-content {
        padding: 40px 30px;
    }
}

/* Individual Blog Post Styles */
.blog-post-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    margin-bottom: 60px;
}

.blog-post-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.blog-post-hero-content {
    position: relative;
    z-index: 2;
    color: white;
    width: 100%;
    padding-bottom: 60px;
}

.blog-post-category {
    background: var(--primary-blue);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.blog-post-title {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 24px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.blog-post-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.blog-post-meta img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid white;
}

.blog-article-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.blog-article-content p {
    margin-bottom: 24px;
}

.blog-lead {
    font-size: 1.35rem;
    line-height: 1.6;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 40px;
    border-left: 4px solid var(--primary-blue);
    padding-left: 20px;
}

.blog-article-content h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin-top: 50px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.blog-quote {
    background: var(--bg-light);
    padding: 40px;
    border-radius: var(--radius-md);
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--primary-blue-dark);
    margin: 40px 0;
    position: relative;
}

.blog-quote cite {
    display: block;
    margin-top: 20px;
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    color: var(--text-muted);
}

.related-posts {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.related-posts .blog-card {
    flex: 1 1 300px;
    max-width: 400px;
}

@media (max-width: 768px) {
    .blog-post-title {
        font-size: 2.25rem;
    }

    .blog-post-hero {
        height: auto;
        min-height: 400px;
        padding-top: 100px;
    }
}

/* Feature Page Styles */
.feature-hero {
    position: relative;
    padding: 160px 0 100px;
    background-size: cover;
    background-position: center;
    background-image: url('/test/landing/landing-1.png');
    /* Fallback image */
    color: white;
    text-align: center;
    overflow: hidden;
    margin-bottom: 0;
}

.feature-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(132, 190, 214, 0.95) 0%, rgba(59, 130, 246, 0.9) 100%);
    z-index: 1;
}

.feature-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

/* .hero-badge moved to top level definition */

.feature-hero-title {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.1;
    color: white;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.feature-hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Trust Grid */
.trust-bar {
    padding: 60px 0;
    background: white;
    border-bottom: 1px solid var(--bg-light);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px 40px;
    text-align: center;
}

.trust-item {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 2;
    justify-items: center;
}

.trust-item strong {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-blue);
    font-weight: 800;
    margin-bottom: 5px;
}

.trust-item span {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Steps */
/* Steps - Vertical Timeline */
.step-list {
    display: flex;
    flex-direction: column;
    max-width: 800px;
    margin: 50px auto 0;
    position: relative;
    padding-left: 20px;
    /* Alignment adjustment */
}

/* The vertical connecting line */
.step-list::before {
    content: '';
    position: absolute;
    top: 20px;
    bottom: 0;
    left: 49px;
    /* Aligned with center of 60px circle + 20px padding - visual adjustment */
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-blue) 0%, rgba(132, 190, 214, 0.2) 100%);
    z-index: 0;
}

.step-item {
    display: flex;
    gap: 40px;
    position: relative;
    padding-bottom: 50px;
    background: transparent;
    box-shadow: none;
    border: none;
    flex: initial;
    max-width: none;
    align-items: flex-start;
}

.step-item:last-child {
    padding-bottom: 0;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: white;
    color: var(--primary-blue);
    border: 3px solid var(--primary-blue);
    font-size: 24px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0;
    z-index: 1;
    box-shadow: 0 0 0 5px white;
    /* Clear space around circle for line */
}

.step-content {
    flex-grow: 1;
    text-align: left;
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

/* Little triangle arrow pointing to number */
.step-content::before {
    content: '';
    position: absolute;
    top: 20px;
    left: -8px;
    width: 16px;
    height: 16px;
    background: white;
    transform: rotate(45deg);
    border-left: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.step-item:hover .step-content {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(132, 190, 214, 0.3);
}

.step-item:hover .step-number {
    background: var(--primary-blue);
    color: white;
    transform: scale(1.1);
    transition: all 0.3s ease;
}

.step-content h4 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 700;
}

/* Mobile vertical stack adjustment */
@media (max-width: 768px) {
    .step-list {
        padding-left: 0;
    }

    .step-list::before {
        left: 29px;
        /* Adjust for smaller number circle or padding */
    }

    .step-item {
        gap: 20px;
    }

    .step-number {
        transform: scale(0.9);
    }
}

/* Feature Page specific overrides */
.features-grid-simple {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.feature-card-simple {
    background: white;
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    /* Updated to match testimonial cards */
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(132, 190, 214, 0.3);
    /* Blue border for contrast */
    flex: 1 1 280px;
    /* Grow, shrink, basis */
    max-width: 350px;
}

.feature-card-simple:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: rgba(132, 190, 214, 0.3);
}

.feature-icon-simple {
    width: 70px;
    height: 70px;
    background: rgba(132, 190, 214, 0.1);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
    font-size: 30px;
}

@media (max-width: 768px) {
    .feature-hero-title {
        font-size: 2.5rem;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .trust-item strong {
        font-size: 1.4rem;
    }
}

/* Connected Data Section */
.connected-scenarios {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.connected-card {
    display: flex;
    gap: 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.connected-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--primary-blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.connected-body h4 {
    margin: 0 0 8px 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.connected-detail {
    margin: 0 0 12px 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4a5568;
}

.connected-systems {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
    background: var(--primary-blue);
    padding: 6px 16px;
    border-radius: 20px;
}

@media (max-width: 600px) {
    .connected-card {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        padding: 20px;
        text-align: center;
    }
}

/* Contact Form High Contrast */
.contact-form-simple .form-control {
    background-color: #F8FBFF;
    border: 1px solid #B0C4DE;
    /* Light Steel Blue for better visibility */
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-form-simple .form-control:focus {
    background-color: white;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(132, 190, 214, 0.15);
}

.contact-form-simple .form-control::placeholder {
    color: #94a3b8;
    /* Slate-400 */
}

/* Missing Quote Text Style */
.quote-text {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.6;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 24px;
}

.fill-red-light {
    fill: #FFF7F5;
}

/* ========================================
   Landing Grid System (Bootstrap-free)
   ======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.landing-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}

.landing-grid-reverse {
    flex-direction: row-reverse;
}

.landing-col-main {
    flex: 1.4;
    min-width: 0;
}

.landing-col-side {
    flex: 1;
    min-width: 0;
}

.landing-col-half {
    flex: 1;
    min-width: 0;
}

/* Pricing card split layout */
.pricing-split {
    display: flex;
    overflow: hidden;
}

.pricing-split-main {
    flex: 1.4;
    padding: 50px;
}

.pricing-split-cta {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px;
}

/* Contact centered column */
.landing-col-center {
    max-width: 600px;
    margin: 0 auto;
}

/* Landing form elements */
.landing-form-group {
    margin-bottom: 20px;
}

.landing-form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.landing-form-input,
.landing-form-textarea {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid #B0C4DE;
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 15px;
    color: var(--text-dark);
    background: #F8FBFF;
    font-weight: 500;
    transition: all 0.3s ease;
}

.landing-form-input:focus,
.landing-form-textarea:focus {
    background: white;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(132, 190, 214, 0.15);
    outline: none;
}

.landing-form-input::placeholder,
.landing-form-textarea::placeholder {
    color: #94a3b8;
}

.landing-form-textarea {
    resize: vertical;
    min-height: 100px;
}

/* Utility: text-center */
.text-center { text-align: center; }

/* FAQ custom accordion (no Bootstrap JS) */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 30px;
    color: var(--text-body);
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 30px 24px;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--text-muted);
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
    color: var(--primary-blue);
}

/* Responsive: Landing Grid */
@media (max-width: 992px) {
    .landing-grid,
    .landing-grid-reverse {
        flex-direction: column;
        gap: 40px;
    }

    .pricing-split {
        flex-direction: column;
    }

    .pricing-split-main {
        padding: 30px 20px;
        text-align: center;
    }

    .pricing-split-cta {
        padding: 30px 20px;
    }

    .contact-form-simple {
        padding: 25px 20px;
    }

    .wave-bottom svg,
    .wave-top svg {
        height: 30px;
    }
}

/* "What schools pay" comparison bar */
.cost-comparison {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 40px;
}

.cost-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 24px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    min-width: 140px;
    text-align: center;
}

.cost-item-replaced {
    opacity: 0.5;
    text-decoration: line-through;
}

.cost-item strong {
    font-size: 13px;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.cost-item span {
    font-size: 12px;
    color: var(--text-muted);
}

.cost-item-highlight {
    border: 2px solid var(--primary-blue);
    opacity: 1;
    text-decoration: none;
}

.cost-item-highlight strong {
    color: var(--primary-blue-dark);
}