* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ec 100%);
    min-height: 100vh;
    color: #333;
}

.no-scroll {
    overflow: hidden;
}

/* Header */
.header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 0.6rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-container img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.logo-text {
    color: white;
    font-size: 1rem;
    font-weight: 700;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.85;
}

.mobile-menu {
    display: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mobile nav */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 200;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
}

.mobile-nav .close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    color: white;
}

/* Hero */
.hero {
    /* Use the Google Play banner as background */
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url('../images/banners/Google-2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    padding: 2.25rem 1.25rem 1.75rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
    font-size: 0.72rem;
    margin-bottom: 0.6rem;
}

.hero h1 {
    font-size: 1.7rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
}

.hero-sub {
    font-size: 0.82rem;
    opacity: 0.95;
    margin: 0 auto 1rem;
    line-height: 1.55;
    max-width: 600px;
}

/* Buttons */
.cta-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
}

.btn-primary {
    background: white;
    color: #667eea;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #667eea;
}

.btn-small {
    padding: 10px 18px;
    font-size: 0.95rem;
}

/* Proof strip */
.proof-strip {
    margin-top: 1.85rem;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.85rem;
    text-align: left;
}

.proof-item {
    display: flex;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.proof-item i {
    font-size: 0.85rem;
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.95);
}

.proof-title {
    font-weight: 700;
    font-size: 0.72rem;
}

.proof-desc {
    opacity: 0.92;
    font-size: 0.68rem;
}

/* Sections */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.7rem;
}

.section-title {
    text-align: center;
    font-size: 1.36rem;
    margin-bottom: 0.42rem;
    color: #333;
}

.section-subtitle {
    text-align: center;
    font-size: 0.81rem;
    color: #666;
    margin-bottom: 1.5rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

/* Demo */
.demo {
    padding: 2.1rem 0;
    background: #ffffff;
}

.demo-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.7rem;
    align-items: start;
}

.demo-card {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ec 100%);
    border-radius: 18px;
    padding: 1.36rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.demo-card-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.85rem;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(102, 126, 234, 0.12);
    color: #4a56d6;
    font-weight: 700;
    font-size: 0.77rem;
}

.demo-img {
    width: 100%;
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.demo-note {
    margin-top: 8px;
    color: #666;
    font-size: 0.81rem;
}

.demo-output {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.demo-row {
    display: grid;
    grid-template-columns: 153px 1fr;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.demo-k {
    font-weight: 800;
    color: #333;
    font-size: 0.85rem;
}

.demo-v {
    color: #444;
    font-size: 0.85rem;
}

.demo-mini-cta {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.founder-note {
    margin-top: 1.85rem;
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 12px;
    padding: 1.1rem 1.3rem;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.14) 0%, rgba(118, 75, 162, 0.14) 100%);
    border: 1px solid rgba(102, 126, 234, 0.25);
}

.founder-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: rgba(102, 126, 234, 0.18);
    color: #4a56d6;
    font-size: 1.2rem;
}

.founder-note h3 {
    margin-bottom: 5px;
    font-size: 0.94rem;
}

/* How it works */
.how-it-works {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 2.1rem 1.3rem;
    color: white;
}

.how-it-works .section-title {
    color: white;
}

.how-it-works .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.steps-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 1.7rem;
}

.step-card {
    text-align: center;
    padding: 1.06rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.step-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.step-number {
    width: 37px;
    height: 37px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 auto 0.85rem;
    box-shadow: 0 0 12px rgba(102, 126, 234, 0.5);
}

.step-card h4 {
    font-size: 0.85rem;
    margin-bottom: 0.42rem;
}

.step-card p {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* Features */
.features {
    padding: 2.1rem 1.3rem;
    max-width: 100%;
    background: #ffffff;
}

.features > .features-grid,
.features > div,
.features > h2,
.features > p {
    max-width: 935px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(187px, 1fr));
    gap: 1.06rem;
}

.feature-card {
    background: white;
    border-radius: 14px;
    padding: 1.3rem;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.14);
}

.feature-card.gradient-coral {
    background: linear-gradient(135deg, #f093a0 0%, #f5af7b 100%);
    color: white;
}

.feature-card.gradient-teal {
    background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
    color: white;
}

.feature-card.gradient-purple {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.feature-card.gradient-blue {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
}

.feature-card.gradient-green {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    color: white;
}

.feature-icon {
    font-size: 1.87rem;
    margin-bottom: 0.68rem;
}

.feature-card h3 {
    font-size: 0.94rem;
    margin-bottom: 0.42rem;
}

.feature-card p {
    opacity: 0.95;
    font-size: 0.72rem;
    line-height: 1.5;
}

/* Pricing */
.pricing {
    padding: 2.1rem 1.3rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #eef2f7 100%);
}

.pricing-cards {
    max-width: 765px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(187px, 1fr));
    gap: 1.06rem;
}

.pricing-card {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ec 100%);
    border-radius: 14px;
    padding: 1.3rem;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.pricing-card:hover {
    border-color: #667eea;
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(102, 126, 234, 0.2);
}

.pricing-card.featured {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: scale(1.02);
}

.pricing-card h3 {
    font-size: 1.02rem;
    margin-bottom: 0.5rem;
}

.pricing-card .price {
    font-size: 1.53rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.pricing-card .price-detail {
    font-size: 0.68rem;
    opacity: 0.85;
    margin-bottom: 1.06rem;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 1.06rem;
    text-align: left;
}

.pricing-card ul li {
    padding: 0.42rem 0;
    font-size: 0.72rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.pricing-card.featured ul li {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.pricing-card ul li i {
    color: #4ecdc4;
    margin-right: 0.42rem;
}

.pricing-trust {
    max-width: 850px;
    margin: 1.7rem auto 0;
    padding: 0.85rem 1rem;
    border-radius: 14px;
    background: rgba(102, 126, 234, 0.08);
    border: 1px solid rgba(102, 126, 234, 0.18);
    display: flex;
    gap: 8px;
    align-items: center;
    color: #333;
    font-size: 0.85rem;
}

/* FAQ */
.faq {
    padding: 2.1rem 0;
    background: #ffffff;
}

.faq-grid {
    max-width: 765px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.77rem;
    padding: 0 1.3rem;
}

.faq-item {
    background: white;
    border-radius: 12px;
    padding: 0.68rem 0.85rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 6px 17px rgba(0, 0, 0, 0.06);
}

.faq-item summary {
    cursor: pointer;
    font-weight: 700;
    font-size: 0.77rem;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-body {
    padding-top: 7px;
    color: #444;
    font-size: 0.72rem;
    line-height: 1.55;
}

/* Footer */
.footer {
    background: #2d3748;
    color: white;
    padding: 1.7rem 1.3rem 0.85rem;
}

.footer-content {
    max-width: 935px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(136px, 1fr));
    gap: 1.3rem;
}

.footer-section h4 {
    font-size: 0.85rem;
    margin-bottom: 0.64rem;
    color: #667eea;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.3rem;
}

.footer-section ul li a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 0.72rem;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    max-width: 935px;
    margin: 1.3rem auto 0;
    padding-top: 0.85rem;
    border-top: 1px solid #4a5568;
    text-align: center;
    color: #a0aec0;
    font-size: 0.68rem;
}

.social-links {
    display: flex;
    gap: 0.64rem;
    margin-top: 0.64rem;
}

.social-links a {
    color: #a0aec0;
    font-size: 0.94rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #667eea;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 500;
}

.modal.active {
    display: block;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
}

.modal-panel {
    position: relative;
    max-width: 980px;
    margin: 6vh auto;
    background: white;
    border-radius: 22px;
    padding: 1.4rem 1.4rem 1.2rem;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    border: none;
    background: rgba(0, 0, 0, 0.06);
    width: 44px;
    height: 44px;
    border-radius: 14px;
    cursor: pointer;
}

.modal-head h3 {
    margin-bottom: 0.2rem;
}

.modal-head p {
    color: #666;
    margin-bottom: 1rem;
}

.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.modal-label {
    font-weight: 800;
    margin-bottom: 8px;
}

.modal-img {
    width: 100%;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.modal-filehint {
    margin-top: 8px;
    color: #666;
}

.modal-foot {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 980px) {
    .proof-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .demo-grid {
        grid-template-columns: 1fr;
    }

    .modal-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .hero h1 {
        font-size: 1.45rem;
    }

    .section-title {
        font-size: 1.2rem;
    }
}

/* Trust Row (Anti-Skepticism Bar) */
.trust-row {
    background: linear-gradient(135deg, #f5f7fa 0%, #eef2f7 100%);
    padding: 2.55rem 1.7rem;
}

.trust-container {
    max-width: 1020px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(187px, 1fr));
    gap: 1.3rem;
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.85rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.trust-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.trust-icon {
    flex-shrink: 0;
    width: 41px;
    height: 41px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 17px;
}

.trust-content h4 {
    margin: 0 0 0.42rem 0;
    font-size: 0.85rem;
    font-weight: 600;
    color: #2c3e50;
}

.trust-content p {
    margin: 0;
    font-size: 0.77rem;
    color: #666;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .trust-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Headline Carousel */
.headline-carousel {
    display: inline-block;
    transition: opacity 0.5s ease-in-out;
}

.headline-carousel.fade-out {
    opacity: 0;
}

/* Real Examples Gallery */
.real-examples-gallery {
    margin-top: 1.7rem;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(238px, 1fr));
    gap: 1.7rem;
}

.example-card {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    border: 1px solid #f0f0f0;
}

.example-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.1);
}

.card-image-wrapper {
    position: relative;
    height: 170px;
    overflow: hidden;
    background: #f8f9fa;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s;
}

.example-card:hover .card-image-wrapper img {
    transform: scale(1.05);
}

.view-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transition: opacity 0.3s;
    font-weight: 600;
}

.example-card:hover .view-overlay {
    opacity: 1;
}

.card-content {
    padding: 1.06rem;
}

.tiny-caption {
    font-size: 0.64rem;
    color: #888;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.4px;
    margin-bottom: 0.42rem;
}

.card-desc {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Gallery Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.gallery-modal-content {
    background: white;
    border-radius: 10px;
    max-width: 765px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.modal-body {
    padding: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

#galleryModalImage {
    width: 100%;
    height: auto;
    max-height: 60vh;
    object-fit: contain;
    background: #f0f0f0;
}

.gallery-modal-caption {
    padding: 1.3rem;
    background: white;
    border-top: 1px solid #eee;
}

#galleryModalTitle {
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

/* Process Showcase (Step-by-Step Flow) */
.process-showcase {
    margin-top: 1.7rem;
    overflow-x: auto;
    padding-bottom: 1.7rem;
}

.process-steps-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.55rem;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.p-step {
    background: #f0f0f0;
    padding: 7px 14px;
    border-radius: 17px;
    font-weight: 600;
    color: #888;
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.77rem;
}

.p-step.active {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.p-line {
    height: 2px;
    width: 40px;
    background: #e0e0e0;
}

.p-line.active {
    background: #81c784;
}

.process-cards-scroll {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    overflow-x: auto;
    padding: 0.85rem;
    /* Restored scrollbar for better discoverability */
    scrollbar-width: auto;
    -ms-overflow-style: auto;
}

.process-cards-scroll::-webkit-scrollbar {
    display: block;
    height: 8px;
}

.process-cards-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.process-cards-scroll::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

.process-cards-scroll::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

.process-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    min-width: 221px;
    width: 221px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 3px 13px rgba(0, 0, 0, 0.05);
    position: relative;
    /* Vintage/Paper texture hint */
    background-image: linear-gradient(#fff, #fcfcfc);
}

.pc-header {
    background: #f5f5f5;
    padding: 7px 0;
    text-align: center;
    font-weight: 700;
    font-family: serif;
    /* Giving it that textbook feel */
    color: #444;
    font-size: 0.85rem;
    border-bottom: 1px solid #e0e0e0;
    border-radius: 10px 10px 0 0;
}

.pc-image-frame {
    height: 272px;
    padding: 8px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.pc-image-frame img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border: 1px solid #eee;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.pc-footer {
    padding: 0.85rem;
    text-align: center;
    border-top: 1px solid #eee;
    background: #fafafa;
    border-radius: 0 0 10px 10px;
}

.pc-footer strong {
    display: block;
    color: #333;
    margin-bottom: 3px;
    font-size: 0.85rem;
}

.pc-footer span {
    display: block;
    font-size: 0.68rem;
    color: #666;
    margin-bottom: 10px;
}

.pc-btn {
    background: #667eea;
    color: white;
    border: none;
    padding: 5px 14px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.72rem;
    transition: background 0.2s;
}

.pc-btn:hover {
    background: #5a6fd6;
}

/* Arrows between cards */
.pc-arrow {
    color: #667eea;
    font-size: 1.5rem;
    opacity: 0.5;
    flex-shrink: 0;
}

/* Founder Note */
.founder-note {
    background: #eef2f7;
    border-radius: 10px;
    padding: 1.3rem;
    margin-top: 1.7rem;
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    border: 1px solid #dce4ec;
}

.founder-icon {
    background: #fff;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    font-size: 1.02rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.founder-note h3 {
    font-size: 0.94rem;
    margin-bottom: 0.42rem;
    color: #2d3748;
}

.founder-note p {
    font-size: 0.81rem;
    color: #4a5568;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .process-steps-bar {
        display: none;
    }

    .process-cards-scroll {
        padding-bottom: 1rem;
    }

    .pc-arrow {
        transform: rotate(90deg);
        display: none;
    }
}

@media (max-width: 600px) {
    .founder-note {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}