:root {
    --bg-main: #fdfdfd;
    --bg-alternate: #f4f4f6;
    --text-main: #2a2a2e;
    --text-muted: #6e6e73;
    --accent-primary: #e32726; /* PolishFoodies Red */
    --accent-secondary: #b31b1a; /* Deep Red */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(0, 0, 0, 0.05);
    --glass-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.06);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

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

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: #111;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

.highlight {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.section-padding {
    padding: 100px 0;
}

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

.text-center {
    text-align: center;
}

.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-5 { margin-top: 3rem; }

/* Buttons */
.btn-primary, .btn-secondary, .btn-sm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-primary {
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(217, 119, 54, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(227, 39, 38, 0.4);
}

.btn-secondary {
    padding: 14px 30px;
    background: transparent;
    color: var(--text-main);
    border: 2px solid var(--text-main);
}

.btn-secondary:hover {
    background: var(--text-main);
    color: #fff;
}

.btn-sm {
    padding: 10px 24px;
    background: #fff;
    border: 1px solid var(--glass-border);
    font-size: 0.9rem;
    color: var(--text-main);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.btn-sm:hover {
    background: var(--text-main);
    color: #fff;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    border-radius: 50px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
}

.logo {
    font-size: 1.2rem;
    letter-spacing: 2px;
    font-weight: 800;
    color: #111;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
    font-weight: 500;
}

.nav-links a:not(.btn-sm):hover {
    color: var(--accent-primary);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2; /* Subtler for light mode */
}

.hero-bg .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(253,253,253,0.5) 0%, rgba(253,253,253,1) 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    z-index: 1;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(227, 39, 38, 0.1);
    color: var(--accent-primary);
    border: 1px solid rgba(227, 39, 38, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.5;
}

.hero-text h1 {
    font-size: 2.9rem;
    margin-bottom: 16px;
    color: #111;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    max-width: 500px;
    line-height: 1.7;
}

.cta-group {
    display: flex;
    gap: 20px;
}

.hero-image {
    position: relative;
    border-radius: 24px;
    padding: 10px;
    background: rgba(255,255,255,0.8);
    max-width: 320px;
    margin: 0 auto;
}

.hero-image img {
    width: 100%;
    border-radius: 16px;
    display: block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.floating-badge {
    position: absolute;
    bottom: -20px;
    left: -30px;
    background: #fff;
    border: 1px solid var(--glass-border);
    padding: 16px 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    animation: float 6s ease-in-out infinite;
}

.floating-badge i {
    color: var(--accent-primary);
    font-size: 1.5rem;
}

.floating-badge span {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: #111;
}

.floating-badge small {
    color: var(--text-muted);
    font-family: var(--font-body);
    font-weight: 400;
}

.social-proof-bar {
    position: absolute;
    bottom: 30px;
    width: 100%;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

/* Authority Section */
.section-header h2 {
    font-size: 3rem;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 60px;
}

.authority-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.auth-card {
    padding: 40px 30px;
    border-radius: 24px;
    text-align: center;
    transition: var(--transition-smooth);
    background: #fff;
}

.auth-card.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.auth-card .icon-wrap {
    width: 60px;
    height: 60px;
    background: rgba(217, 119, 54, 0.1);
    color: var(--accent-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 24px;
}

.auth-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: #111;
}

.auth-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.card-img-preview {
    width: 100%;
    border-radius: 12px;
    margin-top: 24px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.embed-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.embed-placeholder {
    padding: 60px;
    text-align: center;
    border-radius: 24px;
    border: 1px dashed #d0d0d5;
    background: #fafafa;
}

.embed-placeholder i {
    font-size: 3rem;
    color: #d0d0d5;
    margin-bottom: 16px;
}

.embed-placeholder p {
    color: var(--text-muted);
    font-weight: 500;
}

/* Services Section */
.bg-alternate {
    background-color: var(--bg-alternate);
}

.services-wrapper {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "content visual";
    gap: 60px;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-smooth);
}

.service-row.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-content {
    grid-area: content;
}

.service-visual {
    grid-area: visual;
}

.service-row.reverse {
    grid-template-areas: "visual content";
}

.service-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(217, 119, 54, 0.3);
}

.service-content h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #111;
}

.service-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.check-list {
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1.05rem;
    color: #333;
    font-weight: 500;
}

.check-list i {
    color: var(--accent-primary);
}

.service-visual {
    height: 400px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: #fff;
}

.gradient-sphere {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(227,39,38,0.15) 0%, rgba(227,39,38,0) 70%);
    filter: blur(40px);
    animation: pulse 8s infinite alternate;
}

.sphere-2 {
    background: radial-gradient(circle, rgba(179,27,26,0.15) 0%, rgba(179,27,26,0) 70%);
}

.sphere-3 {
    background: radial-gradient(circle, rgba(50,50,50,0.05) 0%, rgba(50,50,50,0) 70%);
}

/* CTA Section */
.cta-box {
    padding: 80px 40px;
    border-radius: 32px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 40px rgba(0,0,0,0.04);
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(227,39,38,0.05) 0%, transparent 60%);
    z-index: 0;
}

.cta-box > * {
    position: relative;
    z-index: 1;
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: #111;
}

.cta-box p {
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

/* Footer */
.glass-footer {
    border-top: 1px solid var(--glass-border);
    padding: 60px 0 30px;
    margin-top: 100px;
    background: #fff;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 24px 0;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-alternate);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-socials a:hover {
    background: var(--accent-primary);
    color: #fff;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.2); opacity: 1; }
}

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

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

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

/* Responsive */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 120px;
    }

    .cta-group {
        justify-content: center;
    }

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

    .hero-text p {
        margin: 0 auto 40px;
    }

    .floating-badge {
        left: 50%;
        transform: translateX(-50%);
        bottom: -30px;
        animation: none;
    }

    .authority-grid {
        grid-template-columns: 1fr;
    }

    .embed-grid {
        grid-template-columns: 1fr;
    }

    .service-row, .service-row.reverse {
        grid-template-columns: 1fr;
        grid-template-areas:
            "visual"
            "content";
    }

    .service-visual {
        grid-row: auto;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }

    .nav-links {
        display: none;
    }
}

/* Hover lift */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--glass-border);
    box-shadow: 0 -5px 20px rgba(0,0,0,0.05);
    padding: 15px 20px;
    z-index: 1000;
    display: none; /* Hide on desktop by default */
}

.sticky-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.sticky-text {
    display: flex;
    flex-direction: column;
}

.sticky-text strong {
    font-family: var(--font-heading);
    color: #111;
    font-size: 1rem;
}

.sticky-text small {
    color: var(--text-muted);
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .sticky-cta {
        display: block; /* Show on mobile */
    }

    /* Ensure padding at the bottom of the body so content isn't hidden by the sticky CTA */
    body {
        padding-bottom: 80px;
    }
}

/* Logo Cloud and Social Proof Bar */
.logo-cloud {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    opacity: 0.65;
    filter: grayscale(1);
    transition: var(--transition-smooth);
    margin-top: 10px;
    flex-wrap: wrap;
}
.logo-cloud:hover {
    opacity: 0.85;
}
.logo-item {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 2px;
    color: var(--text-main);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Form Styles for Pre-qualification Form */
.qualifier-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: #111;
    display: block;
    margin-bottom: 8px;
}
.form-control {
    width: 100%;
    padding: 14px 20px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    background: #fafafa;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-main);
    transition: var(--transition-smooth);
    outline: none;
}
.form-control:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(227, 39, 38, 0.15);
    background: #fff;
}
.btn-submit {
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: #fff;
    border: none;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(227, 39, 38, 0.3);
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(227, 39, 38, 0.4);
}
.form-selector-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}
.selector-card {
    border: 2px solid var(--glass-border);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    background: #fff;
}
.selector-card:hover, .selector-card.active {
    border-color: var(--accent-primary);
    background: rgba(227, 39, 38, 0.02);
}
.selector-card i {
    font-size: 2rem;
    color: var(--accent-primary);
    margin-bottom: 12px;
}
.selector-card h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}
.selector-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    margin-right: 10px;
}
.lang-link {
    color: var(--text-muted);
    transition: var(--transition-smooth);
}
.lang-link:hover, .lang-link.active {
    color: var(--accent-primary);
}
.lang-separator {
    color: var(--glass-border);
}

/* Amazon Books Showcase */
.amazon-showcase {
    padding-top: 60px;
    border-top: 1px solid var(--glass-border);
}
.books-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 30px;
}
.book-card {
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}
.book-cover-wrap {
    background: #fcfcfc;
    padding: 24px;
    text-align: center;
    border-bottom: 1px solid var(--glass-border);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 240px;
}
.book-cover {
    max-height: 190px;
    max-width: 100%;
    border-radius: 4px;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.15);
    transition: var(--transition-smooth);
}
.book-card:hover .book-cover {
    transform: rotateY(-10deg) scale(1.05);
    box-shadow: 10px 10px 25px rgba(0,0,0,0.2);
}
.book-cover-fallback {
    width: 130px;
    height: 190px;
    border-radius: 4px;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 20px;
    text-align: center;
    font-family: var(--font-heading);
    font-weight: bold;
    font-size: 0.95rem;
    gap: 12px;
}
.cakes-cover {
    background: linear-gradient(135deg, #f78da7, #b31b1a);
}
.soups-cover {
    background: linear-gradient(135deg, #f39c12, #d35400);
}
.book-cover-fallback i {
    font-size: 2.2rem;
}
.book-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--accent-primary);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.book-details {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.book-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #ffb400;
    font-size: 0.85rem;
    margin-bottom: 10px;
}
.book-rating span {
    color: var(--text-muted);
    margin-left: 4px;
    font-size: 0.8rem;
}
.book-details h4 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    font-weight: 700;
    line-height: 1.3;
}
.book-details p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}
.btn-amazon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 50px;
    background: #ff9900;
    color: #111;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    border: 1px solid #e68a00;
}
.btn-amazon:hover {
    background: #e68a00;
    color: #fff;
    transform: translateY(-2px);
}

/* Social Followers & Instagram Feed Grid */
.social-widgets-section {
    padding-top: 60px;
    border-top: 1px solid var(--glass-border);
}
.stats-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}
.stats-card {
    border-radius: 24px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
    cursor: pointer;
    background: white;
}
.stats-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}
.stats-header i {
    font-size: 1.4rem;
}
.fb-card .stats-header i { color: #1877f2; }
.ig-card .stats-header i { color: #e1306c; }
.stats-count {
    font-size: 3rem;
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.1;
    color: #111;
    margin-bottom: 4px;
}
.fb-card .stats-count {
    background: linear-gradient(135deg, #1877f2, #0056b3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.ig-card .stats-count {
    background: linear-gradient(135deg, #f9ce34, #ee2a7b, #6228d7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.stats-label {
    font-weight: 600;
    color: #111;
    font-size: 1rem;
    margin-bottom: 12px;
}
.stats-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}
.stats-action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-main);
    transition: var(--transition-smooth);
}
.stats-card:hover .stats-action {
    color: var(--accent-primary);
    transform: translateX(4px);
}

/* Instagram Feed Grid */
.ig-feed-container {
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    overflow: hidden;
    margin-top: 24px;
}
.ig-feed-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 24px;
    border-bottom: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.5);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-main);
}
.ig-feed-header i {
    color: #e1306c;
    font-size: 1.2rem;
}
.ig-feed-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1px;
    background: var(--glass-border);
}
.ig-post {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    display: block;
}
.ig-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.ig-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(179, 27, 26, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition-smooth);
    color: white;
    font-weight: 500;
}
.ig-caption {
    font-size: 0.8rem;
    line-height: 1.4;
    text-align: center;
    padding: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.ig-post:hover img {
    transform: scale(1.1);
}
.ig-post:hover .ig-overlay {
    opacity: 1;
}

/* Responsive Extensions */
@media (max-width: 992px) {
    .books-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ig-feed-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    .stats-cards-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 576px) {
    .books-grid {
        grid-template-columns: 1fr;
    }
    .ig-feed-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Screenshot Testimonials Slider */
.screenshot-testimonials-section {
    padding-top: 50px;
    margin-top: 50px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-slider-wrap {
    overflow: hidden;
    padding: 20px 0;
    width: 100%;
    position: relative;
    mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}

.testimonial-slider-track {
    display: flex;
    width: max-content;
    animation: scroll-marquee 40s linear infinite;
}

.testimonial-slider-track:hover {
    animation-play-state: paused;
}

.testimonial-slide {
    width: 320px;
    margin: 0 15px;
    flex-shrink: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-slide:hover {
    transform: scale(1.04);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.testimonial-slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

@keyframes scroll-marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Media & Press Kit Section */
.press-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: start;
    margin-top: 40px;
}

.press-col-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.copy-block {
    background: #fff;
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--glass-shadow);
    position: relative;
}

.copy-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.copy-label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.btn-copy {
    background: #111;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 0.8rem;
    font-family: var(--font-body);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-copy:hover {
    background: var(--accent-primary);
    transform: translateY(-1px);
}

.copy-body {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-main);
}

.copy-body.lead {
    font-size: 1.1rem;
    font-weight: 500;
    color: #111;
    margin-bottom: 12px;
}

/* Interview Topics Grid */
.topics-section-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111;
}

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

.topic-card {
    background: #fff;
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--glass-shadow);
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: var(--transition-smooth);
}

.topic-card:hover {
    transform: translateY(-3px);
    border-color: var(--accent-primary);
}

.topic-idx {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--accent-primary);
    letter-spacing: 1px;
}

.topic-card h4 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #111;
}

.topic-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.topic-tags {
    display: flex;
    gap: 8px;
    margin-top: auto;
}

.topic-tag {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 10px;
    background: var(--bg-alternate);
    border-radius: 20px;
    color: var(--text-main);
    text-transform: uppercase;
}

/* Media Downloads Panel */
.downloads-panel {
    background: #fff;
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--glass-shadow);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.downloads-panel h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #111;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 15px;
    margin-bottom: 10px;
}

.download-link-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 15px;
    padding: 16px 20px;
    background: var(--bg-alternate);
    border-radius: 12px;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.download-link-item:hover {
    border-color: var(--accent-primary);
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.download-link-item i.file-icon {
    font-size: 1.5rem;
    color: var(--accent-primary);
}

.download-link-item .dl-info {
    display: flex;
    flex-direction: column;
}

.download-link-item .dl-info strong {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: #111;
}

.download-link-item .dl-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.download-link-item i.arr-icon {
    font-size: 1.1rem;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.download-link-item:hover i.arr-icon {
    color: var(--accent-primary);
    transform: translateX(4px);
}

@media (max-width: 992px) {
    .press-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .topics-grid {
        grid-template-columns: 1fr;
    }
}
