/* ===== Pempol website — design system ===== */
/* Fonts: Plus Jakarta Sans (Google Fonts), loaded from index.html;        */
/* Fraunces (display serif) + Caveat (handwritten accents) via @import so  */
/* every page — also the language variants — gets them without HTML edits. */
/* Palette mirrors the mobile app (nomnom/src/contexts/ThemeContext.tsx).  */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&family=Caveat:wght@500;600;700&display=swap');

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

:root {
    --primary-color: #C67C4E;
    --primary-dark: #A85D35;
    --primary-light: #D89166;
    --primary-soft: #F6E6DA;
    --primary-tint: #FBF4EE;
    --secondary-color: #2F2D2C;
    --text-color: #2F2D2C;
    --text-secondary: #6B6663;
    --text-muted: #9B9B9B;
    --background: #FCFAF8;
    --white: #ffffff;
    --border: #ECE6E1;
    --success: #36C07E;
    --error: #ED5151;
    --shadow: rgba(47, 45, 44, 0.08);
    --shadow-hover: rgba(198, 124, 78, 0.22);
    --radius-sm: 10px;
    --radius: 16px;
    --radius-lg: 24px;
    --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
    --font-script: 'Caveat', 'Segoe Script', 'Bradley Hand', cursive;
    --mark-bg: linear-gradient(104deg, rgba(246, 197, 122, 0) 0.9%, rgba(246, 197, 122, 0.55) 2.4%, rgba(246, 197, 122, 0.4) 96%, rgba(246, 197, 122, 0) 98%);
    --ig-ring: conic-gradient(from 210deg, #E8B04B, #C67C4E, #B84A62, #E8B04B);
    --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
}

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

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 2.6vw + 1rem, 2.75rem);
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.15;
    text-align: center;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

/* Handwritten highlighter swipe — the Instagram-creator marker look */
.mark {
    position: relative;
    display: inline;
    padding: 0.05em 0.18em;
    background-image: var(--mark-bg);
    border-radius: 0.35em 0.5em 0.4em 0.55em;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

.mark--light {
    background-image: linear-gradient(104deg, rgba(255, 255, 255, 0) 0.9%, rgba(246, 197, 122, 0.32) 2.4%, rgba(246, 197, 122, 0.24) 96%, rgba(255, 255, 255, 0) 98%);
}

.section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    color: var(--text-secondary);
    margin: 0 auto 3rem;
    max-width: 560px;
}

/* Outlined, slightly tilted chips — like the "PORADNIK" badges on creator posts */
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: var(--white);
    border: 1.5px solid var(--secondary-color);
    color: var(--secondary-color);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transform: rotate(-1.5deg);
    box-shadow: 2px 2px 0 rgba(47, 45, 44, 0.12);
}

/* ----- Buttons ----- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.6rem;
    border-radius: 999px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background-color 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
    cursor: pointer;
    border: 1.5px solid transparent;
    white-space: nowrap;
}

.btn:focus-visible {
    outline: 3px solid rgba(198, 124, 78, 0.35);
    outline-offset: 2px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 8px 20px -8px rgba(198, 124, 78, 0.7);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 14px 28px -10px rgba(198, 124, 78, 0.8);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--secondary-color);
    border-color: var(--border);
}

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

.btn-ghost {
    background: transparent;
    color: var(--secondary-color);
    padding: 0.6rem 1rem;
}

.btn-ghost:hover {
    background: var(--primary-tint);
    color: var(--primary-dark);
}

.btn-sm {
    padding: 0.6rem 1.1rem;
    font-size: 0.92rem;
}

.btn-full {
    width: 100%;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(252, 250, 248, 0.85);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid transparent;
    z-index: 1000;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.navbar.scrolled {
    border-bottom-color: var(--border);
    background-color: rgba(255, 255, 255, 0.92);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--secondary-color);
}

.logo-image {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

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

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 0.25rem;
}

.nav-link {
    display: inline-block;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.5rem 0.8rem;
    border-radius: 999px;
    transition: color 0.25s ease, background-color 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-dark);
    background-color: var(--primary-tint);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 0.75rem;
}

.nav-lang {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 0.35rem;
}

.lang-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.88rem;
    padding: 0.3rem 0.55rem;
    border-radius: 8px;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.lang-link:hover {
    color: var(--primary-color);
}

.lang-link--active {
    color: var(--primary-dark);
    background-color: var(--primary-soft);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0 10px;
    background: none;
    border: 1px solid var(--border);
    border-radius: 12px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 2px;
    background-color: var(--secondary-color);
    transition: all 0.3s ease;
}

/* ===== Hero Section ===== */
/* Grid-paper lines under the gradients — the scrapbook notebook look */
.hero {
    position: relative;
    padding: 140px 0 90px;
    overflow: hidden;
    background:
        radial-gradient(900px 500px at 85% 10%, rgba(246, 230, 218, 0.9), transparent 60%),
        radial-gradient(700px 420px at 5% 90%, rgba(246, 230, 218, 0.7), transparent 60%),
        repeating-linear-gradient(0deg, rgba(198, 124, 78, 0.055) 0 1px, transparent 1px 34px),
        repeating-linear-gradient(90deg, rgba(198, 124, 78, 0.055) 0 1px, transparent 1px 34px),
        var(--background);
}

/* Sticker chips floating around the hero, scrapbook-style */
.hero-sticker {
    position: absolute;
    display: grid;
    place-items: center;
    width: 74px;
    height: 74px;
    font-size: 2rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: 0 14px 30px -18px rgba(47, 45, 44, 0.35);
    pointer-events: none;
    z-index: 1;
}

.hero-sticker--1 { top: 24%; left: 7%; transform: rotate(-8deg); }
.hero-sticker--2 { top: 58%; left: 12%; transform: rotate(6deg); }
.hero-sticker--3 { top: 20%; right: 9%; transform: rotate(7deg); }
.hero-sticker--4 { top: 56%; right: 6%; transform: rotate(-6deg); }

@media (max-width: 1100px) {
    .hero-sticker {
        display: none;
    }
}

.hero-content {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.hero-eyebrow {
    margin-bottom: 1.25rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.3rem, 3.6vw + 0.6rem, 3.5rem);
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.12;
    margin-bottom: 1.4rem;
    color: var(--secondary-color);
    text-wrap: balance;
}

/* Handwritten accent with a wavy hand-drawn underline */
.highlight {
    font-family: var(--font-script);
    font-weight: 700;
    font-size: 1.22em;
    line-height: 1.05;
    color: var(--primary-dark);
}

/* the accent half of the headline always starts its own line — the languages
   differ too much in length for a hard <br> to land well in all of them */
.hero-title .highlight {
    display: block;
    padding-bottom: 0.32em;
    background: no-repeat center bottom/min(9em, 92%) 0.26em url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 14' preserveAspectRatio='none' fill='none'%3E%3Cpath d='M4 9.5c30-5.5 60-6.5 84-4.5 26 2.2 45 4.5 70 2.5 22-1.8 40-3.5 58-5' stroke='%23C67C4E' stroke-width='4.5' stroke-linecap='round'/%3E%3C/svg%3E");
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin: 0 auto 1.4rem;
    line-height: 1.75;
    max-width: 560px;
}

/* The whole journey in four words, cookbook-index style */
.hero-flow {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin: 0 auto 2rem;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary-dark);
}

.hero-flow span[aria-hidden] {
    color: var(--text-muted);
    font-weight: 400;
}

.hero-buttons {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 0.85rem;
    flex-wrap: wrap;
    margin-bottom: 1.75rem;
}

/* Handwritten note + hand-drawn arrow pointing at the primary CTA */
.hero-doodle {
    position: absolute;
    right: max(-40px, calc(50% - 400px));
    top: -34px;
    display: flex;
    align-items: flex-end;
    gap: 0.3rem;
    font-family: var(--font-script);
    font-size: 1.45rem;
    font-weight: 600;
    line-height: 1;
    color: var(--primary-dark);
    transform: rotate(4deg);
    pointer-events: none;
}

.hero-doodle svg {
    width: 46px;
    height: 40px;
    transform: translateY(16px);
}

@media (max-width: 860px) {
    .hero-doodle {
        display: none;
    }
}

.hero-trust {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.6rem 1.25rem;
    list-style: none;
    color: var(--text-secondary);
    font-size: 0.92rem;
    font-weight: 600;
}

.hero-trust li {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.hero-trust svg {
    width: 18px;
    height: 18px;
    color: var(--success);
    flex-shrink: 0;
}

/* ----- Story-highlights row (Instagram profile look) ----- */
.ig-highlights {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.1rem 1.6rem;
    list-style: none;
    margin-top: 2.5rem;
}

.igh-item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.82rem;
    font-weight: 600;
}

.igh-ring {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    padding: 3px;
    background: var(--ig-ring);
    transition: transform 0.25s var(--ease);
}

.igh-item a:hover .igh-ring {
    transform: scale(1.07) rotate(3deg);
}

.igh-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--white);
    border: 3px solid var(--background);
    font-size: 1.7rem;
    line-height: 1;
}

/* ===== How it works strip ===== */
.steps {
    padding: 0 0 10px;
    background: var(--background);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    position: relative;
    z-index: 2;
    margin-top: -10px;
}

.step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem 1.35rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

/* Hand-drawn circled numbers, notebook-style */
.step-num {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 52% 48% 45% 55% / 48% 55% 45% 52%;
    display: grid;
    place-items: center;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-dark);
    font-family: var(--font-script);
    font-size: 1.5rem;
    font-weight: 700;
    transform: rotate(-4deg);
}

.step h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.step p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

/* ===== Features Section ===== */
.features {
    padding: 90px 0;
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.feature-card {
    padding: 1.75rem;
    background-color: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.feature-card--lead {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--primary-tint) 0%, var(--white) 100%);
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 1.25rem;
    align-items: start;
    align-content: start;
    row-gap: 0.4rem;
}

.feature-card--lead .feature-icon {
    grid-row: span 2;
    margin-bottom: 0;
}

.feature-card--lead .feature-title {
    font-size: 1.35rem;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(198, 124, 78, 0.35);
    box-shadow: 0 20px 40px -24px var(--shadow-hover);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: var(--primary-soft);
    color: var(--primary-dark);
    margin-bottom: 1.15rem;
    font-size: 1.5rem;
    line-height: 1;
}

.feature-icon svg {
    width: 26px;
    height: 26px;
}

.feature-title {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 0.6rem;
    color: var(--secondary-color);
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.97rem;
}

/* ===== Download Section ===== */
.download {
    position: relative;
    padding: 90px 0;
    background:
        radial-gradient(700px 360px at 10% 0%, rgba(255, 255, 255, 0.18), transparent 60%),
        linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.download .section-title {
    color: var(--white);
}

.download .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

.download-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

/* Store badges — black pills like the official ones, logos inline */
.store-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 190px;
    padding: 0.7rem 1.2rem 0.7rem 1rem;
    background: #111111;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 14px;
    text-decoration: none;
    text-align: left;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background-color 0.25s var(--ease);
}

.store-button:hover {
    transform: translateY(-2px);
    background: #000;
    box-shadow: 0 14px 30px -12px rgba(0, 0, 0, 0.6);
}

.store-icon {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.store-icon svg {
    width: 28px;
    height: 28px;
    display: block;
}

.store-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.store-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    opacity: 0.85;
}

.store-name {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.store-button--light {
    background: var(--secondary-color);
    border-color: transparent;
}

.store-button--light:hover {
    background: #1a1918;
}

.download-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    font-weight: 600;
}

.download-info p {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    opacity: 0.95;
}

.download-info svg {
    width: 18px;
    height: 18px;
}

/* ===== Contact Section ===== */
.contact {
    padding: 90px 0;
    background-color: var(--background);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 340px));
    justify-content: center;
    gap: 1.25rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1.5rem;
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px -24px var(--shadow-hover);
}

.contact-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: var(--primary-soft);
    color: var(--primary-dark);
}

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

.contact-item h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: var(--secondary-color);
}

.contact-item a {
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Linki jeden pod drugim — w rzędzie „@pempolpl Facebook" czytało się jak jeden napis i dobijało do krawędzi karty. */
.social-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
}

/* ===== Footer ===== */
.footer {
    background-color: var(--secondary-color);
    color: rgba(255, 255, 255, 0.85);
    padding: 64px 0 28px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.4fr 2fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 320px;
    margin-bottom: 1.25rem;
}

.footer-social {
    display: flex;
    gap: 0.6rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: background-color 0.25s ease, transform 0.25s var(--ease);
}

.social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-section h4 {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.9rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.55rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.25s ease;
}

.footer-section a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
}

.footer-stores {
    display: flex;
    gap: 0.5rem;
}

.footer-stores .store-button {
    min-width: 0;
    padding: 0.45rem 0.85rem 0.45rem 0.7rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.18);
}

.footer-stores .store-icon,
.footer-stores .store-icon svg {
    width: 20px;
    height: 20px;
}

.footer-stores .store-label {
    display: none;
}

.footer-stores .store-name {
    font-size: 0.9rem;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .features-grid,
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .hero {
        padding: 120px 0 70px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        background-color: var(--white);
        padding: 1.25rem 1.5rem 1.5rem;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 16px 32px -16px var(--shadow);
        gap: 0.25rem;
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-link {
        display: block;
        padding: 0.75rem 0.9rem;
    }

    .nav-cta {
        margin: 0.5rem 0 0;
        flex-direction: column;
        align-items: stretch;
    }

    .nav-cta .btn {
        width: 100%;
    }

    .nav-lang {
        margin: 0.5rem 0 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .steps-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card--lead {
        grid-column: auto;
        display: block;
    }

    .feature-card--lead .feature-icon {
        margin-bottom: 1.15rem;
    }

    .features,
    .download,
    .contact {
        padding: 70px 0;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
    }

    .store-button {
        width: 100%;
        max-width: 300px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 18px;
    }

    .download-info {
        flex-direction: column;
        gap: 0.75rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .btn,
    .feature-card,
    .contact-item,
    .store-button {
        transition: none;
    }
}

/* ===== Cookie Consent Banner ===== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(47, 45, 44, 0.97);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 -4px 12px var(--shadow);
    z-index: 9999;
    animation: slideUp 0.3s ease;
}

.cookie-consent-hidden {
    display: none;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-content {
    max-width: 1160px;
    margin: 0 auto;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-text {
    flex: 1;
}

.cookie-text h3 {
    color: var(--white);
    font-size: 1.05rem;
    margin-bottom: 0.35rem;
}

.cookie-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-shrink: 0;
}

.cookie-buttons .btn {
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem;
}

.cookie-buttons .btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.35);
}

.cookie-buttons .btn-secondary:hover {
    border-color: var(--white);
    color: var(--white);
}

.cookie-link {
    color: var(--primary-light);
    text-decoration: none;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.cookie-link:hover {
    color: var(--white);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        padding: 1.25rem;
        text-align: center;
    }

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-buttons .btn {
        width: 100%;
    }
}

/* ===== Shared legal / sub pages (privacy, terms, przepis) reuse these ===== */
.page-content {
    padding: 120px 0 80px;
    max-width: 800px;
}

/* === Language Dropdown === */
.nav-lang {
    position: relative;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    background: none;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.35rem 0.65rem;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.lang-toggle:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.lang-caret {
    font-size: 0.7em;
    transition: transform 0.2s ease;
}

.nav-lang.open .lang-caret {
    transform: rotate(180deg);
}

.lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    list-style: none;
    margin: 0;
    padding: 6px;
    min-width: 150px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: 0 8px 24px var(--shadow);
    z-index: 1001;
}

.nav-lang.open .lang-dropdown {
    display: block;
}

.lang-dropdown .lang-link {
    display: block;
    padding: 8px 12px;
}

@media (max-width: 768px) {
    .lang-dropdown {
        position: static;
        box-shadow: none;
        border: none;
        padding: 0 0 0 12px;
        min-width: 0;
    }
}


/* =====================================================================
   Storytelling sections (2026 redesign)
   Alternating showcase rows, the "no AI" band, premium plans and FAQ.
   Palette and type stay the same — only the narration got clearer.
   ===================================================================== */

.section-head {
    max-width: 720px;
    margin: 0 auto 3.25rem;
    text-align: center;
}

.section-head .section-eyebrow {
    margin-bottom: 1rem;
}

.section-head .section-subtitle {
    margin-bottom: 0;
}

/* ----- Showcase rows ----- */
.showcase {
    padding: 96px 0 40px;
    background: var(--background);
}

.showcase-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: clamp(2.5rem, 5vw, 5rem);
    padding: 56px 0;
    border-top: 1px solid var(--border);
}

.showcase-row:first-of-type {
    border-top: 0;
    padding-top: 0;
}

.showcase-row--flip .showcase-visual {
    order: -1;
}

.showcase-index {
    display: block;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 0.9rem;
}

.showcase-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.1vw + 1rem, 2.15rem);
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.2;
    color: var(--secondary-color);
    margin-bottom: 0.9rem;
}

.showcase-lead {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 1.4rem;
}

.showcase-list {
    list-style: none;
    display: grid;
    gap: 0.7rem;
}

.showcase-list li {
    position: relative;
    padding-left: 2.1rem;
    font-size: 0.97rem;
    color: var(--text-color);
    line-height: 1.6;
}

.showcase-list li svg {
    position: absolute;
    left: 0;
    top: 2px;
    width: 22px;
    height: 22px;
    color: var(--primary-color);
}

.showcase-note {
    margin-top: 1.4rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.showcase-visual {
    display: flex;
    justify-content: center;
}

/* ----- Static app mockups used inside showcase rows ----- */
.mk {
    width: 100%;
    max-width: 340px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 1.1rem;
    box-shadow: 0 30px 60px -34px var(--shadow-hover);
}

.mk-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.9rem;
}

.mk-bar__title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--secondary-color);
}

.mk-bar__meta {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-dark);
    background: var(--primary-soft);
    border-radius: 999px;
    padding: 0.25rem 0.6rem;
}

.mk-day {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin: 0.85rem 0 0.45rem;
}

.mk-day:first-of-type {
    margin-top: 0;
}

.mk-item {
    display: grid;
    grid-template-columns: 34px 1fr auto;
    gap: 0.7rem;
    align-items: center;
    padding: 0.6rem 0.7rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 0.45rem;
    background: var(--background);
}

.mk-item__emoji {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: var(--primary-soft);
    font-size: 1.05rem;
}

.mk-item__name {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1.3;
}

.mk-item__sub {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.mk-item__tag {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--text-muted);
    white-space: nowrap;
}

.mk-check {
    display: grid;
    grid-template-columns: 20px 1fr auto;
    gap: 0.7rem;
    align-items: center;
    padding: 0.5rem 0.15rem;
    font-size: 0.88rem;
    color: var(--text-color);
    border-bottom: 1px solid var(--border);
}

.mk-check:last-child {
    border-bottom: 0;
}

.mk-check__box {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    border: 1.8px solid var(--border);
}

.mk-check__qty {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.mk-check--done .mk-check__box {
    background: var(--primary-color);
    border-color: var(--primary-color);
    position: relative;
}

.mk-check--done .mk-check__box::after {
    content: '';
    position: absolute;
    inset: 0;
    background: no-repeat center/12px 12px url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12.5 4.5 4.5L19 7'/%3E%3C/svg%3E");
}

.mk-check--done .mk-check__label {
    text-decoration: line-through;
    color: var(--text-muted);
}

.mk-source {
    display: grid;
    grid-template-columns: 38px 1fr auto;
    gap: 0.75rem;
    align-items: center;
    padding: 0.7rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 0.5rem;
}

.mk-source__icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: var(--primary-soft);
    color: var(--primary-dark);
}

.mk-source__icon svg {
    width: 20px;
    height: 20px;
}

.mk-source__name {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.mk-source__sub {
    display: block;
    font-size: 0.74rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.mk-badge {
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary-dark);
    background: var(--primary-soft);
    border-radius: 999px;
    padding: 0.2rem 0.5rem;
}

.mk-person {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 0.7rem;
    align-items: center;
    padding: 0.55rem 0;
}

.mk-person__avatar {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: var(--primary-soft);
    color: var(--primary-dark);
    font-weight: 800;
    font-size: 0.85rem;
}

.mk-person__name {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.mk-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    margin-top: 0.15rem;
}

.mk-chip {
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.15rem 0.45rem;
    border-radius: 999px;
    background: rgba(237, 81, 81, 0.1);
    color: #B33B3B;
}

/* ----- Cooking-mode mockup ----- */
.mk-progress {
    height: 5px;
    border-radius: 999px;
    background: var(--border);
    overflow: hidden;
    margin-bottom: 1rem;
}

.mk-progress span {
    display: block;
    height: 100%;
    border-radius: 999px;
    background: var(--primary-color);
}

/* One step at a time, in type big enough to read from over the pot */
.mk-step {
    font-size: 1.22rem;
    font-weight: 700;
    line-height: 1.45;
    color: var(--secondary-color);
    margin-bottom: 0.9rem;
}

.mk-timer {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 0.95rem;
    border: 1.5px solid var(--primary-color);
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--primary-dark);
    font-variant-numeric: tabular-nums;
    margin-bottom: 0.4rem;
}

.mk-timer svg {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
}

.mk-ing {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.7rem;
    padding: 0.45rem 0.1rem;
    border-bottom: 1px solid var(--border);
    font-size: 0.88rem;
}

.mk-ing:last-of-type {
    border-bottom: none;
}

.mk-ing__label {
    font-weight: 600;
    color: var(--secondary-color);
}

.mk-ing__qty {
    font-weight: 700;
    color: var(--text-secondary);
    white-space: nowrap;
}

.mk-foot {
    margin-top: 0.9rem;
    padding-top: 0.8rem;
    border-top: 1px solid var(--border);
    font-size: 0.78rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.mk-foot svg {
    width: 16px;
    height: 16px;
    color: var(--success);
    flex-shrink: 0;
}

/* ----- "Zero AI" band ----- */
.noai {
    padding: 88px 0;
    background: var(--secondary-color);
    color: #F3EFEC;
}

.noai .section-eyebrow {
    background: transparent;
    border-color: var(--primary-light);
    color: var(--primary-light);
    box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.25);
}

.noai-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
}

.noai-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 2.4vw + 1rem, 2.5rem);
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.2;
    margin: 1rem 0;
    color: #fff;
}

.noai-lead {
    color: rgba(243, 239, 236, 0.78);
    line-height: 1.8;
    font-size: 1.03rem;
}

.noai-points {
    list-style: none;
    display: grid;
    gap: 1rem;
}

.noai-point {
    padding: 1.15rem 1.3rem;
    border: 1px solid rgba(243, 239, 236, 0.14);
    border-radius: var(--radius);
    background: rgba(243, 239, 236, 0.04);
}

.noai-point h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.3rem;
}

.noai-point p {
    font-size: 0.93rem;
    line-height: 1.65;
    color: rgba(243, 239, 236, 0.72);
}

/* ----- Premium ----- */
.premium {
    padding: 96px 0;
    background: var(--white);
}

.plans {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 940px;
    margin: 0 auto;
    align-items: stretch;
}

.plan-card {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--background);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.plan-card--featured {
    background: linear-gradient(150deg, var(--primary-tint) 0%, var(--white) 60%);
    border-color: rgba(198, 124, 78, 0.4);
    box-shadow: 0 30px 60px -38px var(--shadow-hover);
}

.plan-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.35rem;
}

.plan-card h3 {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--secondary-color);
}

.plan-card__price {
    font-size: 0.92rem;
    color: var(--text-secondary);
    margin-bottom: 1.4rem;
}

.plan-list {
    list-style: none;
    display: grid;
    align-content: start;
    gap: 0.75rem;
    margin-bottom: 1.6rem;
    flex: 1;
}

.plan-list li {
    position: relative;
    padding-left: 1.85rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-color);
}

.plan-list li svg {
    position: absolute;
    left: 0;
    top: 3px;
    width: 20px;
    height: 20px;
    color: var(--primary-color);
}

.plan-list li.plan-list__muted {
    color: var(--text-muted);
}

.plan-list li.plan-list__muted svg {
    color: var(--text-muted);
}

.plan-foot {
    text-align: center;
    max-width: 620px;
    margin: 2rem auto 0;
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ----- A note from the maker ----- */
.maker {
    padding: 88px 0;
    background: var(--white);
    text-align: center;
}

.maker-quote {
    max-width: 720px;
    margin: 1.6rem auto 1.4rem;
    font-size: clamp(1.3rem, 2.6vw, 1.7rem);
    font-weight: 600;
    line-height: 1.6;
    color: var(--secondary-color);
}

.maker-sign {
    font-family: var(--font-script);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--primary-dark);
    transform: rotate(-1.5deg);
}

/* ----- FAQ ----- */
.faq {
    padding: 96px 0;
    background: var(--background);
}

.faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: grid;
    gap: 0.85rem;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.faq-item[open] {
    border-color: rgba(198, 124, 78, 0.35);
}

.faq-q {
    list-style: none;
    cursor: pointer;
    padding: 1.15rem 1.4rem;
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.faq-q::-webkit-details-marker {
    display: none;
}

.faq-q::after {
    content: '';
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    background: no-repeat center/18px 18px url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C67C4E' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E");
    transition: transform 0.25s var(--ease);
}

.faq-item[open] .faq-q::after {
    transform: rotate(45deg);
}

.faq-a {
    padding: 0 1.4rem 1.3rem;
    color: var(--text-secondary);
    line-height: 1.75;
    font-size: 0.97rem;
}

.faq-a a {
    color: var(--primary-dark);
    font-weight: 600;
}

/* ----- Instagram feed section ----- */
/* Native cards styled like reels/posts — no Meta embeds, each card links
   to the real reel on the profile. */
.igfeed {
    padding: 96px 0;
    background: var(--white);
}

.ig-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.4rem;
    max-width: 1080px;
    margin: 0 auto 2.5rem;
}

.ig-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    color: var(--text-color);
    box-shadow: 0 18px 40px -28px rgba(47, 45, 44, 0.4);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.ig-card:nth-child(odd) {
    transform: rotate(-1.4deg);
}

.ig-card:nth-child(even) {
    transform: rotate(1.2deg);
}

.ig-card:hover {
    transform: rotate(0deg) translateY(-6px);
    box-shadow: 0 28px 50px -26px var(--shadow-hover);
}

.ig-card__head {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.65rem 0.8rem;
    border-bottom: 1px solid var(--border);
}

.ig-card__avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    padding: 2px;
    background: var(--ig-ring);
}

.ig-card__avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--white);
    object-fit: contain;
}

.ig-card__handle {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1.2;
}

.ig-card__type {
    display: block;
    font-size: 0.68rem;
    font-weight: 500;
    color: var(--text-muted);
}

.ig-card__body {
    aspect-ratio: 4 / 5;
    display: grid;
    place-items: center;
    padding: 1.3rem 1.1rem;
    text-align: center;
}

.ig-card__hook {
    font-family: var(--font-display);
    font-size: 1.22rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--secondary-color);
    text-wrap: balance;
}

.ig-card__hook .mark {
    white-space: nowrap;
}

.ig-card__emoji {
    display: block;
    font-size: 2.1rem;
    margin-bottom: 0.7rem;
}

/* card backgrounds: grid paper / cream / soft terracotta — the feed mix */
.ig-card--paper .ig-card__body {
    background:
        repeating-linear-gradient(0deg, rgba(198, 124, 78, 0.08) 0 1px, transparent 1px 26px),
        repeating-linear-gradient(90deg, rgba(198, 124, 78, 0.08) 0 1px, transparent 1px 26px),
        #FDF9F4;
}

.ig-card--cream .ig-card__body {
    background: linear-gradient(160deg, var(--primary-tint) 0%, #FBEFE4 100%);
}

.ig-card--terra .ig-card__body {
    background: linear-gradient(160deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.ig-card--terra .ig-card__hook {
    color: var(--white);
}

.ig-card--bold .ig-card__body {
    background: #FDF9F4;
}

.ig-card--bold .ig-card__hook {
    font-family: var(--font);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1.05rem;
    letter-spacing: 0.01em;
}

.ig-card__script {
    font-family: var(--font-script);
    font-weight: 600;
    font-size: 1.35em;
    display: block;
    margin-top: 0.3rem;
    color: var(--primary-dark);
}

.ig-card--terra .ig-card__script {
    color: #FFE3C9;
}

.ig-card__actions {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.6rem 0.8rem;
    border-top: 1px solid var(--border);
    color: var(--secondary-color);
}

.ig-card__actions svg {
    width: 20px;
    height: 20px;
}

.ig-card__cta {
    margin-left: auto;
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--primary-dark);
}

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

@media (max-width: 1024px) {
    .ig-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 560px;
    }
}

@media (max-width: 520px) {
    .ig-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
    }

    .igfeed {
        padding: 72px 0;
    }
}

/* ----- Responsive ----- */
@media (max-width: 900px) {
    .showcase-row,
    .noai-grid,
    .plans {
        grid-template-columns: 1fr;
    }

    .showcase-row {
        gap: 2.25rem;
        padding: 44px 0;
    }

    .showcase-row--flip .showcase-visual {
        order: 0;
    }

    .showcase {
        padding: 72px 0 24px;
    }

    .noai,
    .premium,
    .faq,
    .finalcta {
        padding: 72px 0;
    }
}

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}
