/*
Theme Name: TaxTool
Theme URI: https://taxtool.it
Author: TaxTool
Author URI: https://taxtool.it
Description: Tema professionale per servizi fiscali e contabili TaxTool. Include sezioni per Regime Forfettario, Contabilità Semplificata, Medici e Successioni con sistema di acquisto multi-step integrato.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: taxtool
Tags: business, professional, tax, accounting, one-page
*/

/* ROOT VARIABLES */
:root {
    --primary-color: #5B9BD5;
    --primary-dark: #4A7FB8;
    --primary-light: #e8f2fc;
    --primary-lighter: #f5f9ff;
    --secondary-color: #4CAF50;
    --secondary-dark: #388E3C;
    --secondary-light: #e8f5e9;
    --text-dark: #333333;
    --text-medium: #666666;
    --text-light: #888888;
    --text-lighter: #aaaaaa;
    --bg-white: #ffffff;
    --bg-light: #f9f9f9;
    --bg-lighter: #fdfdfd;
    --border-color: #e5e5e5;
    --border-light: #f0f0f0;
    --shadow-light: rgba(0, 0, 0, 0.05);
    --shadow-medium: rgba(0, 0, 0, 0.08);
    --shadow-strong: rgba(0, 0, 0, 0.1);
    --gradient-primary: linear-gradient(135deg, #5B9BD5 0%, #4A7FB8 100%);
    --gradient-light: linear-gradient(135deg, #f5f9fc 0%, #ffffff 100%);
    --gradient-success: linear-gradient(135deg, #4CAF50 0%, #388E3C 100%);
    --error-color: #dc3545;
    --warning-color: #f4b942;
    --success-color: #28a745;
    --featured-color: #ff6b6b;
}

/* RESET & BASE STYLES */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

/* WORDPRESS ADMIN BAR OFFSET */
.admin-bar .taxtool-site-header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar .taxtool-site-header {
        top: 46px;
    }
}

/* HEADER */
.taxtool-site-header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 3px 15px var(--shadow-light);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.98);
}

.taxtool-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.taxtool-site-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: transform 0.3s;
}

.taxtool-site-logo:hover {
    transform: translateY(-2px);
}

.taxtool-logo-icon {
    width: 50px;
    height: 50px;
}

.taxtool-logo-text {
    font-size: 30px;
    font-weight: 300;
    color: var(--primary-color);
    letter-spacing: 1.5px;
}

.taxtool-site-navigation {
    display: flex;
    gap: 40px;
    list-style: none;
}

.taxtool-site-navigation a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s;
    padding: 8px 0;
    position: relative;
}

.taxtool-site-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

.taxtool-site-navigation a:hover::after {
    width: 100%;
}

.taxtool-site-navigation a:hover {
    color: var(--primary-color);
}

.taxtool-mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
}

.taxtool-mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: 0.3s;
}

/* HERO SECTION */
.taxtool-hero-section {
    background: var(--gradient-light);
    padding: 120px 30px 100px;
    text-align: center;
    border-bottom: 1px solid var(--border-light);
}

.taxtool-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.taxtool-hero-title {
    font-size: 52px;
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.2;
}

.taxtool-hero-subtitle {
    font-size: 22px;
    color: var(--text-medium);
    margin-bottom: 50px;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.taxtool-hero-buttons {
    margin-top: 50px;
}

/* BUTTONS */
.taxtool-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 40px;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s;
    margin: 0 10px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(91, 155, 213, 0.2);
}

.taxtool-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(91, 155, 213, 0.3);
    color: white;
    text-decoration: none;
}

.taxtool-button-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    box-shadow: none;
}

.taxtool-button-outline:hover {
    background: var(--primary-color);
    color: white;
}

.taxtool-button-featured {
    background: var(--gradient-success);
    border: none;
    font-weight: 600;
    font-size: 17px;
    padding: 18px 45px;
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.25);
    color: white;
}

.taxtool-button-featured:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(76, 175, 80, 0.35);
    color: white;
}

/* CONTENT SECTIONS */
.taxtool-content-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 30px;
}

.taxtool-section-header {
    text-align: center;
    margin-bottom: 70px;
}

.taxtool-section-title {
    font-size: 42px;
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.taxtool-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.taxtool-section-description {
    font-size: 19px;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
}

/* SERVICE BOXES */
.taxtool-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.taxtool-service-box {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    padding: 45px 35px;
    text-align: center;
    transition: all 0.3s;
    border-radius: 12px;
    box-shadow: 0 5px 20px var(--shadow-light);
}

.taxtool-service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-medium);
}

.taxtool-service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 30px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.taxtool-service-icon svg {
    width: 35px;
    height: 35px;
    fill: var(--primary-color);
}

.taxtool-service-title {
    font-size: 24px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.taxtool-service-text {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 25px;
}

/* PRICING CONTAINER */
.taxtool-pricing-container {
    display: grid;
    gap: 70px;
    margin-top: 60px;
}

.taxtool-pricing-section {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 10px 40px var(--shadow-light);
    transition: transform 0.3s;
    position: relative;
}

.taxtool-pricing-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px var(--shadow-medium);
}

.taxtool-pricing-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-light);
}

.taxtool-pricing-title {
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 400;
}

.taxtool-pricing-subtitle {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 8px;
}

/* BADGE */
.taxtool-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.taxtool-badge-success {
    background: var(--secondary-color);
}

/* PRICE MAIN */
.taxtool-price-main {
    text-align: center;
    margin: 40px 0;
    padding: 30px;
    background: var(--primary-lighter);
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

.taxtool-price-amount {
    font-size: 58px;
    font-weight: 300;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 10px;
}

.taxtool-price-period {
    font-size: 20px;
    color: var(--text-medium);
    margin-left: 5px;
}

.taxtool-all-inclusive {
    display: inline-block;
    background: var(--secondary-light);
    color: var(--secondary-color);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 15px;
}

/* FEATURES GRID */
.taxtool-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.taxtool-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: var(--bg-lighter);
    border-radius: 10px;
    border: 1px solid var(--border-light);
    transition: all 0.3s;
}

.taxtool-feature-item:hover {
    background: var(--bg-white);
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.taxtool-feature-icon {
    width: 24px;
    height: 24px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 14px;
    margin-top: 2px;
}

.taxtool-feature-text {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.6;
}

.taxtool-feature-text strong {
    color: var(--primary-color);
}

/* CONDITIONS BOX */
.taxtool-conditions-box {
    background: var(--bg-lighter);
    border: 1px solid var(--border-light);
    padding: 30px;
    margin: 40px 0;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.taxtool-conditions-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-size: 18px;
}

.taxtool-conditions-title::before {
    content: '📋';
    font-size: 20px;
    color: var(--primary-color);
}

.taxtool-conditions-list {
    list-style: none;
}

.taxtool-conditions-list li {
    padding: 12px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-dark);
}

.taxtool-conditions-list li:last-child {
    border-bottom: none;
}

.taxtool-conditions-list li::before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    flex-shrink: 0;
    font-size: 20px;
    margin-top: -2px;
}

/* NOTE BOX */
.taxtool-note-box {
    background: #fffbf0;
    border-left: 4px solid var(--warning-color);
    padding: 20px 25px;
    margin: 40px 0;
    font-size: 14px;
    color: #665c3e;
    border-radius: 0 5px 5px 0;
}

/* SUCCESSIONI BOX */
.taxtool-successioni-box {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 60px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 10px 40px var(--shadow-light);
    border-left: 5px solid var(--primary-color);
}

.taxtool-successioni-title {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 500;
}

.taxtool-successioni-content {
    font-size: 17px;
    color: var(--text-dark);
    line-height: 1.8;
}

.taxtool-successioni-content p {
    margin-bottom: 20px;
}

.taxtool-successioni-cta {
    margin-top: 40px;
    text-align: center;
}

/* PURCHASE MODAL */
.taxtool-purchase-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 2000;
    padding: 20px;
}

.taxtool-purchase-container {
    background: white;
    border-radius: 10px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.taxtool-purchase-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-light);
    z-index: 10;
    line-height: 1;
    padding: 5px 10px;
    transition: color 0.3s;
}

.taxtool-purchase-close:hover {
    color: var(--text-dark);
}

.taxtool-purchase-content {
    padding: 40px;
}

.taxtool-flow-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.taxtool-flow-steps::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--border-color);
    z-index: 1;
}

.taxtool-step {
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.taxtool-step-number {
    width: 50px;
    height: 50px;
    background: var(--border-color);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    margin: 0 auto 10px;
    transition: all 0.3s;
}

.taxtool-step.active .taxtool-step-number {
    background: var(--primary-color);
    color: white;
}

.taxtool-step.completed .taxtool-step-number {
    background: var(--success-color);
    color: white;
}

.taxtool-step-title {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
}

.taxtool-step.active .taxtool-step-title {
    color: var(--primary-color);
    font-weight: 600;
}

.taxtool-purchase-form {
    max-width: 600px;
    margin: 0 auto;
}

.taxtool-form-step {
    display: none;
}

.taxtool-form-step.active {
    display: block;
}

.taxtool-form-group {
    margin-bottom: 25px;
}

.taxtool-form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.taxtool-form-label .required {
    color: var(--error-color);
}

.taxtool-form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 15px;
    transition: border-color 0.3s;
    font-family: inherit;
}

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

.taxtool-form-input.error {
    border-color: var(--error-color);
}

.taxtool-error-message {
    color: var(--error-color);
    font-size: 13px;
    margin-top: 5px;
    display: none;
}

.taxtool-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.taxtool-payment-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    margin: 30px 0;
    border-left: 4px solid var(--primary-color);
}

.taxtool-payment-info h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 16px;
}

.taxtool-payment-info ul {
    list-style: none;
    padding-left: 0;
}

.taxtool-payment-info li {
    padding: 5px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-dark);
}

.taxtool-payment-info li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
}

.taxtool-success-box {
    text-align: center;
    padding: 40px;
    background: #f0f9ff;
    border-radius: 8px;
    margin-top: 30px;
}

.taxtool-success-icon {
    font-size: 48px;
    color: var(--success-color);
    margin-bottom: 20px;
}

.taxtool-success-title {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.taxtool-info-box {
    background: #fffbf0;
    border-left: 4px solid var(--warning-color);
    padding: 20px 25px;
    margin: 40px 0;
    font-size: 14px;
    color: #665c3e;
    border-radius: 0 5px 5px 0;
}

/* FOOTER */
.taxtool-site-footer {
    background: #2c3e50;
    color: white;
    padding: 60px 30px 40px;
    text-align: center;
    margin-top: 100px;
}

.taxtool-footer-text {
    font-size: 15px;
    opacity: 0.8;
}

.taxtool-footer-text a {
    color: white;
    text-decoration: underline;
}

/* UTILITY CLASSES */
.taxtool-text-center { text-align: center; }
.taxtool-mt-40 { margin-top: 40px; }
.taxtool-mb-40 { margin-bottom: 40px; }
.taxtool-hidden { display: none; }
.taxtool-visible { display: block; }
.taxtool-d-block { display: block; }
.taxtool-d-none { display: none; }

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

.taxtool-fade-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* LOADER */
.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* SECTION BACKGROUNDS */
.taxtool-section-bg-light {
    background: var(--bg-light);
}

.taxtool-full-width-section {
    width: 100%;
}

.taxtool-full-width-section .taxtool-content-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 30px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
    .taxtool-content-section {
        padding: 80px 30px;
    }
}

@media (max-width: 992px) {
    .taxtool-hero-title {
        font-size: 42px;
    }

    .taxtool-section-title {
        font-size: 36px;
    }

    .taxtool-pricing-section {
        padding: 40px 30px;
    }

    .taxtool-successioni-box {
        padding: 40px 30px;
    }

    .taxtool-form-row {
        grid-template-columns: 1fr;
    }

    .taxtool-flow-steps {
        flex-direction: column;
        gap: 30px;
    }

    .taxtool-flow-steps::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .taxtool-site-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 20px var(--shadow-medium);
        gap: 0;
    }

    .taxtool-site-navigation.active {
        display: flex;
    }

    .taxtool-site-navigation li a {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid var(--border-light);
    }

    .taxtool-mobile-menu-toggle {
        display: flex;
    }

    .taxtool-header-container {
        position: relative;
    }

    .taxtool-button {
        display: block;
        margin: 15px auto;
        width: 90%;
        max-width: 300px;
    }

    .taxtool-services-grid {
        grid-template-columns: 1fr;
    }

    .taxtool-pricing-section {
        padding: 30px 20px;
    }

    .taxtool-price-amount {
        font-size: 48px;
    }

    .taxtool-features-grid {
        grid-template-columns: 1fr;
    }

    .taxtool-successioni-box {
        padding: 30px 20px;
    }

    .taxtool-successioni-title {
        font-size: 24px;
    }

    .taxtool-purchase-content {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .taxtool-hero-title {
        font-size: 28px;
    }

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

    .taxtool-section-title {
        font-size: 26px;
    }

    .taxtool-content-section {
        padding: 60px 15px;
    }

    .taxtool-header-container {
        padding: 0 15px;
    }

    .taxtool-pricing-title {
        font-size: 26px;
    }

    .taxtool-successioni-title {
        font-size: 22px;
    }

    .taxtool-successioni-content {
        font-size: 16px;
    }

    .taxtool-hero-section {
        padding: 80px 20px 60px;
    }

    .taxtool-price-amount {
        font-size: 40px;
    }

    .taxtool-button {
        padding: 14px 25px;
        font-size: 15px;
    }
}
/* =====================================================
   CTA CONSULENZA - HOME
   ===================================================== */

.taxtool-consulenza {
    width: calc(100% - 48px) !important;
    max-width: 1120px !important;
    margin: 100px auto 90px !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

.taxtool-consulenza__inner {
    position: relative !important;
    max-width: 900px !important;
    margin-left: auto !important;
    margin-right: 0 !important;
    padding: 58px 64px !important;
    overflow: hidden !important;
    background: linear-gradient(135deg, #eef6fc 0%, #f8fbfe 100%) !important;
    border: 1px solid #cfe2f3 !important;
    border-radius: 18px !important;
    box-shadow: 0 18px 45px rgba(28, 83, 125, 0.12) !important;
    box-sizing: border-box !important;
}

.taxtool-consulenza__inner::before {
    position: absolute !important;
    top: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 7px !important;
    background: #5b9bd5 !important;
    content: "" !important;
}

.taxtool-consulenza__eyebrow {
    display: block !important;
    margin: 0 0 15px !important;
    color: #397dbb !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    letter-spacing: 0.14em !important;
    line-height: 1.3 !important;
    text-transform: uppercase !important;
}

.taxtool-consulenza h2 {
    margin: 0 0 16px !important;
    color: #17324a !important;
    font-size: clamp(30px, 3.4vw, 44px) !important;
    font-weight: 700 !important;
    line-height: 1.12 !important;
}

.taxtool-consulenza p {
    max-width: 650px !important;
    margin: 0 0 30px !important;
    color: #4f6170 !important;
    font-size: 17px !important;
    line-height: 1.7 !important;
}

.taxtool-consulenza a.taxtool-consulenza__button,
.taxtool-consulenza .taxtool-consulenza__button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 48px !important;
    padding: 14px 24px !important;
    background: #5b9bd5 !important;
    border: 1px solid #5b9bd5 !important;
    border-radius: 7px !important;
    box-shadow: none !important;
    color: #ffffff !important;
    font-family: inherit !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    text-decoration: none !important;
    transition: background-color .2s ease, border-color .2s ease, transform .2s ease !important;
}

.taxtool-consulenza a.taxtool-consulenza__button:hover {
    background: #397dbb !important;
    border-color: #397dbb !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
}

@media (max-width: 767px) {
    .taxtool-consulenza {
        width: calc(100% - 40px) !important;
        margin: 64px auto !important;
    }

    .taxtool-consulenza__inner {
        padding: 38px 30px !important;
    }

    .taxtool-consulenza h2 {
        font-size: 30px !important;
    }

    .taxtool-consulenza a.taxtool-consulenza__button {
        width: 100% !important;
    }
}