/* ============================================
   IKIshop — Sito vetrina
   ============================================ */

/* --- Custom Properties --- */
:root {
    --accent: #FFCC33;
    --accent-hover: #e6b800;
    --dark: #333333;
    --darker: #222222;
    --light: #ffffff;
    --bg: #ffffff;
    --bg-alt: #f8f8f8;
    --text: #333333;
    --text-light: #666666;
    --text-muted: #999999;
    --border: #e5e5e5;
    --radius: 8px;
    --radius-lg: 12px;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.1);
    --transition: 0.3s ease;
    --transition-slow: 0.6s ease;
    --font-body: 'Poppins', sans-serif;
    --font-heading: 'Hanken Grotesk', sans-serif;
    --nav-height: 72px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

h1 {
    font-weight: 800;
    font-size: 2.75rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.125rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
}

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

.text-muted-custom {
    color: var(--text-muted);
}

/* --- Focus States (Accessibilità) --- */
:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}

/* --- Navbar --- */
.navbar {
    padding: 0.75rem 0;
    transition: background-color var(--transition), box-shadow var(--transition);
    min-height: var(--nav-height);
    background-color: var(--light);
}

.navbar.scrolled {
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.08);
}

.navbar-brand img {
    height: 32px;
    width: auto;
}

.navbar .nav-link {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--dark);
    padding: 0.5rem 1rem;
    transition: color var(--transition);
    position: relative;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--darker);
}

.navbar .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background-color: var(--accent);
    border-radius: 1px;
}

/* Dropdown menu */
.navbar .dropdown-menu {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    padding: 0.5rem 0;
    margin-top: 0.25rem;
    min-width: 220px;
}

.navbar .dropdown-item {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text);
    padding: 0.5rem 1.25rem;
    transition: background-color var(--transition), color var(--transition);
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
    background-color: var(--bg-alt);
    color: var(--dark);
}

.navbar .dropdown-item.active {
    background-color: var(--bg-alt);
    color: var(--dark);
    font-weight: 500;
}

.navbar .dropdown-toggle::after {
    margin-left: 0.35rem;
    vertical-align: 0.15em;
    border-top-width: 0.25em;
    border-right-width: 0.25em;
    border-left-width: 0.25em;
}

/* Hero navbar dropdown */
.navbar-hero .dropdown-menu {
    background: var(--light);
}

.navbar-hero .dropdown-item {
    color: var(--text);
}

.navbar-toggler {
    border: none;
    padding: 0.25rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Navbar trasparente sulla hero (home) */
.navbar-hero {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    background-color: transparent;
}

.navbar-hero .nav-link {
    color: var(--light);
}

.navbar-hero .nav-link:hover,
.navbar-hero .nav-link.active {
    color: var(--light);
    opacity: 0.8;
}

.navbar-hero .nav-link.active::after {
    background-color: var(--accent);
}

.navbar-hero .navbar-brand img {
    filter: brightness(0) invert(1);
}

.navbar-hero.scrolled {
    position: fixed;
    background-color: var(--light);
}

.navbar-hero.scrolled .nav-link {
    color: var(--dark);
}

.navbar-hero.scrolled .nav-link:hover,
.navbar-hero.scrolled .nav-link.active {
    color: var(--darker);
    opacity: 1;
}

.navbar-hero.scrolled .navbar-brand img {
    filter: none;
}

/* --- Buttons --- */
.btn {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.65rem 1.75rem;
    border-radius: var(--radius);
    transition: all var(--transition);
    border: 2px solid transparent;
}

.btn-accent {
    background-color: var(--accent);
    color: var(--darker);
    border-color: var(--accent);
}

.btn-accent:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    color: var(--darker);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 204, 51, 0.3);
}

.btn-outline-dark {
    background-color: transparent;
    color: var(--dark);
    border-color: var(--dark);
}

.btn-outline-dark:hover {
    background-color: var(--dark);
    color: var(--light);
    transform: translateY(-1px);
}

.btn-outline-light {
    background-color: transparent;
    color: var(--light);
    border-color: var(--light);
}

.btn-outline-light:hover {
    background-color: var(--light);
    color: var(--dark);
    transform: translateY(-1px);
}

.btn-lg {
    padding: 0.8rem 2.25rem;
    font-size: 1rem;
}

/* Navbar CTA */
.btn-nav-cta {
    padding: 0.45rem 1.25rem;
    font-size: 0.85rem;
}

/* --- Sections --- */
section {
    padding: 5rem 0;
}

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

.section-dark {
    background-color: var(--darker);
    color: var(--light);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: var(--light);
}

.section-header {
    margin-bottom: 3.5rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    max-width: 600px;
}

.section-header.text-center p {
    margin-left: auto;
    margin-right: auto;
}

/* --- Video Hero --- */
.hero-video {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.hero-video__media {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-video__media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Fallback gradient quando non c'è video */
.hero-video__fallback {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #1a1a1a 0%, #333 100%);
}

video + .hero-video__fallback {
    display: none;
}

.hero-video__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 2;
}

.hero-video__content {
    position: relative;
    z-index: 3;
    padding-bottom: 2rem;
    max-width: 700px;
}

.hero-video__claim {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 3.5rem;
    line-height: 1.1;
    color: var(--light);
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.hero-video__sub {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-video__scroll {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: rgba(255, 255, 255, 0.5);
    animation: scrollBounce 2s ease infinite;
    text-decoration: none;
}

.hero-video__scroll svg {
    width: 24px;
    height: 24px;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* --- Page Hero (pagine interne) --- */
.page-hero {
    padding: calc(var(--nav-height) + 3rem) 0 3rem;
    background-color: var(--bg-alt);
}

.page-hero h1 {
    margin-bottom: 0.75rem;
}

.page-hero .lead {
    max-width: 600px;
}

/* --- Cards --- */
.card-iki {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition);
    height: 100%;
}

.card-iki:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.card-iki__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.25rem;
    color: var(--accent);
}

.card-iki__icon svg {
    width: 100%;
    height: 100%;
}

.card-iki__title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.card-iki__text {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Card pilastro (versione accent border top) */
.card-pillar {
    border-top: 3px solid var(--accent);
}

/* --- Feature Grid --- */
.feature-card {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: all var(--transition);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.feature-card__icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
    color: var(--accent);
}

.feature-card__icon svg {
    width: 100%;
    height: 100%;
}

.feature-card__title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.feature-card__text {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.6;
}

.feature-card__link {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 0.825rem;
    font-weight: 500;
    color: var(--dark);
    text-decoration: none;
    transition: color var(--transition);
}

.feature-card__link:hover {
    color: var(--accent-hover);
}

/* --- Admin Mockup --- */
.admin-mockup {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.admin-mockup__bar {
    background: var(--bg-alt);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid var(--border);
}

.admin-mockup__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
}

.admin-mockup__dot:first-child { background: #ff5f57; }
.admin-mockup__dot:nth-child(2) { background: #febc2e; }
.admin-mockup__dot:nth-child(3) { background: #28c840; }

.admin-mockup__body {
    display: flex;
    min-height: 280px;
}

.admin-mockup__sidebar {
    width: 180px;
    background: var(--bg-alt);
    border-right: 1px solid var(--border);
    padding: 1rem 0;
    flex-shrink: 0;
}

.admin-mockup__sidebar-item {
    padding: 0.5rem 1.25rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.admin-mockup__sidebar-item.active {
    color: var(--dark);
    background: var(--light);
    font-weight: 500;
    border-left: 3px solid var(--accent);
    padding-left: calc(1.25rem - 3px);
}

.admin-mockup__content {
    flex: 1;
    padding: 1.25rem;
}

.admin-mockup__table {
    width: 100%;
    font-size: 0.8rem;
}

.admin-mockup__table th {
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.5rem 0.75rem;
    border-bottom: 1px solid var(--border);
}

.admin-mockup__table td {
    padding: 0.65rem 0.75rem;
    border-bottom: 1px solid var(--border);
    color: var(--text);
}

.admin-mockup__badge {
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-weight: 500;
}

.admin-mockup__badge--success {
    background: #e8f5e9;
    color: #2e7d32;
}

.admin-mockup__badge--warning {
    background: #fff8e1;
    color: #f57f17;
}

.admin-mockup__badge--info {
    background: #e3f2fd;
    color: #1565c0;
}

/* Mockup form fields */
.admin-mockup__field {
    margin-bottom: 0.75rem;
}

.admin-mockup__label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
    display: block;
}

.admin-mockup__input {
    width: 100%;
    padding: 0.4rem 0.65rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 0.8rem;
    background: var(--bg-alt);
    color: var(--text);
}

/* --- Step Flow --- */
.step-flow {
    display: flex;
    align-items: flex-start;
    gap: 0;
    position: relative;
}

.step-flow__item {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 1rem;
}

.step-flow__number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--darker);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    position: relative;
    z-index: 2;
}

.step-flow__item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(50% + 28px);
    right: calc(-50% + 28px);
    height: 2px;
    background: var(--border);
    z-index: 1;
}

.step-flow__title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.step-flow__text {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* --- Pillar Section (Perché) --- */
.pillar-section {
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--border);
}

.pillar-section:last-child {
    border-bottom: none;
}

.pillar-number {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 3rem;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}

/* --- FAQ Accordion --- */
.faq-accordion .accordion-item {
    border: none;
    border-bottom: 1px solid var(--border);
    background: transparent;
}

.faq-accordion .accordion-item:last-child {
    border-bottom: none;
}

.faq-accordion .accordion-button {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--dark);
    background: transparent;
    padding: 1.25rem 0;
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--dark);
    background: transparent;
}

.faq-accordion .accordion-button::after {
    width: 1rem;
    height: 1rem;
    background-size: 1rem;
}

.faq-accordion .accordion-body {
    padding: 0 0 1.25rem;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* --- CTA Banner --- */
.cta-banner {
    background: var(--darker);
    color: var(--light);
    padding: 4rem 0;
    text-align: center;
}

.cta-banner h2 {
    color: var(--light);
    margin-bottom: 1rem;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Contact Form --- */
.form-iki .form-control,
.form-iki .form-select {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.65rem 1rem;
    font-size: 0.9rem;
    font-family: var(--font-body);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-iki .form-control:focus,
.form-iki .form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(255, 204, 51, 0.15);
}

.form-iki .form-label {
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--dark);
    margin-bottom: 0.35rem;
}

.form-iki .form-text {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.form-iki .form-check-label {
    font-size: 0.85rem;
    color: var(--text-light);
}

.form-iki .form-check-input:checked {
    background-color: var(--accent);
    border-color: var(--accent);
}

/* Contact info block */
.contact-info {
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.contact-info__item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-info__item:last-child {
    margin-bottom: 0;
}

.contact-info__icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    color: var(--accent);
}

.contact-info__icon svg {
    width: 100%;
    height: 100%;
}

/* Form success message */
.form-success {
    display: none;
    text-align: center;
    padding: 3rem 2rem;
}

.form-success.show {
    display: block;
}

.form-success__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    color: #28c840;
}

/* --- Target Badges --- */
.target-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark);
}

/* --- Footer --- */
.footer {
    background-color: var(--darker);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 0;
}

.footer h5 {
    color: var(--light);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1.25rem;
}

.footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--transition);
    font-size: 0.9rem;
}

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

.footer__logo img {
    height: 28px;
    filter: brightness(0) invert(1);
    margin-bottom: 1rem;
}

.footer__tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    max-width: 280px;
}

.footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__links li {
    margin-bottom: 0.5rem;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    margin-top: 3rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

/* --- Animations --- */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays for grouped elements */
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* --- Responsive --- */

/* Mobile (< 768px) */
@media (max-width: 767.98px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    section {
        padding: 3.5rem 0;
    }

    /* Video Hero mobile */
    .hero-video__content {
        padding-bottom: 3rem;
        text-align: center;
        max-width: 100%;
    }

    .hero-video__claim {
        font-size: 2.25rem;
    }

    .hero-video__sub {
        font-size: 1rem;
    }

    .hero-video__cta {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

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

    /* Admin mockup responsive */
    .admin-mockup__sidebar {
        display: none;
    }

    .admin-mockup__body {
        min-height: 200px;
    }

    /* Step flow stacked */
    .step-flow {
        flex-direction: column;
        gap: 2rem;
    }

    .step-flow__item:not(:last-child)::after {
        display: none;
    }

    .step-flow__item {
        text-align: left;
        display: flex;
        gap: 1rem;
        align-items: flex-start;
        padding: 0;
    }

    .step-flow__number {
        margin: 0;
        flex-shrink: 0;
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }

    /* Highlight grid stacked */
    .highlight-grid {
        grid-template-columns: 1fr;
    }

    .highlight-box {
        text-align: left;
        display: flex;
        gap: 1.25rem;
        align-items: flex-start;
        padding: 1.5rem;
    }

    .highlight-box__icon {
        margin: 0;
        flex-shrink: 0;
        width: 40px;
        height: 40px;
    }

    /* Feature table mobile */
    .feature-table__row td:first-child {
        font-size: 0.875rem;
    }

    .feature-table__row td:last-child {
        width: 60px;
    }

    .feature-table__check {
        width: 24px;
        height: 24px;
    }

    .feature-table__check svg {
        width: 14px;
        height: 14px;
    }

    /* CTA Banner */
    .cta-banner {
        padding: 3rem 0;
    }

    /* Footer */
    .footer {
        text-align: center;
    }

    .footer__tagline {
        margin-left: auto;
        margin-right: auto;
    }

    /* Pillar number */
    .pillar-number {
        font-size: 2.25rem;
    }
}

/* Tablet (768px - 991px) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .hero-video__claim {
        font-size: 2.75rem;
    }

    .hero-video__content {
        padding-bottom: 3.5rem;
    }

    .admin-mockup__sidebar {
        width: 140px;
    }

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

/* Desktop large */
@media (min-width: 1200px) {
    .hero-video__claim {
        font-size: 4rem;
    }

    h1 {
        font-size: 3rem;
    }
}

/* --- Highlight Boxes (Caratteristiche top) --- */
.highlight-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.highlight-box {
    background: var(--light);
    border: 1px solid var(--border);
    border-top: 3px solid var(--accent);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    text-align: center;
    transition: all var(--transition);
}

.highlight-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
    border-top-color: var(--accent);
}

.highlight-box__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1.25rem;
    color: var(--accent);
}

.highlight-box__icon svg {
    width: 100%;
    height: 100%;
}

.highlight-box__title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.highlight-box__text {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.6;
}

/* --- Feature Table (Caratteristiche complete) --- */
.feature-table {
    width: 100%;
    border-collapse: collapse;
}

.feature-table__group-header td {
    background: var(--bg-alt);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--dark);
    padding: 0.75rem 1.25rem;
    border-bottom: 1px solid var(--border);
}

.feature-table__row td {
    padding: 0.75rem 1.25rem;
    border-bottom: 1px solid var(--border);
    font-size: 0.925rem;
    color: var(--text);
}

.feature-table__row:last-child td {
    border-bottom: none;
}

.feature-table__row td:last-child {
    text-align: center;
    width: 80px;
}

.feature-table__check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #e8f5e9;
    border-radius: 50%;
    color: #2e7d32;
}

.feature-table__check svg {
    width: 16px;
    height: 16px;
}

.feature-table-wrapper {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.feature-table-wrapper + .feature-table-wrapper {
    margin-top: 1.5rem;
}

/* --- Utility --- */
.mb-6 {
    margin-bottom: 4rem;
}

.pt-nav {
    padding-top: var(--nav-height);
}

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

/* Smooth scroll offset for anchors */
[id] {
    scroll-margin-top: calc(var(--nav-height) + 1rem);
}
