/* ==========================================
   Reset e Base Styles
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colori Caldi e Accoglienti */
    --primary-color: #ff6b35;
    --primary-dark: #e85a2a;
    --secondary-color: #f7931e;
    --accent-color: #ffb84d;
    --warm-red: #dc3545;

    /* Colori Neutri */
    --text-dark: #2d3436;
    --text-light: #636e72;
    --bg-light: #fff8f3;
    --bg-white: #ffffff;
    --border-color: #faddd1;

    /* Tipografia */
    --font-heading: "Poppins", sans-serif;
    --font-body: "Open Sans", sans-serif;

    /* Spacing */
    --section-padding: 80px 20px;
    --container-max-width: 1200px;

    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(255, 107, 53, 0.1);
    --shadow-medium: 0 8px 30px rgba(255, 107, 53, 0.15);
    --shadow-strong: 0 12px 40px rgba(255, 107, 53, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--bg-white);
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================
   Header & Navigation
   ========================================== */
.header {
    background: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.logo-icon {
    height: 2.5rem;
    width: auto;
    object-fit: contain;
}

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

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-cta {
    background: linear-gradient(
        135deg,
        var(--primary-color),
        var(--secondary-color)
    );
    color: var(--bg-white) !important;
    padding: 10px 25px;
    border-radius: 25px;
    box-shadow: var(--shadow-soft);
    transition:
        transform 0.3s,
        box-shadow 0.3s;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* ==========================================
   Hero Section
   ========================================== */
.hero {
    background: linear-gradient(135deg, #fff8f3 0%, #ffe8d9 100%);
    padding: 100px 20px 80px;
    overflow: hidden;
}

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

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 208, 189, 0.9);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 16px;
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.12);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 22px;
    color: var(--text-dark);
}

.hero-title .highlight {
    color: var(--primary-color);
    position: relative;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.75;
}

.hero-metrics {
    display: grid;
    gap: 12px;
    margin-bottom: 30px;
    list-style: none;
    padding-left: 0;
    color: var(--text-dark);
    font-weight: 600;
}

.hero-metrics li {
    position: relative;
    padding-left: 28px;
}

.hero-metrics li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.hero-cta {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.hero-cta-note {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 600;
}

.hero-testimonial {
    margin-top: 28px;
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 18px;
    padding: 16px 18px;
    border: 1px solid rgba(255, 214, 199, 0.9);
    box-shadow: 0 16px 30px rgba(66, 38, 24, 0.1);
}

.hero-testimonial img {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 107, 53, 0.3);
}

.hero-testimonial p {
    margin: 0 0 6px 0;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.5;
}

.hero-testimonial span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
}

.btn-primary {
    background: linear-gradient(
        135deg,
        var(--primary-color),
        var(--secondary-color)
    );
    color: var(--bg-white);
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong);
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--bg-white);
}

.hero-img-main {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(var(--shadow-medium));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

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

.hero-illustration {
    position: relative;
    padding: 26px;
    border-radius: 30px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), #fff2e8);
    box-shadow:
        0 30px 70px rgba(63, 37, 23, 0.12),
        inset 0 0 0 1px rgba(255, 255, 255, 0.65);
}

.hero-illustration::before {
    content: "";
    position: absolute;
    inset: -16px -12px;
    border-radius: 36px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.7),
        rgba(255, 230, 215, 0.6)
    );
    z-index: 0;
}

.hero-dashboard {
    position: relative;
    z-index: 1;
    width: min(560px, 100%);
    border-radius: 22px;
    display: block;
    box-shadow: 0 25px 45px rgba(36, 22, 14, 0.2);
    transform: perspective(900px) rotateY(-6deg) rotateX(2deg);
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.hero-illustration:hover .hero-dashboard {
    transform: perspective(900px) rotateY(0deg) rotateX(0deg);
    box-shadow: 0 35px 60px rgba(36, 22, 14, 0.25);
}

/* ==========================================
   Section Headers
   ========================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* ==========================================
   Video Section
   ========================================== */
.video-section {
    padding: var(--section-padding);
    background: var(--bg-white);
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.video-placeholder {
    background: linear-gradient(135deg, #ffe8d9, #fff8f3);
    padding: 100px 40px;
    text-align: center;
    color: var(--text-dark);
}

.video-placeholder p {
    font-size: 2rem;
    margin-bottom: 10px;
}

.video-placeholder small {
    color: var(--text-light);
}

.video-wrapper iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
}

/* ==========================================
   Features Section
   ========================================== */
.features-section {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.features-slider {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 60px;
    align-items: start;
    position: relative;
    --progress: 0%;
}

.features-slider::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 12px;
    bottom: 12px;
    width: 2px;
    background: linear-gradient(
        180deg,
        rgba(255, 181, 153, 0),
        rgba(255, 181, 153, 0.4),
        rgba(255, 181, 153, 0)
    );
    z-index: 0;
    pointer-events: none;
}

.features-slider::after {
    content: "";
    position: absolute;
    left: 8px;
    top: 12px;
    width: 2px;
    height: var(--progress);
    background: linear-gradient(
        180deg,
        rgba(255, 142, 102, 0.1),
        rgba(255, 115, 84, 0.75)
    );
    border-radius: 999px;
    transition: height 0.4s ease;
    z-index: 0;
    pointer-events: none;
}

.features-copy {
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding-left: 32px;
    position: relative;
    z-index: 1;
}

.feature-step {
    position: relative;
    padding: 26px 28px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 220, 205, 0.75);
    box-shadow: 0 16px 30px rgba(66, 38, 24, 0.08);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease,
        border-color 0.35s ease;
    opacity: 0.55;
    transform: translateY(24px);
    overflow: hidden;
}

.feature-step::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        140deg,
        rgba(255, 255, 255, 0.9),
        rgba(255, 236, 225, 0.7)
    );
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 0;
}

.feature-step.is-active {
    background: var(--bg-white);
    border-color: rgba(255, 199, 177, 0.9);
    box-shadow: 0 28px 55px rgba(66, 38, 24, 0.18);
    opacity: 1;
    transform: translateY(0);
}

.feature-step.is-active::before {
    opacity: 1;
}

.feature-step > * {
    position: relative;
    z-index: 1;
}

.feature-step-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-step-label::after {
    content: "";
    width: 42px;
    height: 2px;
    background: linear-gradient(
        90deg,
        var(--primary-color),
        rgba(255, 165, 140, 0.35)
    );
    border-radius: 999px;
}

.feature-step-index {
    position: absolute;
    top: 22px;
    right: 22px;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 199, 177, 0.7);
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    display: grid;
    place-items: center;
    letter-spacing: 0.05em;
}

.feature-step.is-active .feature-step-index {
    background: linear-gradient(
        135deg,
        rgba(255, 236, 225, 0.95),
        rgba(255, 255, 255, 0.95)
    );
    box-shadow: 0 10px 20px rgba(66, 38, 24, 0.15);
}

.feature-step h3 {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-step p {
    color: var(--text-light);
    line-height: 1.7;
}

.features-visual {
    position: sticky;
    top: 130px;
}

.features-frame {
    position: relative;
    padding: 26px;
    border-radius: 30px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), #fff2e8);
    box-shadow:
        0 30px 70px rgba(63, 37, 23, 0.12),
        inset 0 0 0 1px rgba(255, 255, 255, 0.65);
}

.features-frame::before {
    content: "";
    position: absolute;
    inset: -16px -12px;
    border-radius: 36px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.7),
        rgba(255, 230, 215, 0.6)
    );
    z-index: 0;
}

.features-image {
    position: relative;
    z-index: 1;
    width: min(520px, 100%);
    border-radius: 22px;
    display: block;
    box-shadow: 0 25px 45px rgba(36, 22, 14, 0.2);
    transform: perspective(900px) rotateY(-6deg) rotateX(2deg);
    transition:
        transform 0.5s ease,
        box-shadow 0.5s ease,
        opacity 0.35s ease,
        filter 0.35s ease;
}

.features-image.is-switching {
    opacity: 0.55;
    filter: blur(1px);
}

.features-frame:hover .features-image {
    transform: perspective(900px) rotateY(0deg) rotateX(0deg);
    box-shadow: 0 35px 60px rgba(36, 22, 14, 0.25);
}

/* ==========================================
   Screenshots Section
   ========================================== */
.screenshots-section {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 22px;
}

.screenshot-card {
    grid-column: span 6;
    background: var(--bg-white);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(250, 221, 209, 0.9);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.screenshot-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.screenshot-media {
    position: relative;
    background: linear-gradient(135deg, #fff8f3 0%, #ffe8d9 100%);
    aspect-ratio: 16 / 10;
    border-bottom: 1px solid rgba(250, 221, 209, 0.9);
}

.screenshot-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.screenshot-media img:not([src]),
.screenshot-media img[src=""],
.screenshot-media img[src="/"] {
    display: none;
}

.screenshot-media::after {
    content: "Carica uno screenshot (16:10 o 16:9)";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    text-align: center;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-dark);
    opacity: 0.55;
}

.screenshot-caption {
    padding: 14px 16px;
    font-weight: 600;
    color: var(--text-dark);
}

@media (max-width: 968px) {
    .screenshot-card {
        grid-column: span 12;
    }
}

/* ==========================================
   Benefits Section
   ========================================== */
.benefits-section {
    padding: var(--section-padding);
    background: var(--bg-white);
}

.benefits-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.benefit-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.benefit-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.3;
    line-height: 1;
    min-width: 80px;
}

.benefit-content h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 600;
}

.benefit-content p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ==========================================
   How It Works Section
   ========================================== */
.how-it-works-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #fff8f3 0%, #ffe8d9 100%);
}

.steps-container {
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
}

.step:last-child {
    margin-bottom: 0;
}

.step-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.step-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        var(--primary-color),
        var(--secondary-color)
    );
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: var(--shadow-soft);
}

.step-line {
    width: 3px;
    flex-grow: 1;
    background: linear-gradient(
        180deg,
        var(--primary-color),
        var(--accent-color)
    );
    margin: 10px 0;
    opacity: 0.3;
}

.step:last-child .step-line {
    display: none;
}

.step-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 600;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ==========================================
   Testimonials Section
   ========================================== */
.testimonials-section {
    padding: var(--section-padding);
    background: var(--bg-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonials-grid.single-testimonial {
    display: flex;
    justify-content: center;
}

.testimonials-grid.single-testimonial .testimonial-card {
    max-width: 800px;
    width: 100%;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    position: relative;
}

.testimonial-quote {
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
}

.testimonial-text {
    color: var(--text-dark);
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 30px 0 25px 0;
    font-style: italic;
}

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

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    color: var(--primary-color);
    font-weight: 600;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ==========================================
   Contact Section
   ========================================== */
.contact-section {
    padding: var(--section-padding);
    background: linear-gradient(
        135deg,
        var(--primary-color),
        var(--secondary-color)
    );
}

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

.contact-info {
    color: var(--bg-white);
}

.contact-info h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.3;
}

.contact-info > p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 35px;
    opacity: 0.95;
}

.contact-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
}

.benefit-icon {
    background: var(--bg-white);
    color: var(--primary-color);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.contact-form-container {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-strong);
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    grid-column: 1 / -1;
    margin-top: 10px;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    display: block;
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 60px 20px 30px;
}

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

.footer-brand p {
    margin-top: 20px;
    opacity: 0.8;
    line-height: 1.7;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.footer-column h4 {
    font-family: var(--font-heading);
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    color: var(--bg-white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

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

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

/* ==========================================
   Confirmation Page
   ========================================== */
.confirmation-page {
    background: linear-gradient(135deg, #fff8f3 0%, #ffe8d9 100%);
    min-height: 100vh;
}

.confirmation-page .header {
    background: transparent;
    box-shadow: none;
    position: static;
}

.confirmation-page .nav-menu {
    gap: 20px;
}

.confirmation-page .nav-menu a {
    font-weight: 600;
}

.confirmation-section {
    padding: 80px 20px 100px;
}

.confirmation-card {
    max-width: 760px;
    margin: 0 auto;
    background: var(--bg-white);
    border-radius: 28px;
    padding: 50px 60px;
    box-shadow: 0 30px 60px rgba(66, 38, 24, 0.12);
    border: 1px solid rgba(255, 206, 186, 0.7);
}

.confirmation-intro {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 12px;
}

.confirmation-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.confirmation-text {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 18px;
}

.confirmation-list {
    margin: 0 0 24px 0;
    padding-left: 22px;
    color: var(--text-dark);
    display: grid;
    gap: 10px;
    font-weight: 600;
}

.confirmation-list li {
    line-height: 1.55;
}

.confirmation-signoff {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 28px;
}

.confirmation-card .btn {
    width: fit-content;
}

@media (max-width: 768px) {
    .confirmation-card {
        padding: 36px 28px;
        border-radius: 22px;
    }

    .confirmation-title {
        font-size: 2rem;
        line-height: 1.25;
    }
}

@media (max-width: 480px) {
    .confirmation-section {
        padding: 60px 16px 70px;
    }

    .confirmation-card {
        padding: 26px 20px;
        border-radius: 18px;
    }

    .confirmation-intro {
        font-size: 1rem;
    }

    .confirmation-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .confirmation-text {
        font-size: 1.02rem;
    }

    .confirmation-list {
        padding-left: 18px;
    }

    .confirmation-card .btn {
        width: 100%;
        text-align: center;
    }
}

.credits {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.credits-brand {
    display: grid;
    gap: 6px;
    text-align: center;
    max-width: 520px;
}

.credits a {
    display: inline-flex;
    align-items: center;
}

.dueclic-logo {
    height: 25px;
    width: auto;
    transition: transform 0.3s;
}

.dueclic-logo:hover {
    transform: scale(1.1);
}

/* ==========================================
   Responsive Design
   ========================================== */
@media (max-width: 968px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-illustration {
        padding: 20px;
        border-radius: 24px;
    }

    .hero-dashboard {
        transform: none;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-kicker {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-metrics {
        justify-items: center;
    }

    .hero-metrics li {
        padding-left: 0;
    }

    .hero-metrics li::before {
        position: static;
        margin-right: 8px;
    }

    .hero-testimonial {
        flex-direction: column;
        text-align: center;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 20px;
    }

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

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        display: none;
        gap: 15px;
    }

    .nav-menu.active {
        display: flex;
    }

    .confirmation-page .nav-container {
        flex-direction: column;
        gap: 12px;
    }

    .confirmation-page .nav-menu {
        position: static;
        display: flex;
        background: transparent;
        box-shadow: none;
        padding: 0;
    }

    .credits {
        flex-direction: column;
    }

    .credits-brand {
        max-width: none;
    }

    .hero {
        padding: 60px 20px 50px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .features-visual {
        position: static;
        order: -1;
    }

    .features-frame {
        padding: 20px;
        border-radius: 24px;
    }

    .features-image {
        transform: none;
    }

    .feature-step-label::after {
        display: none;
    }

    .benefit-item {
        flex-direction: column;
        gap: 15px;
    }

    .benefit-number {
        font-size: 2rem;
    }

    .step {
        gap: 20px;
    }

    .step-circle {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

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

    .contact-form-container {
        padding: 30px 20px;
    }

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

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.2rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-illustration {
        padding: 16px;
        border-radius: 20px;
    }

    .hero-dashboard {
        border-radius: 18px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .contact-info h2 {
        font-size: 2rem;
    }
}

.grecaptcha-badge {
    visibility: hidden !important;
}
