:root {
    --bg-color: #FAF5ED;
    --pane-bg: #F2EDE3;
    --primary-orange: #F5590D;
    --primary-green: #6B9466;
    --text-primary: #1A1A1A;
    --text-secondary: #4A4A4A;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.6);
    --glass-border: rgba(255, 255, 255, 0.4);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(250, 245, 237, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--pane-bg);
    padding: 0.4rem 0;
    transition: var(--transition);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-orange);
    text-decoration: none;
}

.logo-text {
    color: var(--primary-orange);
}

.logo-icon {
    width: 72px;
    height: 72px;
    border-radius: 12px;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin-left: auto;
    margin-right: 3rem;
}

@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 700;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-orange);
}

.nav-cta {
    display: flex;
    gap: 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 0.95rem;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary-orange);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(107, 148, 102, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: var(--pane-bg);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--pane-bg);
    color: var(--text-primary);
}

.btn-outline:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
}

.btn-lg {
    padding: 1rem 2.25rem;
    font-size: 1.1rem;
}

.btn-badge-wrapper {
    position: relative;
    display: inline-block;
}

.promo-badge {
    position: absolute;
    top: -14px;
    right: -12px;
    background: linear-gradient(135deg, #D32F2F, #B71C1C); /* Strong dark red gradient */
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 100px;
    box-shadow: 0 4px 10px rgba(183, 28, 28, 0.4);
    transform: rotate(4deg);
    z-index: 10;
    pointer-events: none;
    letter-spacing: 0.05em;
    animation: pulseBadge 2.5s infinite ease-in-out;
    border: 2px solid var(--bg-color);
}

@keyframes pulseBadge {
    0% { transform: rotate(4deg) scale(1); }
    50% { transform: rotate(4deg) scale(1.08); box-shadow: 0 6px 14px rgba(183, 28, 28, 0.6); }
    100% { transform: rotate(4deg) scale(1); }
}

/* Hero Section */
#hero {
    padding: 14rem 0 2rem;
    min-height: auto;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .floating-card {
        display: none; /* Keep mobile hero minimal */
    }
}

.hero-text h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-text h1 .highlight {
    color: var(--primary-orange);
    position: relative;
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
}

.hero-visual {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: visible;
    box-shadow: var(--shadow-lg);
}

#hero-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
    transition: var(--transition);
}

.floating-card {
    position: absolute;
    background: #E8E1D1; /* Darker beige than background (#FAF5ED) */
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center; 
    gap: 1.25rem;
    box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.1);
    animation: float 6s ease-in-out infinite;
    z-index: 10;
    color: #000000 !important; /* Force black text */
}

.floating-card .card-icon {
    background: #FFFFFF;
    color: #000000 !important;
}

.floating-card .card-icon svg {
    fill: #000000 !important;
}

.floating-card .label {
    color: #000000 !important;
    font-weight: 700;
    opacity: 1 !important;
}

.floating-card .value {
    color: #000000 !important;
    font-weight: 600;
}

.floating-card .card-icon {
    margin-bottom: 0; /* Reset for alignment */
}

.card-1 {
    top: 15%;
    right: -8%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 20%;
    left: -12%;
    animation-delay: -3s; /* Offset for organic feel */
}

.card-3 {
    bottom: 10%;
    right: -15%;
    animation-delay: -1.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.card-icon {
    width: 44px;
    height: 44px;
    background: #FFFFFF; /* White circle background */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange); /* Restore Orange for Features */
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    margin-bottom: 1.5rem; /* Increased spacing to text */
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-card:hover .card-icon {
    transform: scale(1.15); /* Icon grow effect */
}

.card-icon svg {
    width: 24px;
    height: 24px;
}

.floating-card .card-icon {
    color: rgb(107, 148, 102); /* Keep Green ONLY for hero cards */
}

.card-2 .card-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 3; /* Bolder */
}

.card-content {
    display: flex;
    flex-direction: column;
}

.card-content .label {
    font-size: 0.75rem;
    color: #FFFFFF; /* White for top line */
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.card-content .value {
    font-size: 0.95rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85); /* Off-white for below line */
}

.hero-video-peek {
    margin-top: 4rem;
    position: relative;
    z-index: 10;
    padding-bottom: 4rem;
    scroll-margin-top: 120px;
}

.video-label {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: left;
    color: var(--primary-orange);
    font-weight: 700;
}

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
    background: #000; /* Black background for video loading */
    border: 1px solid var(--glass-border);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Features Section */
#features {
    padding: 8rem 0;
    overflow: hidden;
    scroll-margin-top: 100px;
}

section:nth-of-type(even) {
    background-color: var(--pane-bg);
}

section:nth-of-type(odd) {
    background-color: var(--bg-color);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: #FFFFFF; /* Clean white */
    padding: 3rem 2rem;
    border-radius: 24px;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
}

.feature-card:nth-child(even) {
    background: var(--bg-color); /* Soft off-white */
}

.feature-card:hover {
    transform: translateY(-20px);
    box-shadow: 0 40px 80px -15px rgba(0, 0, 0, 0.2), 0 25px 50px -20px rgba(0, 0, 0, 0.25);
    border-color: transparent;
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    margin-bottom: 2rem;
    background: rgba(245, 89, 13, 0.1);
    color: var(--primary-orange);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--primary-orange);
    color: var(--white);
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-secondary);
}

/* CTA Bottom */
#cta-bottom {
    padding: 8rem 0;
}

.cta-box {
    background: #FFFFFF; /* Off-white / Pure white for contrast */
    padding: 6rem 4rem;
    border-radius: 40px;
    text-align: left;
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--pane-bg);
    display: flex;
    align-items: flex-start;
    gap: 4rem;
}

@media (max-width: 992px) {
    .cta-box {
        flex-direction: column;
        padding: 4rem 2rem;
        gap: 3rem;
    }
    
    .cta-divider {
        width: 100%;
        height: 1px;
    }
    
    .cta-left, .cta-right {
        min-width: 100%;
    }
}

.cta-left {
    flex: 1;
    min-width: 300px;
}

.cta-divider {
    width: 1px;
    height: 260px;
    background: rgba(0, 0, 0, 0.1);
    align-self: center;
}

.cta-right {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-width: 400px;
}

.cta-subtitle {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    color: var(--text-primary); /* Black */
}

.comparison-table th,
.comparison-table td {
    padding: 1.25rem 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08); /* Soft black/grey border */
}

.comparison-table td:first-child {
    font-weight: 700;
    color: var(--text-primary); /* Black */
}

.comparison-table td:nth-child(2) {
    font-weight: 700;
    color: var(--primary-orange); /* Orange */
}

.comparison-table td:nth-child(3) {
    font-weight: 400;
    color: var(--text-primary); /* Black */
}

.comparison-table th:first-child {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.8rem;
    color: var(--text-primary);
    opacity: 1;
}

.comparison-table th:nth-child(2) {
    color: var(--primary-orange);
    opacity: 1;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.8rem;
}

.comparison-table th:nth-child(3) {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.8rem;
    color: var(--text-primary);
    opacity: 1;
}

.comparison-table .highlight-cell {
    font-weight: 700;
    background: rgba(245, 89, 13, 0.05);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-notice {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--primary-orange);
    font-weight: 400;
}

@media (max-width: 968px) {
    .cta-box {
        flex-direction: column;
        padding: 4rem 2rem;
        text-align: center;
        gap: 3rem;
    }

    .cta-divider {
        width: 60%;
        height: 1px;
    }

    .cta-right {
        flex-direction: row;
        justify-content: center;
        width: 100%;
        gap: 2rem;
    }
}

.cta-box h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    line-height: 1.1;
}

.cta-box p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: var(--text-secondary);
    max-width: 500px;
}

.cta-box .license-notice {
    margin-top: 3.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary) !important;
    opacity: 1 !important;
}

.cta-box .license-notice strong {
    font-weight: 700;
    color: var(--text-primary) !important;
}

/* Match Hero Button for CTA Box */
.cta-box .btn-primary {
    background: var(--primary-orange);
    color: var(--white);
    box-shadow: 0 4px 14px 0 rgba(245, 89, 13, 0.3);
}

.cta-box .btn-primary:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(107, 148, 102, 0.4);
}

/* Footer */
footer {
    background: #DED7C9;
    padding: 3rem 0 4rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4rem;
}

.footer-links {
    display: flex;
    gap: 5rem;
}

.link-group h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.link-group ul {
    list-style: none;
}

.link-group ul li {
    margin-bottom: 0.75rem;
}

.link-group ul a {
    text-decoration: none;
    color: var(--text-secondary);
    transition: var(--transition);
}

.link-group ul a:hover {
    color: var(--primary-orange);
}

.footer-bottom {
    display: none;
}

.copyright-inline {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 1.5rem;
    opacity: 0.8;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    animation: fadeInRight 0.8s ease-out forwards;
}

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

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

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.license-notice {
    margin-top: 3rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    opacity: 0.6;
    line-height: 1.4;
}

.license-notice strong {
    color: var(--text-primary);
    font-weight: 600;
}

.demo-link-notice {
    margin-top: 4rem;
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-secondary);
    opacity: 0.7;
    cursor: pointer;
    transition: var(--transition);
}

.demo-link-notice:hover {
    opacity: 1;
    color: var(--text-primary);
}

.platform-highlight {
    color: var(--primary-orange);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-text h1 { font-size: 3.5rem; }
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-text p { margin: 0 auto 2.5rem; }
    .hero-actions { justify-content: center; }
    .features-grid { grid-template-columns: 1fr; }
    .floating-card { display: none; }
}
/* Mission Section */
#mission {
    padding: 10rem 0;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: start;
}

.mission-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-orange);
    font-weight: 700;
    line-height: 1.2;
}

.mission-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-top: 0;
    margin-bottom: 2rem;
}

.mission-card {
    background: #FFFFFF;
    padding: 3rem;
    border-radius: 32px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.05);
}

.mission-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-weight: 700;
}

.mission-card p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.mission-list {
    list-style: none;
    padding: 0;
}

.mission-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 1.25rem;
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--text-primary);
}

.mission-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: 700;
}

.mission-closing {
    margin-top: 0;
    padding: 0 0 0 2.5rem;
    border-left: 4px solid var(--primary-orange);
}

.mission-closing p {
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .mission-title {
        font-size: 2.25rem;
    }
}

/* FAQ Page Styles */
.faq-page {
    padding-top: 200px;
    padding-bottom: 100px;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0;
    letter-spacing: -0.02em;
}

.faq-header .lead {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}
.faq-header.deep-dive-section {
    margin-top: 8rem;
    margin-bottom: 6rem;
}

.deep-dive-content {
    max-width: 66%;
    margin: 2.5rem auto 0;
    text-align: left;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.1rem;
}

@media (max-width: 992px) {
    .deep-dive-content {
        max-width: 60%;
    }
}

@media (max-width: 768px) {
    .deep-dive-content {
        max-width: 100%;
    }
}

.deep-dive-meta {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.deep-dive-meta .separator {
    opacity: 0.5;
}

.deep-dive-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 3rem 0 1rem;
    color: var(--text-primary);
}

.warmup-phases {
    margin: 2rem 0;
}

.phase {
    margin-bottom: 2rem;
}

.phase h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.phase .duration {
    font-weight: 400;
    font-size: 0.95rem;
    color: var(--primary-orange);
    margin-left: 0.5rem;
}

.deep-dive-content ul {
    list-style: none;
    margin-top: 1rem;
}

.deep-dive-content ul li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.deep-dive-content ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-orange);
}
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.faq-column {
    display: flex;
    flex-direction: column;
}

.faq-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: var(--white);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--pane-bg);
}

.faq-card h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-orange);
    font-weight: 800;
}

.faq-card .intro {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.faq-item {
    margin-bottom: 2.5rem;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq-item .note {
    margin-top: 1rem;
    padding: 1.5rem;
    background: var(--bg-color);
    border-radius: 12px;
    font-size: 0.95rem;
    border: 1px solid var(--pane-bg);
}

.platform-heading {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.platform-heading .subtext {
    font-weight: 400;
    opacity: 0.8;
}

.platform-icon {
    color: var(--primary-orange);
    flex-shrink: 0;
}

.faq-item ul {
    list-style: none;
    margin-top: 1rem;
}

.faq-item ul li {
    margin-bottom: 1.5rem;
}

.faq-item ul li strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

@media (max-width: 992px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-header h1 {
        font-size: 2.5rem;
    }
    
    .faq-card {
        padding: 2rem;
    }
}

/* Blog Specific Styles */
.post-body a {
    color: var(--primary-orange);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
    transition: var(--transition);
    font-weight: 600;
}

.post-body a:hover {
    color: #e44d0b;
    text-decoration-thickness: 2px;
}

/* Blog CTA Banner Restore */
.blog-cta {
    margin: 4rem 0;
    padding: 3.5rem;
    background: #FFFFFF;
    border-radius: 24px;
    text-align: center;
    border: 1px solid var(--pane-bg);
    box-shadow: var(--shadow-md);
}

.blog-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.blog-cta p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-orange {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--primary-orange);
    color: #FFFFFF !important;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none !important;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
}

.btn-orange:hover {
    background: #e44d0b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 89, 13, 0.2);
}

.btn-orange svg {
    fill: currentColor;
}

/* ==========================================
   COMPREHENSIVE MOBILE & TABLET RESPONSIVENESS
   ========================================== */

/* 1. Tablet Responsive Overrides (max-width: 1024px) */
@media (max-width: 1024px) {
    /* Header layout optimization */
    header {
        padding: 0.5rem 0;
    }
    
    .logo-wrapper {
        gap: 0.8rem !important;
    }

    .logo-icon {
        width: 52px !important;
        height: 52px !important;
        border-radius: 10px !important;
    }

    .logo {
        font-size: 1.4rem !important;
    }

    .logo-tagline {
        font-size: 0.8rem !important;
        margin-top: 0.1rem !important;
    }

    .app-store-badge img {
        height: 44px !important;
    }
    
    /* Section paddings & Hero height adjustments */
    #hero {
        padding: 9rem 0 2rem;
    }

    #blog-hero {
        padding: 9rem 0 3rem !important;
    }

    .hero-text h1 {
        font-size: 3.2rem;
        margin-bottom: 1.25rem;
    }

    .hero-text p {
        font-size: 1.15rem;
        max-width: 600px;
    }

    .cta-box {
        padding: 4rem 3rem;
    }
}

/* 2. Narrow Tablet / Landscape Mobile (max-width: 768px) */
@media (max-width: 768px) {
    /* Prevent section overflow & crop margins */
    .container {
        padding: 0 1.25rem;
    }

    #hero {
        padding: 8rem 0 2rem;
    }

    #blog-hero {
        padding: 8rem 0 2rem !important;
    }

    /* CTA Bottom box spacing */
    .cta-box {
        padding: 3.5rem 2rem;
        gap: 2.5rem;
    }

    .cta-right {
        min-width: 100% !important;
        width: 100% !important;
    }

    .cta-divider {
        display: none;
    }

    /* Comparison Table tweaks */
    .comparison-table th,
    .comparison-table td {
        padding: 1rem 0.75rem;
        font-size: 0.9rem;
    }

    /* Blog posts specifics */
    .post-title {
        font-size: 2.2rem !important;
    }

    .post-meta-line {
        margin-bottom: 2.5rem !important;
        font-size: 0.9rem !important;
    }
}

/* 3. Portrait Mobile / iPhone (max-width: 576px) */
@media (max-width: 576px) {
    /* Responsive header to fit small screens */
    .logo-wrapper {
        gap: 0.6rem !important;
    }

    .logo-icon {
        width: 40px !important;
        height: 40px !important;
        border-radius: 8px !important;
    }

    .logo {
        font-size: 1.2rem !important;
    }

    /* Hide tagline to leave enough room for App Store badge */
    .logo-tagline {
        display: none !important;
    }

    .app-store-badge img {
        height: 56px !important;
    }

    /* Hero section layouts */
    #hero {
        padding: 6.5rem 0 2rem;
    }

    #blog-hero {
        padding: 6.5rem 0 2rem !important;
    }

    .hero-text h1 {
        font-size: 2.1rem !important;
        line-height: 1.25;
        margin-bottom: 1rem;
    }

    .hero-text p {
        font-size: 1rem !important;
        line-height: 1.5;
        margin-bottom: 2rem;
        padding: 0 0.25rem;
    }

    /* Vertical stacked CTA buttons */
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;
        width: 100%;
    }

    .hero-actions .btn-badge-wrapper,
    .hero-actions .btn {
        width: 100% !important;
        display: block !important;
    }

    .hero-actions .btn {
        text-align: center;
        padding: 0.85rem 1.5rem;
        font-size: 1rem;
        border-radius: 10px;
    }

    .btn-badge-wrapper .promo-badge {
        right: 10px;
        top: -12px;
        font-size: 0.7rem;
        padding: 3px 10px;
    }

    /* General sections styling */
    section {
        padding: 4rem 0 !important;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    /* Feature Cards spacing optimization */
    .feature-card {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

    .feature-icon {
        width: 64px;
        height: 64px;
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
        border-radius: 16px;
    }

    /* CTA box (bottom box) */
    .cta-box {
        padding: 2.5rem 1.25rem;
        border-radius: 24px;
        gap: 2rem;
    }

    .cta-box h2 {
        font-size: 2.2rem;
        text-align: center;
        margin-bottom: 1rem;
    }

    .cta-box p {
        font-size: 1rem;
        text-align: center;
        margin-bottom: 2rem;
    }

    .cta-box .btn-badge-wrapper {
        width: 100%;
        display: block;
    }

    .cta-box .btn-primary {
        width: 100%;
        text-align: center;
        padding: 0.85rem 1.5rem;
        font-size: 1rem;
    }

    .cta-box .license-notice {
        text-align: center;
        margin-top: 2rem;
        font-size: 0.85rem;
    }

    /* Comparison Table styling for compact space */
    .cta-right {
        min-width: 100% !important;
        width: 100% !important;
    }

    .comparison-table {
        font-size: 0.8rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 0.4rem;
    }

    .comparison-table th {
        font-size: 0.7rem;
    }

    .comparison-notice {
        font-size: 0.8rem;
        text-align: center;
    }

    /* Blog list layouts */
    .blog-card {
        padding: 1.25rem !important;
        border-radius: 12px !important;
        margin-bottom: 1.5rem !important;
    }

    .blog-card h2 {
        font-size: 1.3rem !important;
    }

    .blog-card p {
        font-size: 0.85rem !important;
    }

    .blog-cta {
        padding: 2rem 1.25rem !important;
        border-radius: 16px !important;
    }

    .blog-cta h2 {
        font-size: 1.75rem !important;
    }

    .blog-cta p {
        font-size: 0.95rem !important;
        margin-bottom: 2rem !important;
    }

    .btn-orange {
        width: 100%;
        justify-content: center;
        padding: 0.85rem 1.5rem;
        font-size: 1rem;
    }
}

/* 4. Very Narrow Screen/iPhone SE (max-width: 360px) */
@media (max-width: 360px) {
    .logo {
        font-size: 1.1rem !important;
    }

    .app-store-badge img {
        height: 48px !important;
    }

    .comparison-table {
        font-size: 0.75rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.6rem 0.25rem;
    }
}

