/*===============================================
 * CUSTOM.CSS - Food Cost Manager
 * Tema Trattoria Italiana
 * menudachef.it
 *===============================================*/

:root {
    /* Colori tema trattoria italiana */
    --fcm-primary: #3d3629;
    --fcm-primary-light: #5c5346;
    --fcm-primary-dark: #2a251c;
    --fcm-accent: #c9a962;
    --fcm-accent-light: #d4b978;
    --fcm-accent-dark: #b8954a;
    --fcm-success: #6b8e5e;
    --fcm-warning: #e6a23c;
    --fcm-danger: #c97b62;
    --fcm-info: #5b9bd5;
    
    /* Background */
    --fcm-bg: #faf8f5;
    --fcm-bg-alt: #f5f0e8;
    --fcm-bg-dark: #3d3629;
    --fcm-surface: #ffffff;
    
    /* Testo */
    --fcm-text: #2d2a26;
    --fcm-text-light: #ffffff;
    --fcm-text-muted: #8a8176;
    
    /* Bordi */
    --fcm-border: #e5dfd5;
    --fcm-border-dark: #d4cdc0;
    
    /* Font */
    --fcm-font-heading: 'Playfair Display', Georgia, serif;
    --fcm-font-body: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --fcm-section-padding: 80px;
    --fcm-section-padding-mobile: 50px;
}

/* =====================
   RESET & BASE
   ===================== */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--fcm-font-body);
    background-color: var(--fcm-bg);
    color: var(--fcm-text);
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
    padding: 0;
}

/* =====================
   TYPOGRAPHY
   ===================== */
h1, h2, h3, h4, h5, h6,
.uk-h1, .uk-h2, .uk-h3, .uk-h4, .uk-h5, .uk-h6 {
    font-family: var(--fcm-font-heading);
    color: var(--fcm-primary);
    font-weight: 600;
    line-height: 1.3;
}

h1, .uk-h1 { font-size: 2.8rem; }
h2, .uk-h2 { font-size: 2.2rem; }
h3, .uk-h3 { font-size: 1.6rem; }
h4, .uk-h4 { font-size: 1.3rem; }

p {
    margin-bottom: 1.2em;
}

a {
    color: var(--fcm-accent-dark);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--fcm-primary);
}

/* =====================
   NAVBAR - PUBBLICO
   ===================== */
.fcm-navbar-public {
    background: rgba(61, 54, 41, 0.97);
    backdrop-filter: blur(10px);
    border-bottom: 3px solid var(--fcm-accent);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.fcm-navbar-public.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.fcm-navbar-public .uk-navbar-container {
    background: transparent;
}

.fcm-navbar-public .uk-logo {
    font-family: var(--fcm-font-heading);
    font-size: 1.6rem;
    color: #fff !important;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.fcm-navbar-public .uk-logo span {
    color: var(--fcm-accent);
}

.fcm-navbar-public .uk-navbar-nav > li > a {
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: none;
    padding: 0 20px;
    min-height: 70px;
    transition: color 0.2s ease;
}

.fcm-navbar-public .uk-navbar-nav > li > a:hover,
.fcm-navbar-public .uk-navbar-nav > li.uk-active > a {
    color: var(--fcm-accent);
}

.fcm-navbar-public .fcm-btn-nav {
    background: var(--fcm-accent);
    color: var(--fcm-primary) !important;
    border-radius: 25px;
    padding: 10px 25px !important;
    min-height: auto !important;
    font-weight: 600;
    transition: all 0.2s ease;
}

.fcm-navbar-public .fcm-btn-nav:hover {
    background: var(--fcm-accent-light);
    transform: translateY(-2px);
}

/* Mobile menu */
.fcm-mobile-nav {
    background: var(--fcm-primary);
    padding: 20px;
}

.fcm-mobile-nav .uk-nav > li > a {
    color: rgba(255,255,255,0.85);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.fcm-mobile-nav .uk-nav > li > a:hover {
    color: var(--fcm-accent);
}

/* =====================
   HERO SECTION
   ===================== */
.fcm-hero {
    background: linear-gradient(135deg, var(--fcm-primary) 0%, var(--fcm-primary-light) 50%, var(--fcm-primary) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.fcm-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(201,169,98,0.1)"/></svg>') repeat;
    background-size: 30px 30px;
    opacity: 0.5;
}

.fcm-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, var(--fcm-bg), transparent);
}

.fcm-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.fcm-hero-badge {
    display: inline-block;
    background: rgba(201, 169, 98, 0.2);
    color: var(--fcm-accent);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
    border: 1px solid rgba(201, 169, 98, 0.3);
}

.fcm-hero h1 {
    color: #fff;
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.fcm-hero h1 span {
    color: var(--fcm-accent);
}

.fcm-hero-subtitle {
    color: rgba(255,255,255,0.8);
    font-size: 1.3rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.fcm-hero-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.fcm-btn-primary {
    background: var(--fcm-accent);
    color: var(--fcm-primary);
    padding: 16px 40px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.fcm-btn-primary:hover {
    background: var(--fcm-accent-light);
    color: var(--fcm-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 169, 98, 0.4);
}

.fcm-btn-secondary {
    background: transparent;
    color: #fff;
    padding: 16px 40px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.fcm-btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
    color: #fff;
}

.fcm-hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.fcm-hero-stat {
    text-align: center;
}

.fcm-hero-stat-value {
    font-family: var(--fcm-font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--fcm-accent);
}

.fcm-hero-stat-label {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* =====================
   SECTIONS
   ===================== */
.fcm-section {
    padding: var(--fcm-section-padding) 0;
}

.fcm-section-alt {
    background: var(--fcm-bg-alt);
}

.fcm-section-dark {
    background: var(--fcm-primary);
    color: var(--fcm-text-light);
}

.fcm-section-dark h2,
.fcm-section-dark h3 {
    color: #fff;
}

.fcm-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.fcm-section-header h2 {
    margin-bottom: 15px;
}

.fcm-section-header p {
    color: var(--fcm-text-muted);
    font-size: 1.1rem;
}

.fcm-section-label {
    display: inline-block;
    color: var(--fcm-accent-dark);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 10px;
}

/* =====================
   FEATURES SECTION
   ===================== */
.fcm-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.fcm-feature-card {
    background: var(--fcm-surface);
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 4px 20px rgba(61, 54, 41, 0.08);
    border: 1px solid var(--fcm-border);
    transition: all 0.3s ease;
}

.fcm-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(61, 54, 41, 0.12);
}

.fcm-feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--fcm-accent) 0%, var(--fcm-accent-light) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.fcm-feature-icon svg {
    width: 30px;
    height: 30px;
    color: var(--fcm-primary);
}

.fcm-feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.fcm-feature-card p {
    color: var(--fcm-text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* =====================
   AI SECTION
   ===================== */
.fcm-ai-section {
    background: linear-gradient(135deg, var(--fcm-primary) 0%, var(--fcm-primary-light) 100%);
    position: relative;
    overflow: hidden;
}

.fcm-ai-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201,169,98,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.fcm-ai-content {
    position: relative;
    z-index: 1;
}

.fcm-ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 169, 98, 0.2);
    color: var(--fcm-accent);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.fcm-ai-section h2 {
    color: #fff;
    font-size: 2.4rem;
    margin-bottom: 20px;
}

.fcm-ai-section p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.fcm-ai-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fcm-ai-features li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.9);
}

.fcm-ai-features li:last-child {
    border-bottom: none;
}

.fcm-ai-features li svg {
    flex-shrink: 0;
    color: var(--fcm-accent);
    margin-top: 3px;
}

/* AI Chat Demo */
.fcm-ai-chat-demo {
    background: var(--fcm-surface);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.fcm-ai-chat-header {
    background: var(--fcm-bg-alt);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--fcm-border);
}

.fcm-ai-chat-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--fcm-accent) 0%, var(--fcm-accent-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fcm-ai-chat-avatar svg {
    color: var(--fcm-primary);
}

.fcm-ai-chat-header span {
    font-weight: 600;
    color: var(--fcm-primary);
}

.fcm-ai-chat-user {
    padding: 20px;
    background: var(--fcm-bg);
    margin: 15px;
    border-radius: 12px;
}

.fcm-ai-chat-user p {
    margin: 0;
    color: var(--fcm-text);
    font-style: italic;
}

.fcm-ai-chat-response {
    padding: 20px;
    margin: 15px;
}

.fcm-ai-chat-response p {
    margin: 0 0 12px;
    color: var(--fcm-text);
    font-size: 0.95rem;
}

.fcm-ai-chat-response p:last-child {
    margin-bottom: 0;
}

/* =====================
   PRICING SECTION
   ===================== */
.fcm-pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: stretch;
}

.fcm-pricing-card {
    background: var(--fcm-surface);
    border-radius: 20px;
    padding: 50px 45px 45px;
    box-shadow: 0 4px 25px rgba(61, 54, 41, 0.08);
    border: 2px solid var(--fcm-border);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    overflow: visible;
    height: 100%;
}

.fcm-pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(61, 54, 41, 0.15);
}

.fcm-pricing-card.featured {
    border-color: var(--fcm-accent);
    box-shadow: 0 8px 35px rgba(201, 169, 98, 0.2);
}

.fcm-pricing-card.featured:hover {
    box-shadow: 0 18px 55px rgba(201, 169, 98, 0.25);
}

/* Badge - centrato sopra la card */
.fcm-pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%) !important;
    background: linear-gradient(135deg, var(--fcm-success) 0%, #5a7a4e 100%);
    color: #fff;
    padding: 8px 22px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 25px;
    box-shadow: 0 4px 12px rgba(107, 142, 94, 0.4);
    white-space: nowrap;
    z-index: 10;
}

.fcm-pricing-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--fcm-border);
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fcm-pricing-header h3 {
    font-family: var(--fcm-font-heading);
    font-size: 1.6rem;
    color: var(--fcm-primary);
    margin: 0 0 25px;
    font-weight: 600;
}

/* Prezzo */
.fcm-pricing-price {
    font-family: var(--fcm-font-heading);
    font-weight: 700;
    color: var(--fcm-primary);
    line-height: 1;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

.fcm-pricing-price .currency {
    font-size: 2rem;
    font-weight: 600;
}

.fcm-pricing-price .amount {
    font-size: 4.5rem;
}

.fcm-pricing-price .cents {
    font-size: 2rem;
    font-weight: 600;
}

.fcm-pricing-price.free {
    color: var(--fcm-success);
    font-size: 3.5rem;
    display: block;
}

.fcm-pricing-period {
    color: var(--fcm-text-muted);
    font-size: 1rem;
    margin-top: 12px;
}

.fcm-pricing-annual {
    background: var(--fcm-bg-alt);
    border-radius: 10px;
    padding: 14px 20px;
    margin-top: 18px;
    font-size: 0.95rem;
    color: var(--fcm-text);
}

.fcm-pricing-annual strong {
    color: var(--fcm-accent);
    font-weight: 700;
}

/* Features list */
.fcm-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 35px;
    flex: 1 1 auto;
}

.fcm-pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 13px 0;
    font-size: 1.05rem;
    color: var(--fcm-text);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.fcm-pricing-features li:last-child {
    border-bottom: none;
}

.fcm-pricing-features li svg {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    color: var(--fcm-success);
    margin-top: 2px;
}

.fcm-pricing-features li.disabled {
    color: var(--fcm-text-muted);
}

.fcm-pricing-features li.disabled span {
    text-decoration: line-through;
}

.fcm-pricing-features li.disabled svg {
    color: #ccc;
}

/* CTA - sempre allineate in fondo */
.fcm-pricing-cta {
    text-align: center;
    margin-top: auto;
    padding-top: 20px;
    flex-shrink: 0;
}

.fcm-pricing-cta .fcm-btn-primary,
.fcm-pricing-cta .fcm-btn-secondary-outline {
    width: 100%;
    justify-content: center;
    padding: 18px 32px;
    font-size: 1.1rem;
    border-radius: 12px;
}

.fcm-btn-secondary-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 32px;
    background: transparent;
    border: 2px solid var(--fcm-primary);
    color: var(--fcm-primary);
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.fcm-btn-secondary-outline:hover {
    background: var(--fcm-primary);
    color: #fff;
}

.fcm-pricing-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--fcm-text-muted);
    margin-top: 15px;
    min-height: 24px;
}

.fcm-paypal-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--fcm-text-muted);
    min-height: 24px;
}

.fcm-paypal-badge img {
    height: 20px;
    opacity: 0.7;
}

/* =====================
   HOW IT WORKS
   ===================== */
.fcm-steps {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.fcm-step {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
    position: relative;
}

.fcm-step::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -30px;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--fcm-accent), transparent);
}

.fcm-step:last-child::after {
    display: none;
}

.fcm-step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--fcm-accent) 0%, var(--fcm-accent-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: var(--fcm-font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--fcm-primary);
}

.fcm-step h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

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

/* =====================
   TESTIMONIALS
   ===================== */
.fcm-testimonial {
    background: var(--fcm-surface);
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 4px 20px rgba(61, 54, 41, 0.08);
}

.fcm-testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--fcm-text);
    margin-bottom: 25px;
    position: relative;
    padding-left: 30px;
}

.fcm-testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 4rem;
    color: var(--fcm-accent);
    font-family: var(--fcm-font-heading);
    line-height: 1;
}

.fcm-testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.fcm-testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--fcm-bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--fcm-font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--fcm-primary);
}

.fcm-testimonial-name {
    font-weight: 600;
    color: var(--fcm-primary);
}

.fcm-testimonial-role {
    font-size: 0.85rem;
    color: var(--fcm-text-muted);
}

/* =====================
   CTA SECTION
   ===================== */
.fcm-cta-section {
    background: linear-gradient(135deg, var(--fcm-primary) 0%, var(--fcm-primary-light) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.fcm-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(201,169,98,0.08)"/></svg>') repeat;
    background-size: 20px 20px;
}

.fcm-cta-content {
    position: relative;
    z-index: 1;
}

.fcm-cta-section h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.fcm-cta-section p {
    color: rgba(255,255,255,0.8);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* =====================
   FOOTER
   ===================== */
.fcm-footer {
    background: var(--fcm-primary-dark);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 30px;
}

.fcm-footer-logo {
    font-family: var(--fcm-font-heading);
    font-size: 1.5rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 15px;
}

.fcm-footer-logo span {
    color: var(--fcm-accent);
}

.fcm-footer-desc {
    font-size: 0.95rem;
    margin-bottom: 20px;
    max-width: 300px;
}

.fcm-footer h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 20px;
    font-family: var(--fcm-font-body);
    font-weight: 600;
}

.fcm-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fcm-footer-links li {
    margin-bottom: 10px;
}

.fcm-footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

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

.fcm-footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fcm-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.fcm-footer-contact svg {
    flex-shrink: 0;
    color: var(--fcm-accent);
    margin-top: 3px;
}

.fcm-footer-bottom {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.fcm-footer-copyright {
    font-size: 0.85rem;
}

.fcm-footer-legal {
    display: flex;
    gap: 25px;
}

.fcm-footer-legal a {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
}

.fcm-footer-legal a:hover {
    color: var(--fcm-accent);
}

/* =====================
   PAGE HEADER (Internal Pages)
   ===================== */
.fcm-page-header {
    background: linear-gradient(135deg, var(--fcm-primary) 0%, var(--fcm-primary-light) 100%);
    padding: 140px 0 60px;
    text-align: center;
}

.fcm-page-header h1 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.fcm-page-header p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
}

.fcm-page-content {
    padding: 60px 0;
}

.fcm-page-content h2 {
    margin-top: 40px;
    margin-bottom: 15px;
}

.fcm-page-content h3 {
    margin-top: 30px;
    margin-bottom: 12px;
}

.fcm-page-content ul, 
.fcm-page-content ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.fcm-page-content li {
    margin-bottom: 8px;
}

/* =====================
   COOKIE BANNER
   ===================== */
.fcm-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--fcm-primary);
    color: #fff;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -5px 30px rgba(0,0,0,0.2);
    display: none;
}

.fcm-cookie-banner.show {
    display: block;
}

.fcm-cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.fcm-cookie-text {
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.6;
}

.fcm-cookie-text a {
    color: var(--fcm-accent);
}

.fcm-cookie-buttons {
    display: flex;
    gap: 15px;
}

.fcm-cookie-btn {
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.fcm-cookie-btn-accept {
    background: var(--fcm-accent);
    color: var(--fcm-primary);
}

.fcm-cookie-btn-accept:hover {
    background: var(--fcm-accent-light);
}

.fcm-cookie-btn-settings {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
}

.fcm-cookie-btn-settings:hover {
    border-color: rgba(255,255,255,0.5);
}

/* =====================
   RESPONSIVE
   ===================== */

/* Tablet */
@media (max-width: 1024px) {
    :root {
        --fcm-section-padding: 60px;
    }
    
    .fcm-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .fcm-hero h1 {
        font-size: 2.5rem;
    }
    
    .fcm-step::after {
        display: none;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --fcm-section-padding: 50px;
    }
    
    h1, .uk-h1 { font-size: 2rem; }
    h2, .uk-h2 { font-size: 1.7rem; }
    
    .fcm-hero {
        min-height: auto;
        padding: 120px 0 80px;
    }
    
    .fcm-hero h1 {
        font-size: 2rem;
    }
    
    .fcm-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .fcm-hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .fcm-btn-primary,
    .fcm-btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .fcm-hero-stats {
        gap: 30px;
    }
    
    .fcm-hero-stat-value {
        font-size: 2rem;
    }
    
    .fcm-features-grid {
        grid-template-columns: 1fr;
    }
    
    .fcm-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .fcm-footer-legal {
        justify-content: center;
    }
    
    .fcm-cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .fcm-cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

/* Pricing mobile - breakpoint separato più basso */
@media (max-width: 700px) {
    .fcm-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        gap: 30px;
    }
    
    .fcm-pricing-card {
        padding: 40px 30px 35px;
    }
    
    .fcm-pricing-header {
        min-height: auto;
    }
    
    .fcm-pricing-price .amount {
        font-size: 3.5rem;
    }
    
    .fcm-pricing-price .currency,
    .fcm-pricing-price .cents {
        font-size: 1.5rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .fcm-navbar-public .uk-logo {
        font-size: 1.3rem;
    }
    
    .fcm-hero h1 {
        font-size: 1.75rem;
    }
    
    .fcm-section-header h2 {
        font-size: 1.5rem;
    }
    
    .fcm-ai-section h2 {
        font-size: 1.7rem;
    }
    
    .fcm-cta-section h2 {
        font-size: 1.7rem;
    }
}

/* =====================
   ANIMATIONS
   ===================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fcm-animate {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.fcm-animate-delay-1 { animation-delay: 0.1s; }
.fcm-animate-delay-2 { animation-delay: 0.2s; }
.fcm-animate-delay-3 { animation-delay: 0.3s; }
.fcm-animate-delay-4 { animation-delay: 0.4s; }
