/* ============================================
   SideHustleAIStack - Main Stylesheet
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    /* Midnight blue-purple base */
    --dark-900: #0a0a1a;
    --dark-800: #0f1029;
    --dark-700: #161838;
    --dark-600: #1e2148;
    
    /* Energetic gradients */
    --coral: #ff6b6b;
    --orange: #ffa94d;
    --yellow: #ffd43b;
    --teal: #20c997;
    --cyan: #22d3ee;
    --purple: #a855f7;
    --pink: #ec4899;
    
    /* Text */
    --text-primary: #ffffff;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    
    /* Cards */
    --card-bg: rgba(15, 16, 41, 0.95);
    --card-border: rgba(255, 255, 255, 0.08);
    
    /* Spacing */
    --section-padding: 6rem;
    --container-max: 1200px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--dark-800);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 16px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    line-height: 1.2;
}

.gradient-warm {
    background: linear-gradient(135deg, var(--coral), var(--orange), var(--yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-cool {
    background: linear-gradient(135deg, var(--teal), var(--cyan), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---------- Layout ---------- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 5%;
}

.section {
    padding: var(--section-padding) 5%;
}

/* ---------- Background Effects ---------- */
.bg-mesh {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(255, 107, 107, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(32, 201, 151, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(168, 85, 247, 0.06) 0%, transparent 60%);
    animation: meshMove 20s ease-in-out infinite;
}

.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.03;
    background-image: 
        linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

@keyframes meshMove {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(3deg); }
}

/* ---------- Navigation ---------- */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 5%;
    z-index: 1000;
    background: rgba(10, 10, 18, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--card-border);
    transition: background 0.3s, box-shadow 0.3s;
}

.nav.scrolled {
    background: rgba(10, 10, 18, 0.95);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-max);
    margin: 0 auto;
}

.nav-logo {
    font-family: 'Syne', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-primary);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2.25rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    transition: color 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--coral), var(--orange));
    transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-secondary);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

body.menu-open {
    overflow: hidden;
}

/* Legacy nav support */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--coral), var(--orange));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 20px rgba(255, 107, 107, 0.3);
}

.logo-text {
    font-family: 'Syne', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-primary);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, var(--coral), var(--orange));
    color: white;
    box-shadow: 0 4px 25px rgba(255, 107, 107, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 107, 107, 0.45);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid var(--card-border);
}

.btn-secondary:hover {
    border-color: var(--teal);
    color: var(--teal);
    box-shadow: 0 0 30px rgba(32, 201, 151, 0.2);
}

/* ---------- Hero Section ---------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 5% 6rem;
    text-align: center;
}

.hero-content {
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--teal);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 5.5rem);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease 0.1s backwards;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 3rem;
    animation: fadeInUp 0.6s ease 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    animation: fadeInUp 0.6s ease 0.3s backwards;
}

/* ---------- Floating Stats ---------- */
.floating-stats {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease 0.4s backwards;
}

.stat-card {
    padding: 1.25rem 2rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.4s ease;
    animation: float 4s ease-in-out infinite;
}

.stat-card:nth-child(2) { animation-delay: 0.5s; }
.stat-card:nth-child(3) { animation-delay: 1s; }

.stat-card:hover {
    border-color: rgba(255, 107, 107, 0.5);
    box-shadow: 0 10px 40px rgba(255, 107, 107, 0.15);
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.stat-icon.warm { background: linear-gradient(135deg, var(--coral), var(--orange)); }
.stat-icon.cool { background: linear-gradient(135deg, var(--teal), var(--cyan)); }
.stat-icon.purple { background: linear-gradient(135deg, var(--purple), var(--pink)); }

.stat-info strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
}

.stat-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ---------- Section Headers ---------- */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 2.75rem);
    margin-bottom: 1rem;
}

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

/* ---------- Stack Cards ---------- */
.stacks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 1.5rem;
    max-width: var(--container-max);
    margin: 0 auto;
}

.stack-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.stack-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--coral), var(--orange), var(--yellow));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.stack-card:hover::before {
    transform: scaleX(1);
}

.stack-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 107, 107, 0.3);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.stack-emoji {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.stack-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.stack-card > p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.7;
}

.stack-tools {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.tool-chip {
    padding: 0.45rem 1rem;
    background: rgba(32, 201, 151, 0.1);
    border: 1px solid rgba(32, 201, 151, 0.2);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--teal);
}

.stack-meta {
    display: flex;
    justify-content: space-between;
    padding-top: 1.5rem;
    border-top: 1px solid var(--card-border);
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ---------- Featured Section ---------- */
.featured-wrapper {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 2rem;
}

.featured-main {
    background: linear-gradient(135deg, var(--coral) 0%, var(--orange) 50%, var(--yellow) 100%);
    border-radius: 24px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 450px;
    color: white;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.featured-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent 60%);
}

.featured-main:hover {
    transform: scale(1.02);
}

.featured-main > * {
    position: relative;
    z-index: 1;
}

.featured-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    width: fit-content;
}

.featured-main h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.25;
}

.featured-main p {
    opacity: 0.9;
    max-width: 450px;
    font-size: 1.05rem;
}

/* ---------- Article List ---------- */
.article-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.article-item {
    padding: 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    display: flex;
    gap: 1rem;
    align-items: center;
    transition: all 0.3s ease;
}

.article-item:hover {
    border-color: rgba(32, 201, 151, 0.4);
    transform: translateX(8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.article-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.article-icon.teal { background: linear-gradient(135deg, var(--teal), var(--cyan)); }
.article-icon.purple { background: linear-gradient(135deg, var(--purple), var(--pink)); }
.article-icon.orange { background: linear-gradient(135deg, var(--orange), var(--yellow)); }
.article-icon.warm { background: linear-gradient(135deg, var(--coral), var(--orange)); }

.article-item h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    line-height: 1.4;
}

.article-item span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ---------- Stats Bar ---------- */
.stats-bar {
    padding: 4rem 5%;
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.stats-grid h3 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 0.5rem;
}

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

/* ---------- Newsletter ---------- */
.newsletter {
    text-align: center;
    position: relative;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.05), rgba(168, 85, 247, 0.05), rgba(32, 201, 151, 0.05));
    z-index: -1;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 520px;
    margin: 0 auto 1.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1.15rem 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 50px;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.newsletter-form input::placeholder {
    color: var(--text-muted);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--coral);
}

.newsletter-form button {
    padding: 1.15rem 2.5rem;
    background: linear-gradient(135deg, var(--coral), var(--orange));
    color: white;
    border: none;
    border-radius: 50px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 107, 107, 0.3);
}

.newsletter-form button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 107, 107, 0.45);
}

.newsletter-trust {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.newsletter-trust span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.newsletter-trust svg {
    width: 16px;
    height: 16px;
    color: var(--teal);
}

/* ---------- Footer ---------- */
.footer {
    padding: 4rem 5% 2rem;
    border-top: 1px solid var(--card-border);
}

.footer-content {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--card-border);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-brand .logo-icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
}

.footer-brand span {
    font-family: 'Syne', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
}

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

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--coral);
}

.footer-bottom {
    max-width: var(--container-max);
    margin: 0 auto;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ---------- New Footer Grid ---------- */
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--card-border);
}

.footer-col h4 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.footer-col > p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 0.4rem;
}

.footer-col ul li a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--coral);
}

/* ---------- Blog Styles ---------- */
.blog-header {
    padding: 10rem 5% 4rem;
    text-align: center;
}

.blog-header h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: var(--container-max);
    margin: 0 auto;
}

.blog-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 107, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.blog-card-image {
    height: 200px;
    background: linear-gradient(135deg, var(--coral), var(--orange));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.blog-card-content {
    padding: 1.5rem;
}

.blog-card-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.blog-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ---------- Single Post ---------- */
.post-header {
    padding: 10rem 5% 4rem;
    max-width: 800px;
    margin: 0 auto;
}

.post-category {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.2);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--coral);
    margin-bottom: 1.5rem;
}

.post-header h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.post-meta {
    display: flex;
    gap: 2rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.post-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 5% 4rem;
}

.post-content p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
}

.post-content h2 {
    font-size: 1.75rem;
    margin: 3rem 0 1.5rem;
}

.post-content h3 {
    font-size: 1.4rem;
    margin: 2.5rem 0 1rem;
}

.post-content ul, .post-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
    color: var(--text-secondary);
}

.post-content li {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.post-content blockquote {
    border-left: 4px solid var(--coral);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--text-secondary);
}

.post-content code {
    background: var(--dark-700);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
}

.post-content pre {
    background: var(--dark-700);
    padding: 1.5rem;
    border-radius: 12px;
    overflow-x: auto;
    margin: 1.5rem 0;
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

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

/* ---------- Verdict Box ---------- */
.verdict-box {
    background: var(--card-bg);
    border: 2px solid var(--coral);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
}

.verdict-box h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.verdict-box .rating {
    font-size: 1.5rem;
    margin: 1rem 0;
}

/* ---------- Pros/Cons Grid ---------- */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.pros, .cons {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 12px;
}

.pros { border-left: 4px solid var(--teal); }
.cons { border-left: 4px solid var(--coral); }

.pros h4, .cons h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pros ul, .cons ul {
    list-style: none;
    padding: 0;
}

.pros li, .cons li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ---------- Comparison Table ---------- */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--card-border);
    font-size: 0.95rem;
}

.comparison-table th {
    background: var(--dark-700);
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    color: var(--text-primary);
}

.comparison-table td {
    color: var(--text-secondary);
}

.comparison-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

/* ---------- CTA Box ---------- */
.cta-box {
    background: linear-gradient(135deg, rgba(255,107,107,0.1), rgba(255,169,77,0.1));
    border: 1px solid rgba(255,107,107,0.3);
    border-radius: 16px;
    padding: 2rem;
    margin: 3rem 0;
    text-align: center;
}

.cta-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.cta-box ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.cta-box li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
}

.cta-box li a {
    color: var(--coral);
    font-weight: 600;
}

.cta-box li a:hover {
    text-decoration: underline;
}

.cta-box .total {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

/* ---------- Quick Answer Box ---------- */
.quick-answer {
    background: var(--dark-700);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    border-left: 4px solid var(--teal);
}

.quick-answer h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.quick-answer p {
    margin-bottom: 0.75rem;
}

/* ---------- Tool Breakdown Card ---------- */
.tool-breakdown {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
}

.tool-breakdown h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.tool-breakdown p {
    margin-bottom: 1rem;
}

/* ---------- Pricing Table ---------- */
.pricing-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: rgba(255, 107, 107, 0.3);
    transform: translateY(-4px);
}

.pricing-card.featured {
    border-color: var(--coral);
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 107, 107, 0.15);
}

.pricing-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.pricing-card .price {
    font-family: 'Syne', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin: 1rem 0;
}

.pricing-card .price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}

.pricing-card li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ---------- Stack Quick Stats ---------- */
.stack-quick-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ---------- Comparison CTAs ---------- */
.comparison-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 3rem 0;
}

/* ---------- Final CTA ---------- */
.final-cta {
    text-align: center;
    margin: 3rem 0;
}

/* ---------- Step Cards ---------- */
.step-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.step-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.step-card:hover {
    border-color: rgba(32, 201, 151, 0.4);
    transform: translateY(-4px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--coral), var(--orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    margin: 0 auto 1.25rem;
}

.step-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ---------- Page Header (for listing pages) ---------- */
.page-header {
    padding: 10rem 5% 4rem;
    text-align: center;
}

.page-header h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
}

.page-header p {
    color: var(--text-secondary);
    font-size: 1.15rem;
    max-width: 550px;
    margin: 0 auto;
}

/* ---------- Workflow Steps ---------- */
.workflow-step {
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
    align-items: flex-start;
}

.workflow-step .step-num {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, var(--teal), var(--cyan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1rem;
}

.workflow-step h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.workflow-step p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .featured-wrapper {
        grid-template-columns: 1fr;
    }
    
    .featured-main {
        min-height: 350px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 4rem;
    }

    /* New nav mobile */
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 18, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 1.5rem 5%;
        gap: 1rem;
        border-bottom: 1px solid var(--card-border);
    }

    .nav-links.active {
        display: flex;
    }

    /* Legacy nav-open support */
    .nav-links.nav-open {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .floating-stats {
        flex-direction: column;
        align-items: center;
    }

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

    .pros-cons {
        grid-template-columns: 1fr;
    }

    .stack-quick-stats {
        flex-direction: column;
        gap: 0.75rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

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

    .footer-links {
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .newsletter-trust {
        flex-direction: column;
        gap: 0.75rem;
    }
}
/* SideHustleAIStack.com — Additional Components CSS
   ADD to bottom of style.css or include after it. */

/* ── STACK PAGE HEADER ── */
.stack-header { padding-top: 120px; }
.post-header-inner { max-width: 720px; }
.post-category { display: inline-block; font-family: 'DM Sans', sans-serif; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--coral); margin-bottom: 1rem; }
.post-header h1 { font-family: 'Syne', sans-serif; font-weight: 800; font-size: clamp(2rem, 5vw, 3.2rem); line-height: 1.15; color: var(--text-primary); margin-bottom: 1rem; }
.subtitle { font-size: 1.15rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 2rem; }
.post-meta { display: flex; gap: 1.5rem; font-size: 0.9rem; color: var(--text-muted); margin-top: 1rem; }
.stack-quick-stats { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.5rem; }
.stat-pill { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--dark-700); border: 1px solid var(--card-border); border-radius: 100px; padding: 0.6rem 1.2rem; font-size: 0.9rem; color: var(--text-secondary); }
.stat-pill strong { color: var(--text-primary); }

/* ── CONTENT AREA ── */
.content-container { max-width: 760px; margin: 0 auto; }
.content-section { margin-bottom: 3.5rem; }
.content-section h2 { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.65rem; color: var(--text-primary); margin-bottom: 1rem; }
.content-section p { color: var(--text-secondary); line-height: 1.75; margin-bottom: 1rem; }
.content-section ul { margin: 1rem 0 1.5rem 1.25rem; color: var(--text-secondary); line-height: 1.75; }
.content-section ul li { margin-bottom: 0.4rem; }
.highlight-box { background: linear-gradient(135deg, rgba(255,107,107,0.08), rgba(255,169,77,0.08)); border: 1px solid rgba(255,107,107,0.2); border-radius: 12px; padding: 1.5rem; margin: 1.5rem 0; }
.highlight-box p { color: var(--text-primary); margin: 0; }

/* ── TOOL BREAKDOWN ── */
.tool-breakdown { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 16px; padding: 2rem; margin: 2rem 0; transition: border-color 0.3s; }
.tool-breakdown:hover { border-color: rgba(255,255,255,0.15); }
.tool-breakdown-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; }
.tool-number { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.6rem; background: linear-gradient(135deg, var(--coral), var(--orange)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; min-width: 40px; }
.tool-breakdown h3 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.3rem; color: var(--text-primary); margin: 0; }
.tool-price { font-size: 0.85rem; color: var(--teal); font-weight: 600; }
.tool-breakdown .btn { margin-top: 1rem; }

/* ── WORKFLOW STEPS ── */
.workflow-steps { position: relative; margin: 2rem 0; padding-left: 2rem; border-left: 2px solid var(--dark-600); }
.workflow-step { position: relative; margin-bottom: 2.5rem; padding-left: 1rem; }
.workflow-step:last-child { margin-bottom: 0; }
.step-marker { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.5rem; }
.step-number { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 50%; background: linear-gradient(135deg, var(--coral), var(--orange)); color: #fff; font-weight: 700; font-size: 0.85rem; position: absolute; left: -2.95rem; }
.step-day { font-size: 0.8rem; font-weight: 600; color: var(--coral); text-transform: uppercase; letter-spacing: 0.04em; }
.workflow-step h4 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.1rem; color: var(--text-primary); margin-bottom: 0.5rem; }
.workflow-step p { color: var(--text-secondary); line-height: 1.7; }

/* ── CTA BOX ── */
.cta-box { background: linear-gradient(135deg, rgba(255,107,107,0.1), rgba(255,169,77,0.1)); border: 1px solid rgba(255,107,107,0.3); border-radius: 16px; padding: 2.5rem; margin: 3rem 0; text-align: center; }
.cta-box h3 { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.5rem; color: var(--text-primary); margin-bottom: 0.5rem; }
.cta-box > p { color: var(--text-secondary); margin-bottom: 1.5rem; }
.cta-stack-list { display: flex; flex-direction: column; gap: 0.75rem; max-width: 420px; margin: 0 auto 1.5rem; }
.cta-stack-item { display: flex; align-items: center; justify-content: space-between; gap: 1rem; background: var(--dark-700); border: 1px solid var(--card-border); border-radius: 10px; padding: 0.75rem 1rem; }
.cta-stack-item span:first-child { font-weight: 600; color: var(--text-primary); font-size: 0.95rem; }
.cta-price { color: var(--text-muted); font-size: 0.85rem; }
.btn-sm { padding: 0.35rem 0.9rem; font-size: 0.8rem; }
.cta-total { display: flex; justify-content: center; gap: 1rem; align-items: baseline; margin: 1.5rem 0 1rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,0.1); }
.cta-total span:first-child { color: var(--text-secondary); font-weight: 500; }
.cta-total-price { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.4rem; background: linear-gradient(135deg, var(--coral), var(--orange)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.cta-note { font-size: 0.85rem; color: var(--text-muted); }

/* ── INCOME TIERS ── */
.income-tiers { display: flex; flex-direction: column; gap: 1.25rem; margin: 1.5rem 0; }
.income-tier { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 14px; overflow: hidden; }
.tier-header { display: flex; justify-content: space-between; align-items: center; padding: 1rem 1.5rem; }
.tier-header h4 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1rem; color: var(--text-primary); margin: 0; }
.tier-amount { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.05rem; }
.tier-beginner { background: rgba(32,201,151,0.1); }
.tier-beginner .tier-amount { color: var(--teal); }
.tier-growing { background: rgba(255,169,77,0.1); }
.tier-growing .tier-amount { color: var(--orange); }
.tier-scaling { background: rgba(255,107,107,0.1); }
.tier-scaling .tier-amount { color: var(--coral); }
.income-tier > p { padding: 0 1.5rem 1.25rem; color: var(--text-secondary); line-height: 1.65; margin: 0; font-size: 0.95rem; }

/* ── FOR/NOT FOR GRID ── */
.for-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin: 1.5rem 0; }
.for-card { background: var(--card-bg); border-radius: 14px; padding: 1.5rem; }
.for-card h4 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.05rem; margin-bottom: 1rem; }
.for-yes { border-left: 4px solid var(--teal); }
.for-yes h4 { color: var(--teal); }
.for-no { border-left: 4px solid var(--coral); }
.for-no h4 { color: var(--coral); }
.for-card ul { list-style: none; padding: 0; margin: 0; }
.for-card ul li { padding: 0.35rem 0; color: var(--text-secondary); font-size: 0.95rem; line-height: 1.5; }

/* ── FAQ ── */
.faq-list { margin: 1.5rem 0; }
.faq-item { border-bottom: 1px solid var(--card-border); }
.faq-question { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 1.25rem 0; background: none; border: none; cursor: pointer; text-align: left; }
.faq-question span:first-child { font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 1.05rem; color: var(--text-primary); padding-right: 1rem; }
.faq-icon { font-size: 1.4rem; color: var(--coral); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height: 500px; padding-bottom: 1.25rem; }
.faq-answer p { color: var(--text-secondary); line-height: 1.7; font-size: 0.95rem; }
.faq-answer a { color: var(--coral); text-decoration: underline; }
/* SideHustleAIStack.com — Components CSS Part 2
   Append to components.css or include separately. */

/* ── RELATED STACKS ── */
.related-stacks-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem; margin: 1.5rem 0; }
.related-stack-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 14px; padding: 1.5rem; text-decoration: none; transition: border-color 0.3s, transform 0.3s; }
.related-stack-card:hover { border-color: rgba(255,255,255,0.15); transform: translateY(-3px); }
.related-stack-emoji { font-size: 2rem; display: block; margin-bottom: 0.75rem; }
.related-stack-card h4 { font-family: 'Syne', sans-serif; font-weight: 700; color: var(--text-primary); font-size: 1rem; margin-bottom: 0.4rem; }
.related-stack-card p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.5; margin: 0; }

/* ── VERDICT BOX (Reviews) ── */
.verdict-box { background: var(--card-bg); border: 2px solid var(--coral); border-radius: 16px; padding: 2rem; margin: 2rem 0; text-align: center; }
.verdict-box h3 { font-family: 'Syne', sans-serif; font-weight: 800; color: var(--text-primary); margin-bottom: 0.75rem; }
.verdict-box p { color: var(--text-secondary); margin-bottom: 1rem; }
.rating { font-size: 1.3rem; margin-bottom: 1.25rem; }
.rating-score { font-family: 'Syne', sans-serif; font-weight: 800; color: var(--text-primary); }

/* ── PROS / CONS ── */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin: 2rem 0; }
.pros, .cons { background: var(--card-bg); padding: 1.5rem; border-radius: 12px; }
.pros { border-left: 4px solid var(--teal); }
.cons { border-left: 4px solid var(--coral); }
.pros h4, .cons h4 { font-weight: 700; margin-bottom: 0.75rem; }
.pros h4 { color: var(--teal); }
.cons h4 { color: var(--coral); }
.pros ul, .cons ul { list-style: none; padding: 0; margin: 0; }
.pros li, .cons li { padding: 0.3rem 0; color: var(--text-secondary); font-size: 0.95rem; }

/* ── COMPARISON TABLE ── */
.comparison-table { width: 100%; border-collapse: collapse; margin: 2rem 0; font-size: 0.95rem; }
.comparison-table th, .comparison-table td { padding: 1rem; text-align: left; border-bottom: 1px solid var(--card-border); color: var(--text-secondary); }
.comparison-table th { background: var(--dark-700); color: var(--text-primary); font-weight: 600; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.04em; }
.comparison-table tr:hover td { background: rgba(255,255,255,0.02); }

/* ── QUICK ANSWER BOX ── */
.quick-answer { background: var(--dark-700); border-radius: 12px; padding: 2rem; margin: 2rem 0; border-left: 4px solid var(--teal); }
.quick-answer h3 { font-family: 'Syne', sans-serif; font-weight: 700; color: var(--text-primary); margin-bottom: 0.75rem; }
.quick-answer p { color: var(--text-secondary); line-height: 1.7; }
.quick-answer strong { color: var(--text-primary); }

/* ── PRICING TABLE ── */
.pricing-table { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; margin: 2rem 0; }
.pricing-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 16px; padding: 2rem; text-align: center; transition: transform 0.3s; }
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card.featured { border-color: var(--coral); position: relative; }
.pricing-card.featured::before { content: "Best Value"; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--coral), var(--orange)); color: #fff; font-size: 0.75rem; font-weight: 700; padding: 0.2rem 0.8rem; border-radius: 100px; text-transform: uppercase; }
.pricing-card h4 { font-family: 'Syne', sans-serif; font-weight: 700; color: var(--text-primary); margin-bottom: 0.5rem; }
.pricing-card .price { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 2rem; color: var(--text-primary); margin-bottom: 1rem; }
.pricing-card .price span { font-size: 0.9rem; font-weight: 400; color: var(--text-muted); }
.pricing-card ul { list-style: none; padding: 0; margin: 0 0 1.5rem; text-align: left; }
.pricing-card li { padding: 0.4rem 0; color: var(--text-secondary); font-size: 0.9rem; }

/* ── INLINE DISCLOSURE ── */
.inline-disclosure { padding: 1.25rem 0; border-top: 1px solid var(--card-border); border-bottom: 1px solid var(--card-border); }
.inline-disclosure p { color: var(--text-muted); font-size: 0.8rem; line-height: 1.6; max-width: 760px; margin: 0 auto; }
.inline-disclosure a { color: var(--coral); }

/* ── NEWSLETTER ── */
.newsletter-section { padding: 4rem 0; background: var(--dark-900); }
.newsletter-box { max-width: 560px; margin: 0 auto; text-align: center; }
.newsletter-box h2 { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.8rem; color: var(--text-primary); margin-bottom: 0.75rem; }
.newsletter-box > p { color: var(--text-secondary); margin-bottom: 1.5rem; line-height: 1.6; }
.newsletter-form { display: flex; gap: 0.75rem; margin-bottom: 0.75rem; }
.newsletter-form input[type="email"] { flex: 1; padding: 0.85rem 1.25rem; border-radius: 10px; border: 1px solid var(--card-border); background: var(--dark-700); color: var(--text-primary); font-family: 'DM Sans', sans-serif; font-size: 0.95rem; outline: none; transition: border-color 0.3s; }
.newsletter-form input[type="email"]:focus { border-color: var(--coral); }
.newsletter-form input[type="email"]::placeholder { color: var(--text-muted); }
.newsletter-note { font-size: 0.8rem; color: var(--text-muted); }

/* ── START HERE PAGE ── */
.start-here-hero { padding: 140px 0 80px; text-align: center; background: radial-gradient(ellipse at 50% 20%, rgba(255,107,107,0.06) 0%, transparent 60%); }
.start-hero-inner { max-width: 680px; margin: 0 auto; }
.hero-label { display: inline-block; font-size: 0.9rem; font-weight: 600; color: var(--text-secondary); margin-bottom: 1.25rem; }
.start-here-hero h1 { font-family: 'Syne', sans-serif; font-weight: 800; font-size: clamp(2.2rem, 5.5vw, 3.5rem); line-height: 1.15; color: var(--text-primary); margin-bottom: 1.25rem; }
.hero-subtitle { font-size: 1.1rem; color: var(--text-secondary); line-height: 1.65; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── PROBLEM/SOLUTION ── */
.problem-solution-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; margin: 2rem 0; }
.problem-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 16px; padding: 2rem; text-align: center; transition: transform 0.3s; }
.problem-card:hover { transform: translateY(-3px); }
.card-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.problem-card h3 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.1rem; color: var(--text-primary); margin-bottom: 0.75rem; }
.problem-card p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.6; margin: 0; }
.solution-banner { margin: 2.5rem 0; background: linear-gradient(135deg, rgba(32,201,151,0.08), rgba(34,211,238,0.08)); border: 1px solid rgba(32,201,151,0.2); border-radius: 16px; padding: 2.5rem; text-align: center; }
.solution-inner h3 { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.3rem; color: var(--text-primary); margin-bottom: 0.75rem; }
.solution-inner p { color: var(--text-secondary); line-height: 1.7; max-width: 620px; margin: 0 auto; }

/* ── STEPS GRID ── */
.section-dark { background: var(--dark-900); }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; margin: 2rem 0; }
.step-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 16px; padding: 2rem; text-align: center; }
.step-number-big { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 3rem; line-height: 1; margin-bottom: 1rem; display: block; }
.step-card h3 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.15rem; color: var(--text-primary); margin-bottom: 0.75rem; }
.step-card p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.6; margin: 0; }

/* ── PATH / STACK PICKER ── */
.path-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; margin: 2.5rem 0; }
.path-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 18px; padding: 2rem; position: relative; transition: transform 0.3s, border-color 0.3s; }
.path-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.15); }
.path-featured { border-color: var(--coral); }
.path-badge { position: absolute; top: -10px; right: 20px; background: linear-gradient(135deg, var(--coral), var(--orange)); color: #fff; font-size: 0.75rem; font-weight: 700; padding: 0.25rem 0.9rem; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.04em; }
.path-emoji { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.path-card h3 { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.3rem; color: var(--text-primary); margin-bottom: 0.5rem; }
.path-card > p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.55; margin-bottom: 1.25rem; }
.path-meta { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1rem; font-size: 0.8rem; color: var(--text-muted); }
.path-tools { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.25rem; }
.tool-tag { font-size: 0.75rem; font-weight: 600; background: var(--dark-600); color: var(--text-secondary); padding: 0.2rem 0.65rem; border-radius: 100px; }
.path-help { text-align: center; margin-top: 1rem; color: var(--text-muted); font-size: 0.95rem; }
.path-help a { color: var(--coral); text-decoration: underline; }

/* ── FEATURES GRID ── */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; margin: 2rem 0; }
.feature-item { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 14px; padding: 1.5rem; transition: border-color 0.3s; }
.feature-item:hover { border-color: rgba(255,255,255,0.12); }
.feature-icon { font-size: 1.8rem; margin-bottom: 0.75rem; display: block; }
.feature-item h4 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.05rem; margin-bottom: 0.4rem; }
.feature-item h4 a { color: var(--text-primary); text-decoration: none; transition: color 0.3s; }
.feature-item h4 a:hover { color: var(--coral); }
.feature-item p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.5; margin: 0; }

/* ── MISC ── */
.comparison-ctas { display: flex; gap: 1rem; justify-content: center; margin: 2rem 0; flex-wrap: wrap; }
.final-cta { text-align: center; margin: 2.5rem 0; }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* ── MOBILE ── */
@media (max-width: 768px) {
    .for-grid, .pros-cons { grid-template-columns: 1fr; }
    .path-grid { grid-template-columns: 1fr; }
    .newsletter-form { flex-direction: column; }
    .newsletter-form .btn { width: 100%; }
    .cta-stack-item { flex-wrap: wrap; gap: 0.5rem; }
    .tier-header { flex-direction: column; align-items: flex-start; gap: 0.25rem; }
    .stat-pill { font-size: 0.8rem; }
    .post-meta { flex-direction: column; gap: 0.5rem; }
    .hero-actions { flex-direction: column; align-items: center; }
    .workflow-steps { padding-left: 1.5rem; }
    .step-number { left: -2.4rem; width: 24px; height: 24px; font-size: 0.75rem; }
    .comparison-table { font-size: 0.85rem; }
    .comparison-table th, .comparison-table td { padding: 0.65rem 0.5rem; }
}
