/* ===========================================================
   Scadenzario.cloud — Landing shared styles
   Used by: index.php, alternativa-excel-scadenze.php,
            scadenzario-vs-google-calendar.php, ...
   =========================================================== */

:root {
    --primary: #1B3A5C;
    --primary-light: #2A5580;
    --accent: #4A9BD9;
    --accent-light: #7BB9E8;
    --green: #059669;
    --red: #DC2626;
    --amber: #D97706;
    --bg: #ffffff;
    --bg-soft: #f7faFD;
    --text: #1f2937;
    --text-soft: #6b7280;
    --border: #e5e7eb;
}

* { -webkit-font-smoothing: antialiased; }
html { scroll-behavior: smooth; }
body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
}
h1, h2, h3, h4, h5 { font-family: 'Plus Jakarta Sans', sans-serif; letter-spacing: -0.02em; }
a { text-decoration: none; }

/* ====== Navbar ====== */
.navbar-landing {
    background: rgba(255,255,255,0.85);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}
.navbar-landing.scrolled { box-shadow: 0 4px 20px rgba(27,58,92,0.08); }
.navbar-landing .btn-ghost {
    color: var(--primary);
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 10px;
    transition: all 0.2s;
    text-decoration: none;
}
.navbar-landing .btn-ghost:hover { background: rgba(74,155,217,0.08); text-decoration: none; }
.btn-cta {
    background: var(--primary);
    color: #fff !important;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 10px;
    transition: all 0.2s;
    border: none;
    text-decoration: none;
}
.btn-cta:hover, .btn-primary-lg:hover, .btn-secondary-lg:hover, .btn-price:hover { text-decoration: none; }
.btn-primary-lg, .btn-secondary-lg, .btn-price { text-decoration: none; }
.btn-cta:hover {
    background: var(--primary-light);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(27,58,92,0.25);
}

/* ====== Hero ====== */
.hero {
    position: relative;
    padding: 120px 0 80px;
    background:
        radial-gradient(ellipse at 10% 0%, rgba(74,155,217,0.12), transparent 50%),
        radial-gradient(ellipse at 90% 20%, rgba(27,58,92,0.08), transparent 50%),
        #fff;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(27,58,92,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(27,58,92,0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at center, #000 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 70%);
    pointer-events: none;
}
.hero > * { position: relative; z-index: 1; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(74,155,217,0.1);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(74,155,217,0.2);
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(5,150,105,0.15); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.2); opacity: 0.7; } }

.hero h1 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.08;
    color: var(--primary);
    margin: 20px 0 20px;
}
.hero h1 .gradient {
    background: linear-gradient(135deg, #4A9BD9, #1B3A5C);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero .lead {
    font-size: clamp(16px, 2vw, 19px);
    color: var(--text-soft);
    max-width: 520px;
    line-height: 1.6;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.btn-primary-lg {
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 16px;
    border: none;
    transition: all 0.25s;
    box-shadow: 0 4px 14px rgba(27,58,92,0.25);
}
.btn-primary-lg:hover {
    background: var(--primary-light);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(27,58,92,0.35);
}
.btn-secondary-lg {
    background: #fff;
    color: var(--primary);
    font-weight: 600;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 16px;
    border: 1.5px solid var(--border);
    transition: all 0.25s;
}
.btn-secondary-lg:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

.hero-meta {
    display: flex;
    gap: 24px;
    margin-top: 28px;
    font-size: 14px;
    color: var(--text-soft);
    flex-wrap: wrap;
}
.hero-meta span { display: inline-flex; align-items: center; gap: 6px; }
.hero-meta i { color: var(--green); }

/* Hero mockup */
.hero-mockup-wrap {
    position: relative;
    perspective: 1500px;
}
.hero-mockup {
    position: relative;
    transform: rotateY(-6deg) rotateX(4deg);
    transform-style: preserve-3d;
    transition: transform 0.5s;
}
.hero-mockup:hover { transform: rotateY(0deg) rotateX(0deg); }
.hero-mockup .carousel-item img {
    width: 100%;
    border-radius: 16px;
    box-shadow:
        0 40px 80px -20px rgba(27,58,92,0.35),
        0 12px 28px -8px rgba(27,58,92,0.2);
    border: 1px solid rgba(255,255,255,0.5);
}
.hero-mockup-static img {
    width: 100%;
    border-radius: 16px;
    box-shadow:
        0 40px 80px -20px rgba(27,58,92,0.35),
        0 12px 28px -8px rgba(27,58,92,0.2);
    border: 1px solid rgba(255,255,255,0.5);
}
.hero-float {
    position: absolute;
    background: #fff;
    border-radius: 14px;
    padding: 12px 16px;
    box-shadow: 0 12px 32px rgba(27,58,92,0.18);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    animation: floaty 4s ease-in-out infinite;
}
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.hero-float.f1 { top: 12%; left: -6%; animation-delay: 0s; }
.hero-float.f2 { bottom: 18%; right: -4%; animation-delay: 1.5s; }
.hero-float .icon { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 16px; }
@media (max-width: 991px) {
    .hero-mockup { transform: none; }
    .hero-float { display: none; }
}

.carousel-indicators-custom {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}
.carousel-indicators-custom button {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(27,58,92,0.25);
    border: none;
    transition: all 0.25s;
    padding: 0;
}
.carousel-indicators-custom button.active { background: var(--primary); width: 28px; border-radius: 4px; }

/* ====== Sections ====== */
section { padding: 100px 0; position: relative; }
.section-eyebrow {
    display: inline-block;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: 14px;
}
.section-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: var(--primary);
    line-height: 1.15;
    margin-bottom: 16px;
}
.section-subtitle {
    font-size: 17px;
    color: var(--text-soft);
    max-width: 620px;
    line-height: 1.6;
}
.section-alt { background: var(--bg-soft); }

/* ====== Problem cards ====== */
.problem-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    border: 1px solid var(--border);
    height: 100%;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.problem-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient, linear-gradient(90deg, var(--accent), var(--primary)));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}
.problem-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -15px rgba(27,58,92,0.15);
    border-color: transparent;
}
.problem-card:hover::after { transform: scaleX(1); }
.problem-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}
.problem-card h5 { font-weight: 700; color: var(--primary); margin-bottom: 10px; font-size: 19px; }
.problem-card p { color: var(--text-soft); font-size: 15px; line-height: 1.6; margin: 0; }

/* ====== Feature split ====== */
.feature-split { padding: 70px 0; }
.feature-visual {
    background: linear-gradient(135deg, #f0f7ff 0%, #e0efff 100%);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature-visual img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px -10px rgba(27,58,92,0.25);
}
.feature-visual::before {
    content: '';
    position: absolute;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(74,155,217,0.2), transparent 70%);
    top: -50px; right: -50px;
}
.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(74,155,217,0.1);
    color: var(--accent);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}
.feature-split h3 {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
    line-height: 1.2;
}
.feature-split p {
    color: var(--text-soft);
    font-size: 16px;
    line-height: 1.7;
}
.feature-list { list-style: none; padding: 0; margin: 20px 0 0; }
.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    color: var(--text);
}
.feature-list li i {
    color: var(--green);
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ====== Settori ====== */
.sector-card {
    background: #fff;
    border-radius: 18px;
    padding: 28px 24px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s;
    height: 100%;
}
.sector-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px -15px rgba(74,155,217,0.25);
}
.sector-card .icon-wrap {
    width: 72px; height: 72px;
    margin: 0 auto 18px;
    border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    font-size: 32px;
    background: linear-gradient(135deg, #e0efff, #f0f7ff);
    color: var(--primary);
    transition: all 0.3s;
}
.sector-card:hover .icon-wrap {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    transform: rotate(-6deg) scale(1.05);
}
.sector-card h6 { font-weight: 700; color: var(--primary); margin-bottom: 8px; font-size: 17px; }
.sector-card p { font-size: 14px; color: var(--text-soft); margin: 0; line-height: 1.5; }

/* ====== Steps ====== */
.step-row { position: relative; }
.step-row::before {
    content: '';
    position: absolute;
    top: 40px; left: 15%; right: 15%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--border) 0 8px, transparent 8px 16px);
    z-index: 0;
}
@media (max-width: 768px) { .step-row::before { display: none; } }
.step-item { position: relative; z-index: 1; }
.step-number {
    width: 80px; height: 80px;
    margin: 0 auto 20px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    font-weight: 800;
    font-size: 28px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 12px 28px rgba(74,155,217,0.35);
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.step-item h5 { font-weight: 700; color: var(--primary); font-size: 19px; }
.step-item p { color: var(--text-soft); font-size: 15px; }

/* ====== Pricing ====== */
.pricing-wrap { max-width: 1100px; margin: 0 auto; }
.pricing-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 30px;
    border: 1.5px solid var(--border);
    height: 100%;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -15px rgba(27,58,92,0.12); }
.pricing-card.popular {
    border-color: var(--accent);
    background: linear-gradient(180deg, #fff 0%, #f7faFD 100%);
    position: relative;
    transform: scale(1.02);
}
.pricing-card.popular:hover { transform: scale(1.02) translateY(-4px); }
.pricing-card.popular::before {
    content: '★ Più scelto';
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    padding: 6px 18px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    box-shadow: 0 4px 14px rgba(74,155,217,0.35);
}
.pricing-card h4 { font-weight: 800; color: var(--primary); font-size: 22px; }
.pricing-price { font-size: 44px; font-weight: 800; color: var(--primary); line-height: 1; font-family: 'Plus Jakarta Sans', sans-serif; }
.pricing-price span { font-size: 15px; font-weight: 500; color: var(--text-soft); }
.pricing-features { list-style: none; padding: 0; text-align: left; flex-grow: 1; }
.pricing-features li { padding: 10px 0; font-size: 14.5px; display: flex; align-items: flex-start; gap: 10px; }
.pricing-features li i { color: var(--green); font-size: 17px; flex-shrink: 0; margin-top: 2px; }
.pricing-features li.muted { color: #9ca3af; }
.pricing-features li.muted i { color: #d1d5db; }
.btn-price {
    width: 100%;
    padding: 13px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.2s;
    border: 1.5px solid var(--primary);
    background: transparent;
    color: var(--primary);
}
.btn-price:hover { background: var(--primary); color: #fff; }
.btn-price.primary { background: var(--primary); color: #fff; }
.btn-price.primary:hover { background: var(--primary-light); border-color: var(--primary-light); }

/* ====== FAQ ====== */
.faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.2s;
}
.faq-item:hover { border-color: var(--accent); }
.faq-item .accordion-button {
    background: transparent !important;
    box-shadow: none !important;
    font-weight: 600;
    color: var(--primary);
    padding: 20px 24px;
    font-size: 16px;
}
.faq-item .accordion-button:not(.collapsed) { color: var(--accent); }
.faq-item .accordion-body { padding: 0 24px 20px; color: var(--text-soft); line-height: 1.7; font-size: 15px; }

/* ====== CTA ====== */
.cta-final {
    background: linear-gradient(135deg, var(--primary) 0%, #2A5580 50%, var(--accent) 100%);
    color: #fff;
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.08), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,0.06), transparent 40%);
    pointer-events: none;
}
.cta-final > * { position: relative; }
.cta-final h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; }
.cta-final .btn {
    background: #fff;
    color: var(--primary);
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 16px;
    border: none;
    transition: all 0.2s;
}
.cta-final .btn:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,0.25); }

/* ====== Footer ====== */
.footer-landing {
    background: #0f1f33;
    color: rgba(255,255,255,0.65);
    padding: 60px 0 30px;
}
.footer-landing a { color: rgba(255,255,255,0.65); text-decoration: none; transition: color 0.2s; }
.footer-landing a:hover { color: #fff; }
.footer-landing h6 { color: #fff; font-weight: 700; margin-bottom: 18px; font-size: 15px; letter-spacing: 0.02em; }
.footer-landing ul { list-style: none; padding: 0; font-size: 14px; }
.footer-landing ul li { padding: 6px 0; }

/* ===========================================================
   EXTENSIONS: comparison pages (Excel, Google Calendar, ...)
   =========================================================== */

/* Breadcrumb */
.breadcrumb-landing {
    padding-top: 110px;
    font-size: 14px;
    color: var(--text-soft);
}
.breadcrumb-landing a { color: var(--text-soft); }
.breadcrumb-landing a:hover { color: var(--accent); }
.breadcrumb-landing .sep { margin: 0 8px; opacity: 0.5; }
.breadcrumb-landing .current { color: var(--primary); font-weight: 600; }

/* Compact hero (used by comparison pages) */
.hero-compact {
    position: relative;
    padding: 30px 0 70px;
    background:
        radial-gradient(ellipse at 10% 0%, rgba(74,155,217,0.1), transparent 50%),
        radial-gradient(ellipse at 90% 20%, rgba(27,58,92,0.06), transparent 50%),
        #fff;
    overflow: hidden;
}
.hero-compact h1 {
    font-size: clamp(30px, 4.5vw, 48px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--primary);
    margin: 16px 0 18px;
}
.hero-compact h1 .gradient {
    background: linear-gradient(135deg, #4A9BD9, #1B3A5C);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero-compact .lead {
    font-size: clamp(16px, 2vw, 19px);
    color: var(--text-soft);
    max-width: 640px;
    line-height: 1.65;
}

/* Honest box — "when X is enough" */
.honest-box {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-left: 4px solid var(--green);
    border-radius: 14px;
    padding: 24px 28px;
}
.honest-box h4 {
    color: #065f46;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.honest-box ul { margin: 0; padding-left: 20px; color: #065f46; }
.honest-box ul li { padding: 4px 0; font-size: 15px; line-height: 1.6; }

.warning-box {
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-left: 4px solid var(--amber);
    border-radius: 14px;
    padding: 24px 28px;
}
.warning-box h4 {
    color: #92400e;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.warning-box ul { margin: 0; padding-left: 20px; color: #92400e; }
.warning-box ul li { padding: 4px 0; font-size: 15px; line-height: 1.6; }

/* Signals / pain points list */
.signal-item {
    display: flex;
    gap: 18px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.25s;
    height: 100%;
}
.signal-item:hover {
    border-color: var(--accent);
    box-shadow: 0 12px 28px -12px rgba(27,58,92,0.15);
    transform: translateY(-3px);
}
.signal-item .num {
    flex-shrink: 0;
    width: 44px; height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800;
    font-size: 18px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.signal-item h5 { font-weight: 700; color: var(--primary); font-size: 17px; margin-bottom: 6px; }
.signal-item p { color: var(--text-soft); font-size: 14.5px; margin: 0; line-height: 1.6; }

/* Comparison table */
.compare-table-wrap {
    background: #fff;
    border-radius: 20px;
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: 0 12px 32px -16px rgba(27,58,92,0.12);
}
.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}
.compare-table thead th {
    background: linear-gradient(135deg, #f7faFD, #eef5fb);
    color: var(--primary);
    font-weight: 700;
    padding: 18px 20px;
    text-align: left;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    border-bottom: 2px solid var(--border);
}
.compare-table thead th.us {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    position: relative;
}
.compare-table thead th.us::before {
    content: '★';
    position: absolute;
    top: 8px; right: 10px;
    font-size: 11px;
    opacity: 0.7;
}
.compare-table tbody td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
}
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody tr:hover { background: #fafcfe; }
.compare-table .criterion {
    font-weight: 600;
    color: var(--primary);
    width: 30%;
}
.compare-table .yes { color: var(--green); font-weight: 600; }
.compare-table .no { color: #9ca3af; }
.compare-table .partial { color: var(--amber); }
.compare-table .yes i, .compare-table .no i, .compare-table .partial i { margin-right: 6px; }
@media (max-width: 768px) {
    .compare-table, .compare-table thead, .compare-table tbody, .compare-table tr, .compare-table th, .compare-table td {
        display: block;
    }
    .compare-table thead { display: none; }
    .compare-table tbody tr {
        padding: 16px;
        border-bottom: 1px solid var(--border);
    }
    .compare-table tbody td {
        padding: 6px 0;
        border: none;
    }
    .compare-table .criterion {
        width: auto;
        font-size: 16px;
        color: var(--primary);
        margin-bottom: 4px;
    }
    .compare-table td::before {
        content: attr(data-label);
        display: inline-block;
        min-width: 130px;
        font-weight: 600;
        color: var(--text-soft);
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 0.04em;
    }
    .compare-table .criterion::before { display: none; }
}

/* Content prose blocks on comparison pages */
.prose-block { max-width: 760px; margin: 0 auto; }
.prose-block p { font-size: 16px; line-height: 1.75; color: var(--text); margin-bottom: 18px; }
.prose-block p.lead-p { font-size: 18px; color: var(--text-soft); }
.prose-block h3 {
    font-size: clamp(22px, 2.8vw, 28px);
    font-weight: 800;
    color: var(--primary);
    margin: 36px 0 14px;
}
.prose-block ul { padding-left: 22px; }
.prose-block ul li { padding: 6px 0; line-height: 1.65; }
.prose-block blockquote {
    border-left: 4px solid var(--accent);
    background: #f7faFD;
    padding: 18px 24px;
    margin: 24px 0;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: var(--primary);
}

/* ====== Responsive tweaks ====== */
@media (max-width: 768px) {
    .hero { padding: 80px 0 40px; }
    .hero-compact { padding: 20px 0 50px; }
    section { padding: 60px 0; }
    .feature-split { padding: 40px 0; }
    .pricing-card.popular { transform: none; }
    .pricing-card.popular:hover { transform: translateY(-4px); }
    .hero-ctas .btn-primary-lg, .hero-ctas .btn-secondary-lg { width: 100%; text-align: center; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; }
    .hero-mockup { transform: none; }
}
