* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #FAFBFC;
    color: #202124;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Scroll offset for sticky navbar - applies to all sections with IDs */
section[id] {
    scroll-margin-top: 80px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navbar */
.navbar {
    background: white;
    border-bottom: 1px solid #DADCE0;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #202124;
}

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

.logo-text {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #202124;
}

.logo-text strong {
    font-weight: 800;
}

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #5F6368;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link:hover {
    color: #1967D2;
}

.nav-link .arrow {
    font-size: 8px;
    margin-left: 3px;
    opacity: 0.7;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 7px 14px;
    border: 1px solid #DADCE0;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    color: #5F6368;
}

.language-selector:hover {
    border-color: #BDC1C6;
    background: #F8F9FA;
}

.btn-text {
    text-decoration: none;
    color: #5F6368;
    font-size: 15px;
    font-weight: 600;
    padding: 7px 14px;
    transition: color 0.2s;
}

.btn-text:hover {
    color: #1967D2;
}

.btn-primary {
    background: #FCC419;
    color: #000;
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-primary:hover {
    background: #FAB005;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(252, 196, 25, 0.3);
}

/* Trust Bar */
.trust-bar {
    background: #0F1419;
    padding: 12px 0;
}

.trust-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.9);
    font-size: 14px;
}

.trust-item svg {
    color: #10B981;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.trust-item strong {
    color: white;
    font-weight: 700;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 50%, #e0f2fe 100%);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

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

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.hero-title {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.1;
    color: #0f172a;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 18px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 32px;
}

/* Search Card */
.search-card {
    background: white;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
    overflow: hidden;
}

.alert {
    padding: 14px 18px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-size: 14px;
}

.alert-error {
    background: #FEF2F2;
    color: #DC2626;
    border-left: 4px solid #DC2626;
}

/* Tabs */
.tabs {
    display: flex;
    gap: 8px;
    background: #F1F3F4;
    padding: 5px;
    border-radius: 10px;
    margin-bottom: 24px;
}

.tab {
    flex: 1;
    background: transparent;
    border: none;
    padding: 11px 18px;
    font-size: 13px;
    font-weight: 700;
    color: #5F6368;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.tab.active {
    background: white;
    color: #1967D2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.tab svg {
    width: 14px;
    height: 14px;
}

/* Search Form */
.search-wrapper {
    display: flex;
    align-items: stretch;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.flag-box {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
    background: #F8F9FA;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.flag-box img {
    display: block;
}

.search-input {
    flex: 1 1 200px;
    min-width: 0;
    padding: 14px 18px;
    border: 1px solid #DADCE0;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 400;
    font-family: inherit;
    transition: all 0.2s;
    text-transform: uppercase;
    color: #202124;
}

.search-input:focus {
    outline: none;
    border-color: #1967D2;
    box-shadow: 0 0 0 4px rgba(25, 103, 210, 0.12);
}

.search-input::placeholder {
    color: #80868B;
    text-transform: none;
}

.btn-search {
    background: #FCC419;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    color: #000;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-search:hover {
    background: #FAB005;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(252, 196, 25, 0.4);
}

.btn-search svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

/* Privacy Consent Checkbox */
.privacy-consent {
    margin-top: 16px;
    text-align: left;
}

.consent-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    position: relative;
    padding-left: 32px;
}

.consent-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.consent-label .checkmark {
    position: absolute;
    left: 0;
    top: 2px;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 2px solid #DADCE0;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.consent-label:hover .checkmark {
    border-color: #FCC419;
}

.consent-label input:checked ~ .checkmark {
    background-color: #FCC419;
    border-color: #FCC419;
}

.consent-label .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid #000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.consent-label input:checked ~ .checkmark:after {
    display: block;
}

.consent-label.error .checkmark {
    border-color: #EF4444;
    background-color: #FEF2F2;
}

.consent-text {
    font-size: 13px;
    color: #5F6368;
    line-height: 1.5;
}

.consent-text a {
    color: #3B82F6;
    text-decoration: underline;
    font-weight: 500;
}

.consent-text a:hover {
    color: #2563EB;
}

.consent-error {
    display: none;
    font-size: 12px;
    color: #EF4444;
    margin-top: 8px;
    padding-left: 32px;
}

.consent-error.show {
    display: block;
}

/* Search Hints */
.search-hints {
    display: flex;
    justify-content: flex-start;
    gap: 24px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.hint-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #5F6368;
}

.hint-item svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

/* Hero Checks */
.hero-checks {
    margin-top: 60px;
}

.checks-label {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    text-align: center;
}

.checks-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
}

.check-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding: 20px 12px;
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    min-height: 110px;
}

.check-item:hover {
    background: white;
    transform: translateY(-3px);
}

.check-item svg {
    flex-shrink: 0;
    height: 24px;
}

.check-item span {
    font-size: 13px;
    color: #334155;
    font-weight: 500;
    text-align: center;
    line-height: 1.3;
}

/* Colori distintivi per ogni check item */
.check-km svg { color: #10b981; }
.check-km:hover { border-color: #10b981; box-shadow: 0 8px 20px rgba(16, 185, 129, 0.15); }

.check-furto svg { color: #6366f1; }
.check-furto:hover { border-color: #6366f1; box-shadow: 0 8px 20px rgba(99, 102, 241, 0.15); }

.check-incidenti svg { color: #ef4444; }
.check-incidenti:hover { border-color: #ef4444; box-shadow: 0 8px 20px rgba(239, 68, 68, 0.15); }

.check-revisioni svg { color: #f59e0b; }
.check-revisioni:hover { border-color: #f59e0b; box-shadow: 0 8px 20px rgba(245, 158, 11, 0.15); }

.check-valore svg { color: #3b82f6; }
.check-valore:hover { border-color: #3b82f6; box-shadow: 0 8px 20px rgba(59, 130, 246, 0.15); }

.check-dati svg { color: #8b5cf6; }
.check-dati:hover { border-color: #8b5cf6; box-shadow: 0 8px 20px rgba(139, 92, 246, 0.15); }

.vin-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #1967D2;
    font-size: 14px;
    text-decoration: none;
    margin-bottom: 24px;
    font-weight: 500;
}

.vin-link:hover {
    text-decoration: underline;
}

/* Vehicle Types */
.vehicle-types {
    border-top: 1px solid #E8EAED;
    padding-top: 24px;
    margin-top: 24px;
}

.verify-label {
    font-size: 14px;
    color: #5F6368;
    margin-bottom: 14px;
    font-weight: 500;
}

.vehicle-icons {
    display: flex;
    gap: 12px;
}

.vehicle-icon {
    width: 48px;
    height: 48px;
    background: #F1F3F4;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5F6368;
    transition: all 0.2s;
    cursor: pointer;
}

.vehicle-icon:hover {
    background: #E8EAED;
    color: #202124;
}

/* Section Common Styles */
.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #0F1419;
    text-align: center;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 18px;
    color: #5F6368;
    text-align: center;
    margin-bottom: 48px;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: #F8F9FA;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.step-card {
    background: white;
    padding: 40px 32px;
    border-radius: 16px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: #3B82F6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.step-icon {
    color: #3B82F6;
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #0F1419;
    margin-bottom: 12px;
}

.step-card p {
    font-size: 15px;
    color: #5F6368;
    line-height: 1.6;
}

/* Pricing Section - New Style */
.pricing {
    padding: 80px 0;
    background: #2563EB;
}

.section-title-light {
    font-size: 36px;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 16px;
}

.highlight-yellow {
    color: #FFFFFF;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.section-subtitle-light {
    font-size: 18px;
    color: rgba(255,255,255,1);
    text-align: center;
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.pricing-card-new {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pricing-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Best Value Card - Green Theme */
.pricing-card-new.best-value {
    border-color: #10B981;
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.2);
}

.pricing-card-new.best-value:hover {
    box-shadow: 0 20px 50px rgba(16, 185, 129, 0.35);
}

/* Featured Card - Blue Theme */
.pricing-card-new.featured {
    border-color: #1E3A8A;
    box-shadow: 0 12px 40px rgba(30, 58, 138, 0.25);
    transform: scale(1.05);
}

.pricing-card-new.featured:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 25px 60px rgba(30, 58, 138, 0.4);
}

/* Basic Card - Yellow Theme */
.pricing-card-new.basic {
    border-color: #F59E0B;
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.15);
}

.pricing-card-new.basic:hover {
    box-shadow: 0 20px 50px rgba(245, 158, 11, 0.3);
}

.pricing-badge-new {
    color: white;
    text-align: center;
    padding: 12px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-green {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

.badge-blue {
    background: linear-gradient(135deg, #1E3A8A 0%, #1E40AF 100%);
}

.pricing-card-header {
    padding: 24px 24px 0;
}

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.icon-green {
    background: linear-gradient(135deg, #D1FAE5 0%, #A7F3D0 100%);
    color: #059669;
}

.icon-blue {
    background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
    color: #1E40AF;
}

.icon-yellow {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    color: #D97706;
}

.pricing-card-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0F1419;
    margin-bottom: 4px;
}

.pricing-card-desc {
    font-size: 14px;
    color: #6B7280;
    margin: 0;
}

.pricing-card-body {
    padding: 24px;
    flex: 1;
}

.price-main {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 12px;
}

.price-amount {
    font-size: 42px;
    font-weight: 800;
    color: #0F1419;
}

.price-suffix {
    font-size: 18px;
    color: #6B7280;
    font-weight: 500;
}

.price-total {
    font-size: 15px;
    color: #374151;
    margin-bottom: 16px;
}

.price-total strong {
    color: #0F1419;
}

.price-original-inline {
    color: #B91C1C;
    text-decoration: line-through;
    margin-left: 4px;
}

.discount-tag {
    display: inline-block;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

.tag-green {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

.tag-blue {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
}

.discount-tag.discount-zero {
    background: #9CA3AF;
}

.credits-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #6B7280;
    padding-top: 16px;
    border-top: 1px solid #E5E7EB;
}

.credits-info svg {
    color: #3B82F6;
}

.btn-pricing-new {
    display: block;
    margin: 0 24px 24px;
    padding: 16px 24px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    transition: all 0.2s;
}

.btn-green {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
}

.btn-green:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}

.btn-blue {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    color: white;
}

.btn-blue:hover {
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

.btn-yellow {
    background: linear-gradient(135deg, #FCC419 0%, #F59E0B 100%);
    color: #000;
}

.btn-yellow:hover {
    background: linear-gradient(135deg, #FAB005 0%, #D97706 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(252, 196, 25, 0.4);
}

/* Business Section */
.business {
    padding: 80px 0;
    background: linear-gradient(135deg, #1E3A5F 0%, #0F1419 100%);
    color: white;
}

.business-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.business .section-title {
    text-align: left;
    color: white;
}

.business-description {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
}

.business-features {
    list-style: none;
    margin-bottom: 32px;
}

.business-features li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    font-size: 16px;
}

.business-features li svg {
    flex-shrink: 0;
}

.btn-business {
    display: inline-block;
    padding: 16px 32px;
    background: #FCC419;
    color: #000;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.2s;
}

.btn-business:hover {
    background: #FAB005;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(252, 196, 25, 0.4);
}

.business-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.stat-item {
    background: rgba(255,255,255,0.1);
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: #FCC419;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #F8F9FA;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: #0F1419;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
}

.faq-question:hover {
    background: #F8F9FA;
}

.faq-arrow {
    transition: transform 0.3s ease;
    color: #5F6368;
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 15px;
    color: #5F6368;
    line-height: 1.7;
}

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-content p {
    font-size: 17px;
    color: #3D4852;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-content strong {
    color: #0F1419;
}

.about-values {
    display: grid;
    gap: 20px;
}

.value-card {
    background: #F8F9FA;
    padding: 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.value-card svg {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
}

.value-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #0F1419;
    margin: 0;
    white-space: nowrap;
}

.value-card p {
    font-size: 14px;
    color: #5F6368;
    margin: 0;
}

.value-card-content {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

/* Footer */
.footer {
    background: #0F1419;
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand .logo-text {
    color: white;
}

.footer-description {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    color: white;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.footer-contact a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

/* Navbar scrolled state */
.navbar.scrolled {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 992px) {
    .nav-menu {
        display: none;
    }

    .nav-actions .btn-primary {
        padding: 8px 16px;
        font-size: 13px;
    }

    .trust-items {
        gap: 24px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-image {
        order: -1;
    }

    .search-card {
        max-width: 500px;
        margin: 0 auto;
    }

    .search-wrapper {
        flex-direction: column;
    }

    .flag-box {
        justify-content: center;
    }

    .search-hints {
        justify-content: center;
    }

    .hero-image img {
        max-width: 80%;
    }

    .search-hints {
        justify-content: center;
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .checks-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Pricing section mobile - rimuove padding laterale */
    .pricing .container {
        padding: 0 12px;
    }

    .pricing-grid-new {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: none;
        margin: 0;
        gap: 12px;
    }

    /* Mobile pricing cards - Compact but informative */
    .pricing-card-new {
        display: flex;
        flex-direction: column;
        padding: 0;
        border-radius: 10px;
        overflow: hidden;
        width: 100%;
    }

    .pricing-card-new.featured,
    .pricing-card-new.featured:hover {
        transform: none;
    }

    /* Badge compatto in alto */
    .pricing-badge-new {
        padding: 6px 12px;
        font-size: 10px;
        letter-spacing: 0.5px;
    }

    /* Nascondo solo icona e descrizione lunga */
    .pricing-card-header .card-icon {
        display: none;
    }

    .pricing-card-desc {
        display: none;
    }

    /* Header con titolo */
    .pricing-card-header {
        padding: 14px 14px 4px;
    }

    .pricing-card-header h3 {
        font-size: 15px;
        font-weight: 700;
        margin: 0;
    }

    /* Body con prezzi */
    .pricing-card-body {
        padding: 8px 14px 14px;
        display: block;
    }

    /* Riga 1: Prezzo + sconto inline */
    .price-main {
        display: inline-flex;
        align-items: baseline;
        gap: 2px;
        margin: 0 8px 0 0;
    }

    .price-main .price-amount {
        font-size: 22px;
        font-weight: 800;
    }

    .price-main .price-suffix {
        display: inline;
        font-size: 11px;
        color: #6B7280;
    }

    .discount-tag {
        display: inline-block;
        padding: 3px 8px;
        font-size: 11px;
        margin: 0;
        border-radius: 4px;
        vertical-align: middle;
    }

    /* Riga 2: Prezzo totale */
    .price-total {
        display: block;
        font-size: 12px;
        color: #374151;
        margin: 6px 0 0 0;
    }

    /* Riga 3: Sconto + Crediti inline */
    .credits-info {
        display: inline-flex;
        align-items: center;
        font-size: 11px;
        color: #6B7280;
        padding: 0;
        margin: 8px 0 0 0;
        gap: 4px;
        border-top: none;
    }

    .credits-info svg {
        width: 12px;
        height: 12px;
    }

    /* Bottone full width */
    .btn-pricing-new {
        display: block;
        width: calc(100% - 28px);
        margin: 0 14px 14px;
        padding: 10px 16px;
        font-size: 13px;
        font-weight: 700;
        border-radius: 8px;
        text-align: center;
    }

    .btn-pricing-new .btn-price {
        display: inline;
        font-weight: 600;
    }

    .section-title-light {
        font-size: 28px;
    }

    .section-subtitle-light {
        font-size: 16px;
    }

    .business-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .trust-items {
        flex-direction: column;
        gap: 12px;
    }

    .trust-item {
        font-size: 13px;
    }

    .hero {
        padding: 50px 0 70px;
    }

    .hero-image img {
        max-width: 100%;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .search-wrapper {
        flex-direction: column;
    }

    .flag-box {
        justify-content: center;
    }

    .search-hints {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }

    .privacy-consent {
        margin-top: 12px;
    }

    .consent-text {
        font-size: 12px;
    }

    .checks-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .check-item {
        padding: 16px 10px;
    }

    .check-item span {
        font-size: 12px;
    }

    .language-selector,
    .btn-text {
        display: none;
    }

    .nav-actions .btn-primary {
        padding: 6px 12px;
        font-size: 12px;
        border-radius: 6px;
    }

    /* Compact pricing for small screens */
    .pricing .container {
        padding: 0 10px;
    }

    .pricing-grid-new {
        gap: 10px;
    }

    .pricing-badge-new {
        padding: 5px 10px;
        font-size: 9px;
    }

    .pricing-card-header {
        padding: 12px 12px 4px;
    }

    .pricing-card-header h3 {
        font-size: 14px;
    }

    .pricing-card-body {
        padding: 6px 12px 12px;
    }

    .price-main .price-amount {
        font-size: 20px;
    }

    .price-main .price-suffix {
        font-size: 10px;
    }

    .price-total {
        font-size: 11px;
        margin-top: 4px;
    }

    .discount-tag {
        padding: 2px 6px;
        font-size: 10px;
    }

    .credits-info {
        font-size: 10px;
        margin-top: 6px;
    }

    .btn-pricing-new {
        width: calc(100% - 24px);
        margin: 0 12px 12px;
        padding: 9px 14px;
        font-size: 12px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .step-card {
        padding: 32px 24px;
    }

    .price .amount {
        font-size: 44px;
    }

    .business .section-title {
        text-align: center;
    }

    .btn-business {
        display: block;
        text-align: center;
    }

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

    .footer-brand .logo {
        justify-content: center;
    }

    .footer-contact li {
        justify-content: center;
    }
}
