/* ============================================
   THE PROMPT TOOLBOX — Converted from React prototype v3
   ============================================ */

:root {
    --espresso: #2D1810;
    --burnt-orange: #D95D1F;
    --plum: #853045;
    --plum-light: #C13F53;
    --golden: #F0B429;
    --cream: #FEF4E8;
    --cream-dark: #FBE8D4;
    --bg: #FAFAFA;
    --border: #E8E8E8;
    --text: #1A1A1A;
    --text-mid: #2D1810;
    --text-light: #4A3728;
    --text-faint: #6B5B4F;
    --font-heading: 'Instrument Serif', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --max-width: 1260px;
    --nav-height: 56px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); background: var(--bg); color: var(--text); line-height: 1.6; font-size: 18px; }
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 400; line-height: 1.15; color: var(--text); }
h1 { font-size: clamp(2.4rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 4vw, 2rem); }
h3 { font-size: 1.45rem; }
a { color: var(--plum); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--plum-light); }
img { max-width: 100%; height: auto; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* NAV — Dark espresso with accent line */
.nav-header {
    position: sticky; top: 0; z-index: 40;
    background: var(--espresso);
    border-top: 2px solid;
    border-image: linear-gradient(90deg, var(--burnt-orange), var(--plum), var(--golden), var(--burnt-orange)) 1;
}
.nav-inner {
    max-width: var(--max-width); margin: 0 auto; padding: 0 24px;
    height: 62px; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-img { width: 34px; height: 34px; object-fit: contain; }
.nav-logo-text { font-family: var(--font-heading); font-size: 20px; color: var(--cream); }
.nav-links { display: flex; align-items: center; gap: 3px; list-style: none; }
.nav-links a {
    padding: 7px 16px; border-radius: 8px; font-size: 14px; font-weight: 600;
    color: rgba(255,248,240,0.55); transition: all 0.2s;
}
.nav-links a:hover { color: var(--cream); background: rgba(255,248,240,0.08); }
.nav-links a.active { background: rgba(255,248,240,0.15); color: var(--cream); }
.nav-cta {
    background: transparent !important; color: rgba(255,248,240,0.5) !important;
    border: 1px solid rgba(255,248,240,0.15) !important; padding: 4px 10px !important;
    border-radius: 6px !important; font-size: 11px !important; font-weight: 600 !important;
}
.nav-cta:hover { color: var(--cream) !important; border-color: rgba(255,248,240,0.3) !important; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--cream); margin: 5px 0; border-radius: 2px; }

/* BUTTONS */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 13px 28px; border-radius: 12px; font-family: var(--font-body);
    font-size: 16px; font-weight: 700; border: none; cursor: pointer;
    transition: all 0.2s; text-decoration: none; line-height: 1.4;
}
.btn-primary { background: var(--plum); color: white; }
.btn-primary:hover { background: var(--plum-light); color: white; transform: translateY(-1px); }
.btn-secondary { background: transparent; color: var(--plum); border: 1.5px solid var(--plum); }
.btn-secondary:hover { background: var(--plum); color: white; }
.btn-orange { background: var(--burnt-orange); color: white; }
.btn-orange:hover { background: #c0511a; color: white; transform: translateY(-1px); }
.btn-green { background: #10B981; color: white; }
.btn-green:hover { background: #0ea572; color: white; }
.btn-sm { padding: 7px 14px; font-size: 13px; border-radius: 10px; }
.btn-lg { padding: 14px 32px; font-size: 16px; }

/* HERO */
.hero {
    position: relative; overflow: hidden;
    background: linear-gradient(135deg, var(--cream), var(--cream-dark));
    padding: 48px 24px 44px;
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(rgba(217,93,31,0.04) 1px, transparent 1px);
    background-size: 24px 24px;
}
.hero-inner {
    display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px;
    align-items: center; max-width: var(--max-width); margin: 0 auto;
    position: relative; z-index: 2;
}
.hero-label {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(217,93,31,0.12); color: var(--burnt-orange);
    font-size: 15px; font-weight: 700; padding: 8px 18px;
    border-radius: 50px; margin-bottom: 18px;
}
.hero-content h1 { margin-bottom: 8px; color: var(--espresso); }
.hero-content h1 span { color: var(--burnt-orange); }
.hero-tagline { font-size: 22px; color: #2D1810; margin-bottom: 4px; line-height: 1.6; }
.hero-animated-line {
    font-family: var(--font-heading); font-style: italic; font-size: 28px;
    color: var(--burnt-orange); margin-bottom: 28px; min-height: 2.2rem;
    background: linear-gradient(135deg, var(--burnt-orange), var(--plum));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-animated-line::after {
    content: ''; display: inline-block; width: 2px; height: 1em;
    background: var(--burnt-orange); margin-left: 2px; animation: blink 1s infinite; vertical-align: text-bottom;
    -webkit-text-fill-color: var(--burnt-orange);
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }
.hero-buttons { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-illustration { display: flex; justify-content: center; }
.hero-toolbox-graphic { width: 100%; max-width: 300px; }
.hero-toolbox-graphic img { width: 100%; height: auto; filter: drop-shadow(0 12px 32px rgba(45,24,16,0.15)); }

/* STATS TICKER — Dark espresso, bigger */
.stats-ticker { background: var(--espresso); padding: 20px 24px; }
.stats-ticker-inner {
    display: flex; align-items: center; justify-content: center;
    max-width: 800px; margin: 0 auto;
}
.stat-item {
    flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center;
}
.stat-number {
    font-family: var(--font-heading); font-style: italic;
    font-size: 32px; color: var(--golden); line-height: 1.1;
}
.stat-label {
    font-size: 13px; color: rgba(255,248,240,0.6); font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase; margin-top: 4px;
}

/* SECTIONS */
.section { padding: 48px 0; }
.section-white { background: white; border-top: 1px solid #EBEBEB; border-bottom: 1px solid #EBEBEB; }
.section-label {
    display: block; text-align: center; font-size: 13px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.5px; color: var(--burnt-orange); margin-bottom: 8px;
}
.section-header { text-align: center; margin-bottom: 32px; }
.section-header h2 {
    background: linear-gradient(135deg, var(--espresso), var(--plum));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeUp 0.7s ease-out;
}
.section-header p { font-size: 18px; color: #2D1810; max-width: 500px; margin: 6px auto 0; }

/* STEPS */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1100px; margin: 0 auto; }
.step-card {
    background: white; border-radius: 18px; padding: 32px 24px; text-align: center;
    border: 1px solid var(--border); box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}
.step-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.step-number {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--burnt-orange), var(--plum));
    color: white; font-family: var(--font-heading); font-size: 20px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px;
}
.step-card h3 { margin-bottom: 8px; font-size: 22px; }
.step-card p { font-size: 17px; color: #2D1810; line-height: 1.65; }

/* PROMPT CARDS — Standard white */
.prompt-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 16px; }
.prompt-card {
    position: relative; border-radius: 18px; padding: 24px;
    background: white; border: 1px solid var(--border); overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
    box-shadow: 0 1px 3px rgba(0,0,0,0.04); display: flex; flex-direction: column;
    cursor: pointer;
}
.prompt-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -8px rgba(0,0,0,0.08), 0 8px 16px rgba(0,0,0,0.04); }
.prompt-card .card-accent-top {
    position: absolute; top: 0; left: 0; right: 0; height: 3px; opacity: 0.3; transition: opacity 0.3s;
}
.prompt-card:hover .card-accent-top { opacity: 1; }
.prompt-card .card-accent-left {
    position: absolute; left: 0; top: 24px; bottom: 24px; width: 3px; border-radius: 0 3px 3px 0; opacity: 0.7;
}
.card-category-badge {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 14px; font-weight: 600; padding: 5px 12px;
    border-radius: 8px; margin-bottom: 12px; width: fit-content;
}
.prompt-card h3 {
    font-family: var(--font-heading); font-size: 22px; font-weight: 400;
    color: var(--text); margin-bottom: 8px; line-height: 1.2; transition: color 0.2s;
}
.prompt-card h3 a { color: inherit; }
.prompt-card h3 a::after {
    content: ''; position: absolute; inset: 0; z-index: 1;
}
.prompt-card .card-stat-save,
.prompt-card .card-stat-vote { position: relative; z-index: 2; }
.prompt-card-desc {
    font-size: 17px; color: #2D1810; line-height: 1.65; margin-bottom: 16px; flex: 1;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.tool-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.tool-tag {
    font-size: 12px; color: white; font-weight: 700;
    padding: 4px 10px; border-radius: 6px; background: #2D1810; border: none;
}
.card-stats {
    display: flex; align-items: center; justify-content: space-between;
    border-top: 1px solid #F0F0F0; padding-top: 14px;
}
.card-stats-left { display: flex; align-items: center; gap: 16px; }
.card-stat-vote { display: flex; align-items: center; gap: 4px; cursor: pointer; border: none; background: none; padding: 0; }
.card-stat-vote .heart { font-size: 14px; color: #C13F53; }
.card-stat-vote .count { font-size: 14px; color: #2D1810; font-weight: 600; }
.card-stat-uses { font-size: 14px; color: #4A3728; }
.card-stat-save { font-size: 20px; color: #C9960E; cursor: pointer; border: none; background: none; padding: 0; }
.access-badge {
    position: absolute; top: 12px; right: 12px;
    background: linear-gradient(135deg, #F59E0B, #EF4444); color: white;
    font-size: 10px; font-weight: 800; padding: 4px 10px; border-radius: 6px;
    letter-spacing: 0.04em;
}
.access-badge.pro-badge {
    background: linear-gradient(135deg, var(--burnt-orange), var(--plum));
}

/* FEATURED DARK CARDS */
.featured-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.featured-card {
    position: relative; border-radius: 20px; padding: 28px; overflow: hidden; cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}
.featured-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.2); }
.featured-card.purple { background: linear-gradient(135deg, #2d2045, #3d2860, #2d2050); }
.featured-card.blue { background: linear-gradient(135deg, #1a2840, #253755, #1e2d48); }
.featured-card .fc-orb {
    position: absolute; top: -30%; right: -10%; width: 200px; height: 200px;
    border-radius: 50%; filter: blur(30px);
}
.featured-card.purple .fc-orb { background: radial-gradient(circle, rgba(139,92,246,0.2), transparent 70%); }
.featured-card.blue .fc-orb { background: radial-gradient(circle, rgba(59,130,246,0.2), transparent 70%); }
.featured-card .fc-accent {
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
}
.featured-card.purple .fc-accent { background: linear-gradient(90deg, #8B5CF6, #EC4899); }
.featured-card.blue .fc-accent { background: linear-gradient(90deg, #3B82F6, #06B6D4); }
.featured-card .fc-content { position: relative; z-index: 1; }
.fc-badges { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.fc-popular {
    background: #FCD34D; color: var(--text); font-size: 10px; font-weight: 800;
    letter-spacing: 0.08em; padding: 4px 10px; border-radius: 6px; text-transform: uppercase;
}
.fc-category {
    background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7);
    font-size: 12px; font-weight: 600; padding: 4px 10px; border-radius: 8px;
}
.featured-card h3 {
    font-family: var(--font-heading); font-size: 28px; font-weight: 400;
    color: white; margin-bottom: 10px; line-height: 1.2;
}
.featured-card .fc-desc { font-size: 17px; color: rgba(255,255,255,0.55); line-height: 1.65; margin-bottom: 16px; }
.featured-card .tool-tag {
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.5);
}
.featured-card .card-stats { border-top-color: rgba(255,255,255,0.08); }
.featured-card .card-stat-vote .heart { color: rgba(255,255,255,0.4); }
.featured-card .card-stat-vote .count { color: rgba(255,255,255,0.5); }
.featured-card .card-stat-uses { color: rgba(255,255,255,0.3); }
.featured-card .card-stat-save { color: rgba(255,255,255,0.2); }

/* BROWSE TOOLBAR */
.browse-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; flex-wrap: wrap; gap: 12px; }
.browse-pills { display: flex; gap: 8px; }
.browse-pill {
    padding: 7px 14px; border-radius: 10px; font-size: 13px; font-weight: 600;
    cursor: pointer; border: none; transition: all 0.2s; font-family: var(--font-body); text-decoration: none;
}
.browse-pill.active { background: var(--espresso); color: var(--cream); }
.browse-pill:not(.active) { background: #F0F0F0; color: var(--text-light); }
.browse-pill:not(.active):hover { background: #E8E8E8; color: var(--text); }
.cat-dropdown {
    padding: 7px 14px; border-radius: 10px; font-size: 13px; font-weight: 600;
    cursor: pointer; border: 1.5px solid #DDD; background: white; color: var(--text-mid);
    display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-body); text-decoration: none;
}

/* CATEGORY PILLS (browse page) */
.category-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; justify-content: center; }
.category-pill {
    padding: 7px 14px; border-radius: 10px; font-size: 13px; font-weight: 600;
    border: 1.5px solid #DDD; background: white; color: var(--text-mid);
    cursor: pointer; transition: all 0.2s; text-decoration: none; font-family: var(--font-body);
}
.category-pill:hover { border-color: var(--burnt-orange); color: var(--burnt-orange); }
.category-pill.active { border-color: var(--burnt-orange); background: var(--burnt-orange); color: white; }

/* SEARCH BAR */
.search-bar { max-width: 460px; margin: 0 auto 24px; position: relative; }
.search-bar input {
    width: 100%; padding: 14px 20px 14px 48px; border-radius: 16px;
    border: 1.5px solid var(--border); font-family: var(--font-body); font-size: 16px;
    background: white; color: var(--text); transition: border-color 0.2s; outline: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.search-bar input:focus { border-color: var(--burnt-orange); }
.search-bar svg { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); color: var(--text-faint); }

/* SINGLE PROMPT — Warm header redesign */
.prompt-detail { max-width: 800px; margin: 0 auto; padding: 32px 24px 72px; }
.prompt-detail-card { background: white; border-radius: 20px; border: 1px solid var(--border); box-shadow: 0 1px 3px rgba(0,0,0,0.04); overflow: hidden; }
.prompt-detail-header {
    background: linear-gradient(135deg, var(--cream), var(--cream-dark));
    padding: 32px 36px 28px; position: relative; overflow: hidden;
}
.prompt-detail-body { padding: 28px 36px 36px; }
.prompt-detail h1 { font-size: 2rem; margin-bottom: 14px; }
.prompt-detail-meta { display: flex; gap: 10px; align-items: center; margin-bottom: 20px; flex-wrap: wrap; }
.prompt-steps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.prompt-step-card {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 12px 14px; background: var(--bg); border-radius: 10px; border: 1px solid var(--border);
}
.prompt-step-card p { font-size: 16px; color: #2D1810; margin: 0; line-height: 1.5; padding-top: 3px; }
.prompt-copy-box {
    background: var(--cream); border: 2px solid rgba(239,68,68,0.2); border-radius: 16px;
    overflow: hidden; margin-bottom: 20px;
}
.prompt-copy-box-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 14px 24px; background: rgba(239,68,68,0.04); border-bottom: 1px solid rgba(239,68,68,0.1);
    font-weight: 700; font-size: 17px;
}
.prompt-copy-box-body {
    padding: 24px 24px 28px; font-size: 17px; line-height: 1.8; white-space: pre-wrap;
}
.prompt-copy-box-body .placeholder {
    background: rgba(239,68,68,0.1); color: #DC2626;
    padding: 2px 6px; border-radius: 4px; font-weight: 700; font-size: 14px; display: inline;
}
.prompt-tip-card {
    background: linear-gradient(135deg, rgba(240,180,41,0.06), rgba(240,180,41,0.02));
    border: 1px solid rgba(240,180,41,0.18); border-radius: 14px;
    padding: 18px 22px; margin-bottom: 24px; display: flex; gap: 14px; align-items: flex-start;
}
.prompt-tip-icon {
    width: 36px; height: 36px; border-radius: 10px; background: rgba(240,180,41,0.12);
    display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0;
}
.prompt-action-bar {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 20px; border-top: 1px solid var(--border);
}
.prompt-action-btn {
    display: flex; align-items: center; gap: 6px; padding: 10px 18px; border-radius: 12px;
    cursor: pointer; font-size: 15px; font-weight: 600; font-family: var(--font-body); transition: all 0.2s;
}
.prompt-action-btn.love {
    border: 1.5px solid rgba(239,68,68,0.25); background: rgba(239,68,68,0.04); color: #E05A5A;
}
.prompt-action-btn.love.active, .prompt-action-btn.love.loved {
    border-color: #EF4444; background: rgba(239,68,68,0.06); color: #EF4444;
}
.prompt-action-btn.save {
    border: 1.5px solid rgba(240,180,41,0.3); background: rgba(240,180,41,0.05); color: #C9960E;
}
.prompt-action-btn.save.active {
    border-color: var(--golden); background: rgba(240,180,41,0.08); color: #D4940A;
}
.back-link { display: inline-flex; align-items: center; gap: 6px; margin-bottom: 24px; font-weight: 500; color: var(--text-light); font-size: 16px; }
.back-link:hover { color: var(--text); }
.how-to-use { margin: 28px 0; }
.how-to-use h4 { font-size: 19px; font-weight: 700; margin-bottom: 18px; display: flex; align-items: center; gap: 8px; }
.how-to-step { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 14px; }
.how-to-step .step-dot {
    width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
    background: linear-gradient(135deg, var(--burnt-orange), var(--plum));
    color: white; font-size: 14px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
}
.how-to-step p { font-size: 17px; color: #2D1810; padding-top: 5px; }
.copy-btn-large {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 24px; background: var(--plum); color: white; border: none;
    border-radius: 12px; font-size: 15px; font-weight: 700; cursor: pointer;
    font-family: var(--font-body); transition: all 0.2s;
}
.copy-btn-large:hover { background: var(--plum-light); transform: translateY(-1px); }
.copy-btn-large.copied { background: #10B981; }
.copy-btn-large.copied:hover { background: #0ea572; }

/* PRO LOCKED PROMPT */
.prompt-locked-overlay {
    position: relative; border-radius: 16px; overflow: hidden;
    margin-bottom: 20px;
}
.prompt-locked-blur {
    background: var(--cream); border: 2px solid rgba(217,93,31,0.2); border-radius: 16px;
    padding: 40px 24px; min-height: 260px;
    filter: blur(4px); -webkit-filter: blur(4px); user-select: none;
    font-size: 17px; color: #999; line-height: 1.8;
}
.prompt-locked-cta {
    position: absolute; inset: 0; display: flex; flex-direction: column;
    align-items: center; justify-content: center; text-align: center;
    background: rgba(255,248,240,0.85); border-radius: 16px; padding: 32px;
}
.prompt-locked-icon { font-size: 44px; margin-bottom: 16px; }
.prompt-locked-cta h3 { font-size: 1.4rem; margin-bottom: 10px; color: var(--espresso); }
.prompt-locked-cta p { font-size: 17px; color: var(--text-mid); margin-bottom: 24px; max-width: 380px; line-height: 1.6; }

/* PAGE HEADERS — Warm cream hero (matches homepage) */
.page-header { padding: 48px 24px 40px; text-align: center; background: linear-gradient(135deg, var(--cream), var(--cream-dark)); border-bottom: 1px solid #E8D5C4; }
.page-header h1 {
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--espresso), var(--plum));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.page-header p { font-size: 18px; color: #2D1810; max-width: 450px; margin: 0 auto; }

.page-hero {
    position: relative; overflow: hidden;
    background: linear-gradient(135deg, var(--cream), var(--cream-dark));
    padding: 56px 24px 48px; text-align: center;
}
.page-hero-dot-pattern {
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(217,93,31,0.04) 1px, transparent 1px);
    background-size: 24px 24px;
}
.page-hero-inner { position: relative; z-index: 2; max-width: 600px; margin: 0 auto; }
.page-hero h1 {
    margin-bottom: 10px; color: var(--espresso);
    background: linear-gradient(135deg, var(--espresso), var(--plum));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.page-hero p { font-size: 18px; color: #2D1810; line-height: 1.6; margin: 0; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ACCENT STRIP — Dark espresso mini-stats */
.accent-strip { background: var(--espresso); padding: 16px 24px; }
.accent-strip-inner { display: flex; justify-content: center; gap: 48px; max-width: 700px; margin: 0 auto; flex-wrap: wrap; }
.accent-strip-item { text-align: center; }
.accent-strip-value { font-family: var(--font-heading); font-style: italic; font-size: 24px; color: var(--golden); line-height: 1.1; display: block; }
.accent-strip-label { font-size: 12px; color: rgba(255,248,240,0.6); font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-top: 3px; display: block; }

/* CONTENT PAGES */
.content-page { max-width: 780px; margin: 0 auto; padding: 0 24px 72px; }
.content-page h2 { margin: 36px 0 14px; font-size: 1.6rem; }
.content-page h3 { margin: 24px 0 10px; font-size: 1.3rem; }
.content-page p { margin-bottom: 14px; line-height: 1.7; font-size: 18px; color: #2D1810; }
.content-page ul, .content-page ol { margin: 0 0 14px 24px; line-height: 1.8; }
.content-page li { margin-bottom: 6px; font-size: 18px; color: #2D1810; }

/* PRICING */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%,360px), 1fr)); gap: 20px; max-width: 780px; margin: 0 auto; }
.pricing-card { background: white; padding: 32px; border: 1px solid var(--border); border-radius: 20px; box-shadow: 0 1px 3px rgba(0,0,0,0.04); }
.pricing-tier {
    display: inline-block; background: #F5F5F5; color: #4A3728;
    font-size: 12px; font-weight: 800; letter-spacing: 0.08em;
    padding: 4px 12px; border-radius: 6px; margin-bottom: 16px; text-transform: uppercase;
}
.pricing-card.featured { background: linear-gradient(135deg, var(--cream), #FFF0DC, #FFE8CC); border: 2px solid var(--burnt-orange); position: relative; box-shadow: 0 8px 32px rgba(217,93,31,0.12); }
.pricing-card.featured .pricing-tier { background: linear-gradient(135deg, var(--burnt-orange), var(--plum)); color: white; }
.featured-pill {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--espresso); color: #FCD34D; font-size: 11px; font-weight: 800;
    letter-spacing: 0.06em; padding: 6px 16px; border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2); white-space: nowrap; z-index: 10;
}
.pricing-amount { font-family: var(--font-heading); font-size: 40px; color: var(--text); margin-bottom: 8px; }
.pricing-amount span { font-size: 18px; color: #4A3728; }
.pricing-subtitle { font-size: 17px; color: #2D1810; margin-bottom: 24px; line-height: 1.5; }
.pricing-features { list-style: none; margin: 0 0 28px; padding: 0; }
.pricing-features li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; font-size: 17px; color: #2D1810; }
.pricing-features li .check { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.faq-card { background: white; border-radius: 14px; padding: 28px; border: 1px solid var(--border); box-shadow: 0 1px 3px rgba(0,0,0,0.04); margin-bottom: 12px; }
.faq-card h3 { font-size: 22px; margin-bottom: 10px; color: var(--espresso); }
.faq-card p { font-size: 17px; color: #2D1810; line-height: 1.6; margin: 0; }

/* CTA */
.cta-section { padding: 48px 24px; text-align: center; background: var(--cream); border-top: 1px solid #E8D5C4; }
.cta-section h2 { margin-bottom: 8px; color: var(--espresso); }
.cta-section p { color: #2D1810; margin-bottom: 24px; font-size: 18px; }

/* FORMS */
.contact-form, .request-form-card { max-width: 580px; margin: 0 auto; }
.request-form-card { background: white; border-radius: 20px; padding: 32px; border: 1px solid var(--border); }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; margin-bottom: 5px; font-weight: 600; font-size: 15px; }
.form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 12px 16px; border: 1.5px solid var(--border);
    border-radius: 10px; font-family: var(--font-body); font-size: 16px;
    background: white; color: var(--text); transition: border-color 0.2s; outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--burnt-orange); }
.form-group textarea { resize: vertical; min-height: 110px; }

/* FOOTER — Dark */
.footer { background: #111; }
.footer-accent { height: 2px; background: linear-gradient(90deg, var(--burnt-orange), var(--plum), var(--golden), var(--burnt-orange)); }
.footer-inner {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px;
    max-width: var(--max-width); margin: 0 auto; padding: 36px 24px 28px;
}
.footer-brand .footer-title {
    font-family: var(--font-heading); font-size: 20px; color: white; margin-bottom: 8px;
    display: flex; align-items: center; gap: 8px;
}
.footer-brand .footer-title img { width: 24px; height: 24px; }
.footer-brand p { font-size: 16px; color: rgba(255,248,240,0.8); line-height: 1.6; }
.footer h4 { color: var(--golden); font-size: 14px; font-family: var(--font-body); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 14px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,248,240,0.75); font-size: 16px; transition: color 0.2s; }
.footer-links a:hover { color: white; }
.footer-bottom {
    border-top: 1px solid rgba(255,248,240,0.1); margin-top: 28px; padding-top: 14px;
    padding-bottom: 24px;
    text-align: center; max-width: var(--max-width); margin-left: auto; margin-right: auto;
    padding-left: 24px; padding-right: 24px;
}
.footer-bottom p { font-size: 15px; color: rgba(255,248,240,0.65); }
.footer-claude { margin-top: 5px; font-size: 15px; color: rgba(255,248,240,0.55); display: flex; align-items: center; justify-content: center; gap: 6px; }
.footer-claude img { height: 14px; width: 14px; opacity: 0.6; }
.footer-claude .heart { color: var(--plum-light); }

/* WHAT'S NEW — Timeline */
.timeline { position: relative; }
.timeline-line {
    position: absolute; left: 15px; top: 8px; bottom: 8px; width: 2px;
    background: linear-gradient(to bottom, var(--burnt-orange), var(--plum), var(--golden));
    border-radius: 2px;
}
.timeline-item { display: flex; gap: 24px; margin-bottom: 24px; position: relative; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot {
    width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0; z-index: 1;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.timeline-dot.live {
    background: linear-gradient(135deg, var(--burnt-orange), var(--plum));
    border: 3px solid white;
}
.timeline-dot.planned {
    background: white; border: 2px solid var(--plum);
}
.timeline-dot-inner { width: 8px; height: 8px; border-radius: 50%; background: var(--plum); }
.timeline-card {
    flex: 1; background: white; border-radius: 16px; padding: 22px 24px;
    border: 1px solid var(--border); box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    position: relative; overflow: hidden;
}
.timeline-card-accent { position: absolute; top: 0; left: 0; bottom: 0; width: 3px; }
.timeline-card-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.timeline-date { font-size: 12px; color: var(--burnt-orange); font-weight: 600; }
.timeline-card h3 { font-size: 22px; margin-bottom: 6px; }
.timeline-card p { font-size: 17px; color: #2D1810; line-height: 1.65; margin: 0; }
.update-tag { display: inline-block; padding: 2px 10px; border-radius: 12px; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.update-tag.new { background: rgba(217,93,31,0.1); color: var(--burnt-orange); }
.update-tag.improved { background: rgba(133,48,69,0.08); color: var(--plum); }

/* ADMIN */
.admin-layout { padding-top: 20px; min-height: 100vh; }
.admin-container { max-width: 1100px; margin: 0 auto; padding: 0 24px 56px; }
.admin-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; padding-bottom: 18px; border-bottom: 2px solid var(--border); }
.admin-tabs { display: inline-flex; gap: 3px; margin-bottom: 28px; background: white; border-radius: 12px; padding: 3px; border: 1px solid var(--border); }
.admin-tab { padding: 9px 22px; border-radius: 8px; font-size: 13px; font-weight: 500; color: var(--text); text-decoration: none; transition: all 0.2s; font-family: var(--font-body); border: none; background: none; cursor: pointer; }
.admin-tab:hover { background: #F5F5F5; }
.admin-tab.active { background: var(--espresso); color: var(--cream); }
.admin-card { background: white; border-radius: 14px; border: 1px solid var(--border); overflow: hidden; }
.admin-card-header { padding: 18px 22px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.admin-card-header h3 { font-size: 1.1rem; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { text-align: left; padding: 10px 22px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-light); background: #FAFAFA; border-bottom: 1px solid var(--border); }
.admin-table td { padding: 12px 22px; border-bottom: 1px solid #F5F5F5; font-size: 15px; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: #FAFAFA; }
.admin-actions { display: flex; gap: 8px; }
.admin-login { max-width: 380px; margin: 100px auto; padding: 0 24px; }
.admin-login-card { background: white; border-radius: 20px; padding: 36px; border: 1px solid var(--border); box-shadow: 0 8px 30px rgba(0,0,0,0.06); text-align: center; }
.admin-login-card h2 { margin-bottom: 6px; }
.admin-login-card p { color: #4A3728; margin-bottom: 22px; font-size: 16px; }
.admin-form { max-width: 700px; }
.admin-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.status-badge { display: inline-flex; padding: 3px 10px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.status-badge.pending { background: rgba(240,180,41,0.12); color: #b8860b; }
.status-badge.approved { background: rgba(45,138,78,0.1); color: #2d8a4e; }
.status-badge.declined { background: rgba(193,63,83,0.08); color: var(--plum-light); }
.flash { padding: 12px 18px; border-radius: 10px; margin-bottom: 18px; font-size: 14px; font-weight: 500; }
.flash-success { background: rgba(45,138,78,0.06); border: 1px solid rgba(45,138,78,0.12); color: #2d6a3e; }
.flash-error { background: rgba(193,63,83,0.06); border: 1px solid rgba(193,63,83,0.12); color: var(--plum); }
.tool-badge { display: inline-flex; padding: 3px 10px; border-radius: 6px; font-size: 11px; font-weight: 700; color: white; }
.tier-badge { display: inline-flex; padding: 3px 10px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.tier-badge.tier-pro { background: rgba(133,48,69,0.1); color: var(--plum); }
.tier-badge.tier-free { background: rgba(45,24,16,0.06); color: var(--text-light); }

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 32px; }
    .hero-buttons { justify-content: center; }
    .hero-illustration { order: -1; }
    .hero-toolbox-graphic { max-width: 220px; }
    .featured-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .steps-grid { grid-template-columns: repeat(2, 1fr); max-width: 600px; margin: 0 auto; }
    .admin-form .form-row { grid-template-columns: 1fr; }
    .learn-tools-grid { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; }
    .learn-comparison-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .nav-links {
        display: none; position: absolute; top: var(--nav-height); left: 0; right: 0;
        background: var(--espresso); flex-direction: column; padding: 20px; gap: 4px;
        border-bottom: 1px solid rgba(255,255,255,0.1); box-shadow: 0 12px 32px rgba(0,0,0,0.3);
    }
    .nav-links.open { display: flex; }
    .nav-toggle { display: block; }
    .stats-ticker-inner { flex-wrap: wrap; gap: 16px; }
    .stat-item { min-width: 120px; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 24px 16px; padding: 28px 20px; }
    .footer-brand { grid-column: 1 / -1; }
    .prompt-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; max-width: 380px; }
    .browse-header { flex-direction: column; align-items: stretch; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .learn-steps-grid { grid-template-columns: 1fr; }
    .prompt-steps-grid { grid-template-columns: 1fr; }
    .prompt-detail-header { padding: 24px 20px 22px; }
    .prompt-detail-body { padding: 22px 20px 28px; }
    .prompt-action-bar { flex-direction: column; gap: 14px; align-items: stretch; }
    .prompt-action-bar > div { justify-content: center; }
    .prompt-action-bar .copy-btn-large { width: 100%; justify-content: center; }
    .timeline-item { gap: 16px; }
    .accent-strip-inner { gap: 32px; }
    .pricing-comparison-strip { gap: 20px; padding: 20px 24px; }
    .footer-heading-icon { width: 22px; height: 22px; }
}

/* LEARN PAGE */
.learn-intro-card {
    background: white; border-radius: 20px; padding: 36px 32px;
    border: 1px solid var(--border); box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    position: relative; overflow: hidden;
}
.learn-intro-card h2 { margin-top: 0; margin-bottom: 12px; }
.learn-intro-card p { font-size: 18px; color: #2D1810; line-height: 1.7; margin-bottom: 12px; }
.learn-intro-accent {
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--burnt-orange), var(--plum));
}
.learn-comparison-card {
    background: linear-gradient(135deg, var(--cream), var(--cream-dark));
    border-radius: 20px; padding: 32px; border: 1px solid #E8D5C4;
}
.learn-comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.learn-comparison-box {
    background: rgba(255,255,255,0.7); border-radius: 14px; padding: 20px;
    border: 1px solid rgba(217,93,31,0.12);
}
.learn-comparison-label {
    font-size: 12px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.08em; margin-bottom: 8px;
}
.learn-comparison-label.bad { color: var(--plum); }
.learn-comparison-label.good { color: #10B981; }
.learn-comparison-example {
    font-family: var(--font-heading); font-style: italic; font-size: 19px;
    color: var(--text); margin: 0; line-height: 1.5;
}
.learn-comparison-result { font-size: 16px; margin-top: 8px; margin-bottom: 0; line-height: 1.5; }
.learn-tools-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; }
.learn-tool-card {
    background: white; border-radius: 16px; padding: 24px 20px; text-align: center;
    border: 1px solid var(--border); position: relative; overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.learn-tool-accent { position: absolute; top: 0; left: 0; right: 0; height: 3px; }
.learn-tool-icon {
    width: 44px; height: 44px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 12px; font-size: 20px; font-weight: 700; font-family: var(--font-heading);
}
.learn-tool-card h3 { font-size: 20px; margin-bottom: 2px; }
.learn-tool-by { font-size: 13px; color: #4A3728; margin-bottom: 8px; }
.learn-tool-desc { font-size: 16px; color: #2D1810; line-height: 1.5; margin-bottom: 10px; }
.learn-tool-url { font-size: 12px; font-weight: 600; }
.learn-steps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; grid-auto-rows: 1fr; }
.learn-step-card {
    display: flex; align-items: center; gap: 14px;
    background: white; border-radius: 14px; padding: 18px 20px;
    border: 1px solid var(--border); box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.learn-step-card .step-number { margin: 0; flex-shrink: 0; }
.learn-tip-card {
    background: white; border-radius: 16px; padding: 24px 28px;
    border: 1px solid var(--border); box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    display: flex; gap: 18px; align-items: flex-start; margin-bottom: 14px;
}
.learn-tip-icon { font-size: 28px; line-height: 1; flex-shrink: 0; margin-top: 2px; }
.learn-cta-dark {
    background: linear-gradient(135deg, #1a0533, #2d1052, #1a103a);
    border-radius: 20px; padding: 40px 32px; text-align: center;
    position: relative; overflow: hidden;
}
.learn-cta-accent {
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--burnt-orange), var(--plum), var(--golden));
}
.learn-cta-orb {
    position: absolute; top: -30%; right: -5%; width: 200px; height: 200px;
    border-radius: 50%; background: radial-gradient(circle, rgba(139,92,246,0.3), transparent 70%);
    filter: blur(30px);
}
.learn-cta-dark h2 { color: white; margin-bottom: 8px; position: relative; z-index: 1; }
.learn-cta-dark p { font-size: 17px; color: rgba(255,255,255,0.6); margin-bottom: 24px; position: relative; z-index: 1; }

/* PRICING COMPARISON STRIP */
.pricing-comparison-strip {
    background: var(--espresso); border-radius: 16px; padding: 24px 32px;
    display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap;
}
.pricing-comparison-item { text-align: center; }
.pricing-comparison-value {
    font-family: var(--font-heading); font-style: italic; font-size: 28px;
    color: rgba(255,248,240,0.7); line-height: 1.1;
}
.pricing-comparison-value.highlight { color: var(--golden); }
.pricing-comparison-label {
    font-size: 13px; color: rgba(255,248,240,0.55); font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase; margin-top: 2px;
}
.pricing-comparison-item:first-child .pricing-comparison-label { color: rgba(255,248,240,0.7); }
.pricing-comparison-vs { color: rgba(255,248,240,0.5); font-size: 16px; font-weight: 600; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes heroIconFloat { 0%,100%{transform:translateY(0) rotate(0deg)} 25%{transform:translateY(-10px) rotate(-2deg)} 75%{transform:translateY(-5px) rotate(1.5deg)} }
.page-hero-icon {
    width: 80px; height: 80px; margin: 0 auto 16px; display: block;
    animation: heroIconFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 8px 16px rgba(45,24,16,0.1));
}
.fade-in { animation: fadeUp 0.7s ease-out; }
.fade-in-1 { animation: fadeUp 0.7s ease-out 0.1s both; }
.fade-in-2 { animation: fadeUp 0.7s ease-out 0.2s both; }
.fade-in-3 { animation: fadeUp 0.7s ease-out 0.3s both; }

/* ─── Footer icon strip ─── */
.footer-icon-strip {
    background: var(--espresso);
    padding: 16px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.footer-icon-strip img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    opacity: 0.75;
    transition: opacity 0.3s, transform 0.3s;
}
.footer-icon-strip img:hover {
    opacity: 0.95;
    transform: translateY(-2px);
}
.footer-tool-badges {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}
.footer-tool-badge {
    font-size: 12px;
    font-weight: 700;
    color: white;
    padding: 4px 12px;
    border-radius: 8px;
    font-family: var(--font-body);
}
.footer-british {
    margin-top: 14px;
    font-size: 14px;
    font-weight: 600;
    color: var(--golden);
    font-family: var(--font-body);
}
.footer-heading-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    vertical-align: -2px;
    margin-right: 4px;
}
/* ─── ABOUT PAGE ─── */
.about-content p {
    font-size: 17px;
    line-height: 1.85;
    color: var(--espresso);
    margin-bottom: 24px;
}
.about-content h2 {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 1.65rem;
    color: var(--espresso);
    margin: 48px 0 16px;
    padding-top: 16px;
    background: linear-gradient(135deg, var(--espresso), var(--plum));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.about-content a {
    color: var(--burnt-orange);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.about-content a:hover {
    color: var(--plum);
}
.about-content em {
    font-style: italic;
    color: var(--plum);
}

/* About images */
.about-image {
    margin: 36px 0 40px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(45, 24, 16, 0.1);
}
.about-image img {
    width: 100%;
    height: auto;
    display: block;
}
.about-image figcaption {
    background: var(--cream);
    padding: 12px 20px;
    font-size: 14px;
    color: #6B5B4F;
    font-style: italic;
    text-align: center;
    border-top: 1px solid rgba(45, 24, 16, 0.06);
}

/* Closing CTA box */
.about-cta {
    margin-top: 48px;
    padding: 36px 32px;
    background: linear-gradient(135deg, var(--cream), #FFF0E0);
    border-radius: 20px;
    border: 1px solid rgba(217, 93, 31, 0.15);
    text-align: center;
}
.about-cta p {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Floating hero icons */
.page-hero-icons {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}
.floating-icon {
    position: absolute;
    font-size: 28px;
    animation: heroIconFloat 3s ease-in-out infinite;
    opacity: 0.6;
}
.floating-icon:nth-child(2) { animation-delay: 0.5s; }
.floating-icon:nth-child(3) { animation-delay: 1s; }
.floating-icon:nth-child(4) { animation-delay: 1.5s; }

/* About page label */
.page-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(217,93,31,0.12);
    color: var(--burnt-orange);
    font-size: 11px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* About responsive */
@media (max-width: 600px) {
    .about-content {
        padding: 32px 18px 48px !important;
    }
    .about-content p {
        font-size: 16px;
    }
    .about-content h2 {
        font-size: 1.4rem;
    }
    .about-cta {
        padding: 28px 20px;
    }
    .floating-icon {
        font-size: 22px;
    }
}

/* ============================================
   NEWSLETTER — Footer Strip
   ============================================ */
.footer-newsletter {
    background: var(--espresso);
    border-top: 4px solid transparent;
    border-image: linear-gradient(90deg, var(--burnt-orange), var(--plum), var(--golden), var(--burnt-orange)) 1;
    padding: 32px 24px;
}
.footer-newsletter-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    justify-content: center;
}
.footer-newsletter-text {
    flex: 1 1 300px;
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
}
.footer-newsletter-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    opacity: 0.9;
}
.footer-newsletter-heading {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--cream);
    margin-bottom: 4px;
    line-height: 1.2;
}
.footer-newsletter-desc {
    font-size: 16px;
    color: var(--cream);
    line-height: 1.5;
}
.footer-newsletter-form {
    flex: 1 1 320px;
    max-width: 420px;
}
.footer-newsletter-fields {
    display: flex;
    gap: 10px;
}
.footer-newsletter-fields input[type="email"] {
    flex: 1;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1.5px solid rgba(255,248,240,0.2);
    background: rgba(255,248,240,0.1);
    color: var(--cream);
    font-size: 16px;
    font-family: var(--font-body);
    outline: none;
    transition: border-color 0.2s;
}
.footer-newsletter-fields input[type="email"]::placeholder {
    color: rgba(255,248,240,0.5);
}
.footer-newsletter-fields input[type="email"]:focus {
    border-color: var(--burnt-orange);
}
.footer-newsletter-fields button {
    padding: 12px 24px;
    border-radius: 10px;
    border: none;
    background: var(--burnt-orange);
    color: white;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s, transform 0.2s;
}
.footer-newsletter-fields button:hover {
    background: var(--plum);
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .footer-newsletter { background: #FFF8F0; padding: 16px; border-top: none; border-image: none; }
    .footer-newsletter-inner { flex-direction: column; align-items: center; text-align: center; gap: 14px; background: #2D1810; border-radius: 12px; padding: 24px 20px; border-top: 3px solid #D95D1F; max-width: 100%; }
    .footer-newsletter-text { flex: none; flex-direction: column; align-items: center; text-align: center; gap: 10px; }
    .footer-newsletter-form { flex: none; width: 100%; max-width: 100%; }
    .footer-newsletter-fields { flex-direction: column; gap: 8px; }
    .footer-newsletter-fields input[type="email"] { width: 100%; box-sizing: border-box; }
    .footer-newsletter-fields button { width: 100%; }
    .footer-icon-strip { display: none !important; }
}

/* ============================================
   NEWSLETTER — Dedicated Page
   ============================================ */
.newsletter-card {
    background: #fff;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 4px 24px rgba(45,24,16,0.08);
    max-width: 440px;
    margin: 28px auto 0;
}
.newsletter-input {
    width: 100%;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1.5px solid var(--latte);
    background: #FFF8F0;
    color: var(--espresso);
    font-size: 16px;
    font-family: var(--font-body);
    outline: none;
    margin-bottom: 12px;
    box-sizing: border-box;
    transition: border-color 0.2s;
}
.newsletter-input:focus {
    border-color: var(--burnt-orange);
}
.newsletter-btn {
    width: 100%;
    padding: 14px !important;
    font-size: 17px !important;
}
.newsletter-reassurance {
    font-size: 16px;
    color: var(--espresso);
    margin-top: 12px;
    text-align: center;
}

/* Newsletter benefits grid */
.newsletter-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 960px;
    margin: 0 auto;
}
.newsletter-benefit {
    background: #FFF8F0;
    border-radius: 16px;
    padding: 24px;
}
.newsletter-benefit-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(212,163,115,0.12) 0%, rgba(133,48,69,0.08) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.newsletter-benefit-icon img {
    width: 32px;
    height: 32px;
}
.newsletter-benefit h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--espresso);
    margin-bottom: 6px;
}
.newsletter-benefit p {
    font-size: 16px;
    color: var(--espresso);
    line-height: 1.5;
}

@media (max-width: 600px) {
    .newsletter-benefits-grid {
        grid-template-columns: 1fr;
    }
    .newsletter-card {
        padding: 22px 18px;
    }
}


/* ============================================
   MAILERLITE FORM OVERRIDES — Footer
   ============================================ */
.footer-newsletter .ml-form-embedWrapper {
    background-color: transparent !important;
    border: none !important;
    max-width: 100% !important;
    width: 100% !important;
}
.footer-newsletter .ml-form-embedHeader {
    display: none !important;
}
.footer-newsletter .ml-form-embedContent {
    display: none !important;
}
.footer-newsletter .ml-form-embedBody {
    padding: 0 !important;
}
.footer-newsletter .ml-form-formContent {
    margin: 0 !important;
}
.footer-newsletter .ml-form-fieldRow input {
    background-color: rgba(255,248,240,0.1) !important;
    border: 1.5px solid rgba(255,248,240,0.2) !important;
    border-radius: 10px !important;
    color: var(--cream) !important;
    font-family: var(--font-body) !important;
    font-size: 16px !important;
    padding: 12px 16px !important;
}
.footer-newsletter .ml-form-fieldRow input::placeholder {
    color: rgba(255,248,240,0.5) !important;
}
.footer-newsletter .ml-form-embedSubmit {
    margin: 10px 0 0 0 !important;
}
.footer-newsletter .ml-form-embedSubmit button {
    background-color: var(--burnt-orange) !important;
    border-radius: 10px !important;
    font-family: var(--font-body) !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    padding: 12px 24px !important;
}
.footer-newsletter .ml-form-embedSubmit button:hover {
    background-color: var(--plum) !important;
}
.footer-newsletter .ml-form-successBody {
    padding: 10px 0 !important;
}
.footer-newsletter .ml-form-successContent h4 {
    color: var(--cream) !important;
    font-family: var(--font-heading) !important;
}
.footer-newsletter .ml-form-successContent p {
    color: var(--cream) !important;
    font-family: var(--font-body) !important;
    font-size: 16px !important;
}

/* ============================================
   MAILERLITE FORM OVERRIDES — Newsletter Page
   ============================================ */
.newsletter-card .ml-form-embedWrapper {
    background-color: transparent !important;
    border: none !important;
    max-width: 100% !important;
    width: 100% !important;
}
.newsletter-card .ml-form-embedHeader {
    display: none !important;
}
.newsletter-card .ml-form-embedContent {
    display: none !important;
}
.newsletter-card .ml-form-embedBody {
    padding: 0 !important;
}
.newsletter-card .ml-form-formContent {
    margin: 0 !important;
}
.newsletter-card .ml-form-fieldRow input {
    background-color: #FFF8F0 !important;
    border: 1.5px solid var(--latte) !important;
    border-radius: 12px !important;
    color: var(--espresso) !important;
    font-family: var(--font-body) !important;
    font-size: 16px !important;
    padding: 14px 18px !important;
}
.newsletter-card .ml-form-embedSubmit {
    margin: 12px 0 0 0 !important;
}
.newsletter-card .ml-form-embedSubmit button {
    background-color: var(--burnt-orange) !important;
    border-radius: 12px !important;
    font-family: var(--font-body) !important;
    font-size: 17px !important;
    font-weight: 600 !important;
    padding: 14px !important;
}
.newsletter-card .ml-form-embedSubmit button:hover {
    background-color: var(--plum) !important;
}
.newsletter-card .ml-form-successContent h4 {
    color: var(--espresso) !important;
    font-family: var(--font-heading) !important;
}
.newsletter-card .ml-form-successContent p {
    color: var(--espresso) !important;
    font-family: var(--font-body) !important;
    font-size: 16px !important;
}
