/* V2 Free Trial page styles — extracted from Website/style.css */

/* Reset uniquement pour les sections personnalisées */
.hero,
.why-choose,
.how-it-works {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.hero *,
.why-choose *,
.how-it-works * {
    box-sizing: border-box;
}

/* Container personnalisé */
.hero .container,
.why-choose .container,
.how-it-works .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* .section-title — defined in design-system.css (source of truth) */

/* Hero Section */
.hero {
    background: var(--se-offwhite);
    padding: 0;
    position: relative;
    overflow: visible;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* Hero Logo */
.hero-logo {
    margin-bottom: 25px;
}

.shield-logo {
    width: 50px;
    height: auto;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.shield-logo:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.hero-text h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: normal;
    color: var(--se-navy);
    margin-bottom: 25px;
    line-height: 1.2;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.hero-text h1 .highlight {
    color: var(--se-orange);
    display: inline;
}

/* Restoring subtitle with requested large size */
/* Restoring subtitle with requested large size */
.hero-subtitle {
    font-size: 1.5rem;
    /* Reduced from 2.2rem (too big) */
    color: white;
    /* Changed to white as requested */
    margin-bottom: 40px;
    line-height: 1.5;
}

/* Form Card Upgrade */
.hero-dark-section .form-card h3 {
    font-family: var(--font-heading);
    font-weight: normal;
    font-size: 1.8rem;
    text-transform: uppercase;
    color: var(--se-navy);
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

/* The following properties were likely intended for a different selector or were misplaced.
   They are removed to fix the syntax error of a floating closing brace. */
/*
font-size: 1.25rem;
color: var(--se-gray);
margin-bottom: 40px;
line-height: 1.6;
*/

.hero-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: transparent;
    padding: 28px 20px;
    border-radius: var(--radius-lg);
    box-shadow: none;
    border: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 140px;
    position: relative;
    overflow: hidden;
}

.badge-item::before {
    display: none;
}

.badge-item:hover {
    transform: none;
    box-shadow: none;
    border-color: transparent;
}

.badge-item:hover::before {
    transform: none;
}

.badge-item i {
    font-size: 2.5rem;
    color: var(--se-orange);
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.badge-item:hover i {
    transform: scale(1.15);
}

.badge-item div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.badge-item strong {
    display: block;
    font-size: 1.5rem;
    color: var(--se-navy);
    font-weight: 800;
}

.badge-item span {
    font-size: 0.9rem;
    color: var(--se-gray);
    font-weight: 500;
}

/* Hero CTA Button */
.hero-cta {
    text-align: center;
    margin-top: 50px;
}

.btn-features {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: white;
    color: var(--se-orange);
    border: 2px solid var(--se-orange);
    border-radius: var(--radius-md);
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-orange);
}

.btn-features:hover {
    background: var(--se-orange);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-orange-lg);
}

.btn-features i {
    font-size: 1.35rem;
    transition: transform 0.3s ease;
}

.btn-features:hover i {
    transform: rotate(5deg);
}

/* Features Comparison Table - Premium Design */
.features-comparison {
    margin-top: 70px;
    background: var(--se-white);
    padding: 60px 50px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--se-gray-border);
}

.comparison-title {
    font-family: var(--font-heading);
    font-weight: normal;
    font-size: 2rem;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 80px;
    color: var(--se-navy);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    position: relative;
    padding-bottom: 70px;
}

.comparison-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--se-orange);
    border-radius: 2px;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.comparison-column {
    background: white;
    border-radius: var(--radius-xl);
    padding: 0;
    border: 2px solid;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
}

.comparison-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    transition: transform 0.3s ease;
    transform: scaleX(0);
}

.comparison-column:hover::before {
    transform: scaleX(1);
}

.comparison-column.included {
    border-color: rgba(40, 167, 69, 0.15);
}

.comparison-column.included::before {
    background: var(--se-success);
}

.comparison-column.included:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(40, 167, 69, 0.15);
}

.comparison-column.excluded {
    border-color: rgba(220, 53, 69, 0.15);
    opacity: 0.75;
    transform: scale(0.98);
}

.comparison-column.excluded::before {
    background: var(--se-danger);
}

.comparison-column.excluded:hover {
    opacity: 0.85;
    transform: scale(0.98) translateY(-6px);
}

.comparison-column:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.column-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 35px 35px 30px;
    margin-bottom: 15px;
    background: var(--se-offwhite);
    border-bottom: 1px solid var(--se-gray-border);
}

.column-header i {
    font-size: 2.2rem;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    flex-shrink: 0;
}

.comparison-column.included .column-header i {
    background: none;
    color: var(--se-success);
}

.comparison-column.excluded .column-header i {
    background: none;
    color: var(--se-danger);
}

.column-header h4 {
    font-family: var(--font-heading);
    font-weight: normal;
    font-size: 1.75rem;
    margin: 0;
    color: var(--se-navy);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.features-list {
    list-style: none;
    padding: 25px 35px 35px;
    margin: 0;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 0;
    font-size: 0.98rem;
    color: var(--se-navy);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.features-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.features-list li:hover {
    padding-left: 8px;
}

.features-list i {
    font-size: 1.1rem;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-circle);
    flex-shrink: 0;
    font-weight: 700;
}

.comparison-column.included .features-list i {
    background: none;
    color: var(--se-success);
    box-shadow: none;
}

.comparison-column.excluded .features-list i {
    background: none;
    color: var(--se-danger);
    box-shadow: none;
}

/* Pricing Badge */
.pricing-badge {
    margin: 30px 35px 35px 35px;
    padding: 24px 20px;
    background: var(--se-offwhite);
    border-radius: var(--radius-lg);
    border: 2px solid var(--se-gray-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-badge:hover {
    background: rgba(29, 42, 57, 0.04);
    border-color: var(--se-orange);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.pricing-badge i {
    font-size: 2rem;
    color: var(--se-orange);
    flex-shrink: 0;
    width: auto !important;
    height: auto !important;
    background: none !important;
    box-shadow: none !important;
    margin-bottom: 4px;
}

.pricing-badge p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--se-navy);
}

.pricing-badge strong {
    color: var(--se-orange);
    font-weight: 800;
    font-size: 1.1rem;
}

@media (max-width: 992px) {
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .features-comparison {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .features-comparison {
        padding: 35px 20px;
    }

    .comparison-title {
        font-size: 1.5rem;
    }

    .column-header {
        padding: 25px 25px 20px;
    }

    .features-list {
        padding: 20px 25px 25px;
    }
}

/* Form Card */
.form-card {
    background: white;
    padding: 25px 30px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.form-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--se-navy);
}

.form-subtitle {
    font-size: 0.85rem;
    color: var(--se-gray);
    margin-bottom: 15px;
}

/* Form-group overrides scoped to .form-card (compact trial form).
   Generic .form-group is defined in design-system.css */
.form-card .form-group {
    margin-bottom: 12px;
}

.form-card .form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--se-navy);
    font-size: 0.85rem;
}

.form-card .form-group input {
    width: 100%;
    padding: 10px 12px;
    background: var(--se-offwhite);
    border: 1px solid var(--se-gray-light);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--se-navy);
    transition: all 0.3s ease;
    font-weight: 500;
}

.form-card .form-group input:focus {
    outline: none;
    border-color: var(--se-orange);
    background: white;
    box-shadow: 0 0 0 4px rgba(29, 42, 57, 0.1);
}

/* Mobile Input Group */
.mobile-input-group {
    display: flex;
    gap: 10px;
}

.mobile-input-group select {
    width: 180px;
    padding: 14px 18px;
    border: 2px solid var(--se-gray-border);
    border-radius: var(--radius-md);
    font-size: 1rem;
    background: var(--se-offwhite);
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-input-group select:focus {
    outline: none;
    border-color: var(--se-orange);
    background: white;
    box-shadow: 0 0 0 4px rgba(29, 42, 57, 0.1);
}

.mobile-input-group input {
    flex: 1;
}

/* Captcha */
.captcha-container {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

.captcha-image {
    flex: 1;
    background: var(--se-gray-light);
    border: 1px solid var(--se-gray-border);
    border-radius: var(--radius-sm);
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 45px;
}

.captcha-code {
    font-family: 'Courier New', monospace;
    font-size: 1.4rem;
    font-weight: bold;
    letter-spacing: 6px;
    color: var(--se-navy);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    user-select: none;
}

.captcha-refresh {
    width: 45px;
    height: 45px;
    background: white;
    border: 1px solid var(--se-gray-border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--se-orange);
}

.captcha-refresh:hover {
    background: var(--se-orange);
    color: white;
    border-color: var(--se-orange);
    transform: rotate(180deg);
}

.btn-submit {
    width: 100%;
    padding: 12px 20px;
    background: var(--se-orange);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: var(--shadow-orange);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-orange-lg);
}

.form-notice {
    font-size: 0.85rem;
    color: var(--se-gray);
    margin-top: 14px;
    text-align: center;
}

/* Why Choose Section */
.why-choose {
    padding: 120px 0 80px;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.feature-box {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--se-gray-border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--se-orange);
}

.feature-box .feature-icon {
    width: 90px;
    height: 90px;
    background: var(--se-orange);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.2rem;
    color: white;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-orange-lg);
}

.feature-box:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-orange-lg);
}

.feature-box h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--se-navy);
}

.feature-box p {
    font-size: 1rem;
    color: var(--se-gray);
    line-height: 1.7;
}

/* CTA Section — trial-specific (light bg + orange card inside)
   Generic .cta-section is defined in design-system.css (navy gradient) */
.trial-cta-section {
    padding: 80px 0;
    background: var(--se-offwhite);
    position: relative;
    overflow: hidden;
}

.trial-cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: none;
    border-radius: var(--radius-circle);
    pointer-events: none;
}

.cta-card {
    background: var(--se-orange);
    border-radius: var(--radius-xl);
    padding: 60px 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: transparent;
    border-radius: var(--radius-circle);
}

.cta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

.cta-content {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: var(--font-heading);
    font-weight: normal;
    font-size: 2.75rem;
    color: white;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 35px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 45px;
    background: white;
    color: var(--se-orange);
    border: none;
    border-radius: var(--radius-lg);
    font-size: 1.25rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-cta:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--shadow-xl);
    background: var(--se-white);
}

.btn-cta i {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.btn-cta:hover i {
    transform: translateY(-3px);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-size: 1.05rem;
    font-weight: 600;
}

.cta-feature i {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .cta-card {
        padding: 40px 30px;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-subtitle {
        font-size: 1.1rem;
    }

    .btn-cta {
        padding: 16px 35px;
        font-size: 1.1rem;
    }

    .cta-features {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
}

/* How It Works Section */
.how-it-works {
    padding: 120px 0 80px;
    background: var(--se-offwhite);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 25px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--se-gray-light);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* How It Works Step Numbers */
.how-it-works .step-number {
    width: 50px;
    height: 50px;
    background: var(--se-navy);
    color: white;
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: normal;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.how-it-works .step:hover .step-number {
    background: var(--se-orange);
}

.how-it-works .step-content h3 {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    color: var(--se-navy);
}

.how-it-works .step-content p {
    font-size: 0.9rem;
    color: var(--se-gray);
    line-height: 1.6;
}

.disclaimer {
    font-size: 0.9rem;
    color: var(--se-gray);
    text-align: center;
    font-style: italic;
}

/* Features Category */
.features-category {
    margin-bottom: 60px;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 35px;
    border-radius: var(--radius-lg);
    margin-bottom: 30px;
    border-left: 5px solid;
    box-shadow: var(--shadow-md);
}

.category-header.included {
    background: rgba(40, 167, 69, 0.08);
    border-left-color: var(--se-success);
}

.category-header.limited {
    background: rgba(255, 165, 0, 0.08);
    border-left-color: var(--se-warning);
}

.category-header.excluded {
    background: rgba(220, 53, 69, 0.08);
    border-left-color: var(--se-danger);
}

.category-header i {
    font-size: 2rem;
}

.category-header.included i {
    color: var(--se-success);
}

.category-header.limited i {
    color: var(--se-warning);
}

.category-header.excluded i {
    color: var(--se-danger);
}

.category-header h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--se-navy);
    margin: 0;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

/* Feature Cards */
.table-card {
    background: white;
    border: 2px solid var(--se-gray-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.table-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.table-card.included:hover {
    border-color: var(--se-success);
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.2);
}

.table-card.limited:hover {
    border-color: var(--se-warning);
    box-shadow: 0 10px 30px rgba(255, 165, 0, 0.2);
}

.table-card.excluded:hover {
    border-color: var(--se-danger);
    box-shadow: 0 10px 30px rgba(220, 53, 69, 0.2);
}

.table-card .card-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.table-card.included .card-icon {
    background: rgba(40, 167, 69, 0.15);
    color: var(--se-success);
}

.table-card.limited .card-icon {
    background: rgba(255, 165, 0, 0.15);
    color: var(--se-warning);
}

.table-card.excluded .card-icon {
    background: rgba(220, 53, 69, 0.15);
    color: var(--se-danger);
}

.table-card:hover .card-icon {
    transform: scale(1.15);
}

.table-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--se-navy);
    margin-bottom: 14px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-detail {
    font-size: 0.95rem;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    margin-top: auto;
}

.table-card.limited .card-detail {
    background: rgba(255, 165, 0, 0.15);
    color: var(--se-warning);
    border: 2px solid rgba(255, 165, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    /* .section-title responsive — defined in design-system.css */

    .hero {
        padding: 50px 0;
    }

    .hero-text h1 {
        font-size: 1.875rem;
    }

    .hero-badges {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .badge-item {
        min-height: 110px;
    }

    .features-grid,
    .category-grid {
        grid-template-columns: 1fr;
    }

    .steps-container {
        grid-template-columns: 1fr;
    }

    .category-header {
        padding: 20px 25px;
    }

    .category-header h3 {
        font-size: 1.35rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.625rem;
    }

    .form-card {
        padding: 25px;
    }
}

/* ============================================
   MULTI-STEP TRIAL FLOW STYLES
   ============================================ */

/* Step Progress Indicator */
.step-progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 35px;
    padding: 20px 10px;
    background: var(--se-offwhite);
    border-radius: var(--radius-lg);
    border: 1px solid var(--se-gray-border);
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
    max-width: 80px;
}

/* Progress Step Numbers (form wizard) */
.progress-step .step-number {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--se-gray-light);
    color: var(--se-gray);
    border-radius: var(--radius-circle);
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.step-label {
    font-size: 0.7rem;
    color: var(--se-gray);
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
}

.progress-step.active .step-number {
    background: var(--se-orange);
    color: white;
    border-color: var(--se-orange);
    box-shadow: var(--shadow-orange);
    transform: scale(1.1);
}

.progress-step.active .step-label {
    color: var(--se-orange);
    font-weight: 600;
}

.progress-step.completed .step-number {
    background: var(--se-success);
    color: white;
    border-color: var(--se-success);
}

.progress-step.completed .step-label {
    color: var(--se-success);
}

.progress-line {
    flex: 1;
    height: 3px;
    background: var(--se-gray-light);
    margin: 0 8px;
    border-radius: 2px;
    position: relative;
    transition: all 0.4s ease;
}

.progress-line.active {
    background: var(--se-success);
}

/* Step Content - Form Steps Only */
.form-card .step-content {
    display: none;
    animation: fadeInUp 0.5s ease-out;
}

.form-card .step-content.active {
    display: block;
}

/* How It Works Steps - Always visible */
.how-it-works .step .step-content {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Step 2: Confirmation Header */
.confirmation-header {
    text-align: center;
    margin-bottom: 25px;
}

.check-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--se-success);
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounceIn 0.6s ease-out;
}

.check-icon i {
    font-size: 2rem;
    color: white;
}

@keyframes bounceIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Alert Box Orange */
.alert-box {
    display: flex;
    gap: 15px;
    padding: 20px;
    border-radius: var(--radius-md);
    margin-bottom: 25px;
}

.alert-box.orange {
    background: rgba(238, 101, 37, 0.1);
    border: 2px solid var(--se-gray-border);
}

/* ============================================
   NEW CONVERSION SECTIONS — Free Trial Bottom
   ============================================ */

/* Override section-title spacing for free-trial page */
.ft-trust .section-title::after,
.ft-testimonials .section-title::after,
.ft-steps .section-title::after,
.ft-included .section-title::after {
    margin: 50px auto 0;
}

/* Section 1: Trust Pillars */
.ft-trust {
    padding: 160px 0 80px;
    background: white;
}

.ft-trust-subtitle {
    text-align: center;
    color: var(--se-gray);
    font-size: 1.15rem;
    max-width: 650px;
    margin: -20px auto 60px;
    line-height: 1.6;
}

.ft-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.ft-pillar {
    text-align: left;
    padding: 40px 35px;
    background: white;
    border-radius: var(--radius-xl);
    border: 1px solid var(--se-gray-border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.ft-pillar:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border-color: var(--se-orange);
}

.ft-pillar-icon {
    margin-bottom: 30px;
}

.ft-pillar-icon i {
    font-size: 2.5rem;
    color: var(--se-orange);
}

.ft-pillar h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: normal;
    color: var(--se-navy);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.ft-pillar p {
    font-size: 0.95rem;
    color: var(--se-gray);
    line-height: 1.7;
}

/* Section 2: Testimonials */
.ft-testimonials {
    padding: 100px 0;
    background: var(--se-navy);
}

.ft-testimonials .section-title {
    color: white;
    margin-bottom: 50px;
}

.ft-testimonials .section-title::after {
    background: var(--se-orange);
    margin: 20px auto 0;
}

.ft-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.ft-testimonial-card {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-xl);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.ft-testimonial-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.ft-testimonial-quote i {
    color: var(--se-orange);
    font-size: 1.5rem;
    margin-bottom: 15px;
    display: block;
}

.ft-testimonial-quote p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 25px;
}

.ft-testimonial-author strong {
    display: block;
    color: white;
    font-size: 0.95rem;
    font-weight: 700;
}

.ft-testimonial-author span {
    color: var(--se-orange);
    font-size: 0.85rem;
}

/* Section 3: Steps */
.ft-steps {
    padding: 100px 0;
    background: white;
}

.ft-steps .sn-process-subtitle {
    color: var(--se-gray);
    font-size: 1rem;
    margin-top: 8px;
    text-align: center;
}

/* --- Interactive Flow Diagram (reused from sn-*) --- */
.ft-steps .sn-flow-diagram {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 60px;
    margin-bottom: 30px;
}

.ft-steps .sn-flow-line {
    position: absolute;
    top: 35px;
    left: 120px;
    right: 120px;
    height: 2px;
    background: var(--se-orange);
    z-index: 0;
}

.ft-steps .sn-node {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
    cursor: pointer;
    opacity: 0;
    transform: translateY(15px);
    animation: ftNodeAppear 0.5s ease forwards;
}

.ft-steps .sn-node:nth-child(2) { animation-delay: 0.1s; }
.ft-steps .sn-node:nth-child(3) { animation-delay: 0.2s; }
.ft-steps .sn-node:nth-child(4) { animation-delay: 0.3s; }

@keyframes ftNodeAppear {
    to { opacity: 1; transform: translateY(0); }
}

.ft-steps .sn-node-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--se-white);
    border: 2px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 1.6rem;
    color: var(--se-navy);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.ft-steps .sn-node:hover .sn-node-circle {
    border-color: var(--se-orange);
    color: var(--se-orange);
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(238,101,37,0.15);
}

.ft-steps .sn-node.active .sn-node-circle {
    background: var(--se-orange);
    border-color: var(--se-orange);
    color: var(--se-white);
    transform: scale(1.15);
    box-shadow: 0 8px 30px rgba(238,101,37,0.3);
}

.ft-steps .sn-node-label {
    font-family: var(--font-heading);
    font-weight: normal;
    font-size: 0.95rem;
    color: var(--se-navy);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

.ft-steps .sn-node.active .sn-node-label {
    color: var(--se-orange);
}

.ft-steps .sn-node-sub {
    font-size: 0.8rem;
    color: var(--se-gray);
    line-height: 1.4;
    max-width: 180px;
    margin: 0 auto;
}

/* --- Detail Panel --- */
.ft-steps .sn-detail-panel {
    background: var(--se-offwhite);
    border: 1px solid rgba(238,101,37,0.15);
    border-radius: var(--radius-md);
    padding: 24px 28px;
    margin-top: 10px;
    animation: ftSlideUp 0.35s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

@keyframes ftSlideUp {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.ft-steps .sn-detail-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.ft-steps .sn-detail-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: rgba(238,101,37,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--se-orange);
    flex-shrink: 0;
}

.ft-steps .sn-detail-title {
    font-family: var(--font-heading);
    font-weight: normal;
    font-size: 1.15rem;
    color: var(--se-navy) !important;
    letter-spacing: 0.08em;
    flex: 1;
    margin: 0;
}

.ft-steps .sn-detail-close {
    background: none;
    border: none;
    color: var(--se-gray);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}

.ft-steps .sn-detail-close:hover {
    background: rgba(0,0,0,0.05);
    color: var(--se-navy);
}

.ft-steps .sn-detail-text {
    font-size: 0.9rem;
    color: var(--se-gray-dark, #4a5568);
    line-height: 1.7;
    margin: 0 0 14px;
}

.ft-steps .sn-detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ft-steps .sn-detail-link {
    color: var(--se-orange);
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.2s;
}

.ft-steps .sn-detail-link:hover {
    color: var(--se-orange-dark);
}

.ft-steps .sn-detail-tag {
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    background: rgba(238,101,37,0.08);
    color: var(--se-orange);
    border: 1px solid rgba(238,101,37,0.18);
    font-weight: 600;
}

/* Responsive interactive steps */
@media (max-width: 768px) {
    .ft-steps .sn-flow-diagram {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 0;
    }
    .ft-steps .sn-flow-line {
        display: none;
    }
    .ft-steps .sn-node-sub {
        max-width: 100%;
    }
}

/* Section 4: Included Features */
.ft-included {
    padding: 100px 0;
    background: var(--se-offwhite);
}

.ft-included-subtitle {
    text-align: center;
    color: var(--se-gray);
    font-size: 1.1rem;
    max-width: 550px;
    margin: -20px auto 50px;
    line-height: 1.6;
}

.ft-included-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.ft-included-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: white;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    color: var(--se-navy);
    font-weight: 500;
    border: 1px solid var(--se-gray-border);
}

.ft-included-item i {
    color: var(--se-orange);
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* Section 5: Certifications Banner */
.ft-certs {
    padding: 50px 0;
    background: white;
    border-top: 1px solid var(--se-gray-border);
    border-bottom: 1px solid var(--se-gray-border);
}

.ft-certs-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.ft-cert-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--se-gray);
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.ft-cert-item:hover {
    color: var(--se-navy);
}

.ft-cert-item i {
    font-size: 1.3rem;
    color: var(--se-orange);
}

/* Section 6: Final CTA */
.ft-final-cta {
    padding: 100px 0;
    background: var(--se-navy);
    text-align: center;
}

.ft-final-cta h2 {
    font-family: var(--font-heading);
    font-weight: normal;
    font-size: 2.5rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 20px;
}

.ft-final-cta p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.ft-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 45px;
    background: var(--se-orange);
    color: white;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(217, 106, 57, 0.4);
}

.ft-cta-btn:hover {
    background: #c55a2a;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(217, 106, 57, 0.5);
    color: white;
    text-decoration: none;
}

.ft-cta-reassurance {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.ft-cta-reassurance span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ft-cta-reassurance i {
    color: var(--se-orange);
}

/* ============================================
   RESPONSIVE — New Sections
   ============================================ */
@media (max-width: 992px) {
    .ft-pillars {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .ft-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ft-steps-grid {
        flex-direction: column;
        align-items: center;
    }

    .ft-step-arrow {
        transform: rotate(90deg);
        padding-top: 0;
    }

    .ft-included-grid {
        grid-template-columns: 1fr;
    }

    .ft-certs-grid {
        gap: 30px;
    }

    .ft-final-cta h2 {
        font-size: 1.8rem;
    }

    .ft-cta-reassurance {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
}

.alert-icon {
    flex-shrink: 0;
}

.alert-box.orange .alert-icon i {
    font-size: 1.5rem;
    color: var(--se-orange);
}

.alert-content p {
    margin: 0;
    color: var(--se-navy);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Email Preview */
.email-preview {
    background: white;
    border: 2px solid var(--se-gray-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: var(--shadow-md);
}

.email-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: var(--se-offwhite);
    border-bottom: 1px solid var(--se-gray-border);
}

.email-header i {
    font-size: 1.25rem;
    color: var(--se-orange);
}

.email-header span {
    font-size: 0.9rem;
    color: var(--se-navy);
}

.email-subject {
    padding: 12px 20px;
    background: var(--se-offwhite);
    border-bottom: 1px solid var(--se-gray-border);
    font-size: 0.85rem;
    color: var(--se-gray);
}

.email-body {
    padding: 20px;
}

.email-body p {
    margin: 0 0 10px;
    font-size: 0.9rem;
    color: var(--se-navy);
}

.email-body p:last-child {
    margin-bottom: 0;
}

/* Step 3: Activation Animation */
.activation-animation {
    text-align: center;
    padding: 20px 0;
}

.spinner-container {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
}

.spinner {
    width: 100%;
    height: 100%;
    border: 4px solid var(--se-gray-light);
    border-top-color: var(--se-orange);
    border-radius: var(--radius-circle);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.activation-steps {
    margin-top: 30px;
    text-align: left;
}

.activation-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: var(--se-offwhite);
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.activation-item i {
    font-size: 1rem;
    color: var(--se-gray);
    width: 20px;
    text-align: center;
}

.activation-item.active i {
    color: var(--se-orange);
}

.activation-item.completed i {
    color: var(--se-success);
}

.activation-item.completed {
    background: rgba(40, 167, 69, 0.08);
}

.activation-item span {
    font-size: 0.9rem;
    color: var(--se-navy);
}

/* Step 4: Welcome Screen */
.welcome-header {
    text-align: center;
    margin-bottom: 30px;
}

.success-icon {
    font-size: 4rem;
    color: var(--se-success);
    margin-bottom: 15px;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.success-icon i {
    filter: drop-shadow(0 4px 15px rgba(40, 167, 69, 0.3));
}

.welcome-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    background: var(--se-offwhite);
    border: 1px solid var(--se-gray-border);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: var(--se-orange);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.info-card i {
    font-size: 1.75rem;
    color: var(--se-orange);
}

.info-card div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-card strong {
    font-size: 0.95rem;
    color: var(--se-navy);
}

.info-card span {
    font-size: 0.8rem;
    color: var(--se-gray);
}

/* Next Steps */
.next-steps {
    margin-bottom: 25px;
}

.next-steps h4 {
    font-family: var(--font-heading);
    font-weight: normal;
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--se-navy);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.next-step-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    background: white;
    border: 2px solid var(--se-gray-border);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.next-step-item:hover {
    border-color: var(--se-orange);
    box-shadow: var(--shadow-orange);
}

.next-step-item .step-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(29, 42, 57, 0.04);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.next-step-item .step-icon i {
    font-size: 1.25rem;
    color: var(--se-orange);
}

.next-step-item .step-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.next-step-item .step-info strong {
    font-size: 0.95rem;
    color: var(--se-navy);
}

.next-step-item .step-info span {
    font-size: 0.8rem;
    color: var(--se-gray);
}

.btn-step {
    padding: 10px 20px;
    background: var(--se-orange);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-step:hover {
    background: var(--se-orange-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-orange);
}

/* Restart Button */
.btn-restart {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    background: transparent;
    color: var(--se-gray);
    border: 2px dashed var(--se-gray-border);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-restart:hover {
    border-color: var(--se-orange);
    color: var(--se-orange);
    background: rgba(0, 0, 0, 0.02);
}

.btn-restart i {
    font-size: 1rem;
}

/* Responsive for multi-step */
@media (max-width: 768px) {
    .step-progress {
        padding: 15px 5px;
    }

    .step-label {
        display: none;
    }

    .step-number {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }

    .welcome-info {
        grid-template-columns: 1fr;
    }

    .next-step-item {
        flex-wrap: wrap;
    }

    .btn-step {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }
}

/* ============================================
   CONFIRMATION SUCCESS VISUAL
   ============================================ */

.confirmation-success {
    text-align: center;
    margin-bottom: 25px;
}

.success-envelope {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    background: var(--se-orange);
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: envelopeBounce 0.6s ease-out;
    box-shadow: var(--shadow-orange-lg);
}

.success-envelope i {
    font-size: 2.5rem;
    color: white;
    animation: envelopeWiggle 2s ease-in-out infinite;
}

@keyframes envelopeBounce {
    0% {
        transform: scale(0) rotate(-10deg);
        opacity: 0;
    }

    50% {
        transform: scale(1.15) rotate(5deg);
    }

    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

@keyframes envelopeWiggle {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-5deg);
    }

    75% {
        transform: rotate(5deg);
    }
}

.confirmation-title {
    font-family: var(--font-heading);
    font-weight: normal;
    font-size: 1.75rem;
    color: var(--se-navy);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ============================================
   DECORATIVE ARROWS
   ============================================ */

.decorative-arrows {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0;
    margin-top: 20px;
}

.arrow-group {
    display: flex;
    gap: 8px;
}

.arrow-group.left {
    flex-direction: row;
}

.arrow-group.right {
    flex-direction: row;
}

.arrow {
    font-size: 3rem;
    font-weight: 300;
    color: var(--se-gray-light);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.arrow.arrow-1 {
    opacity: 0.3;
}

.arrow.arrow-2 {
    opacity: 0.5;
}

.arrow.arrow-3 {
    opacity: 0.7;
}

.arrow.orange {
    color: var(--se-orange);
    opacity: 1;
}

@media (max-width: 768px) {
    .decorative-arrows {
        padding: 20px 0;
    }

    .arrow {
        font-size: 2rem;
    }
}

/* ============================================
   HERO DARK SECTION - Blue Background Partial
   ============================================ */

.hero-dark-section {
    background: var(--se-navy);
    padding: 60px 0 30px;
    position: relative;
}

.hero-dark-section .hero-content {
    position: relative;
    padding-bottom: 20px;
    /* Space for text */
}

/* Text takes full width allows overlap underneath form */
.hero-dark-section .hero-text {
    width: 100%;
    /* Full width to fit single line */
    padding-right: 0;
    position: relative;
    z-index: 5;
}

.hero-dark-section .hero-text h1 {
    color: white;
}

.hero-dark-section .hero-text h1 .highlight {
    color: var(--se-orange);
}

.hero-dark-section .hero-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

/* Form positioned absolutely on the right */
.hero-dark-section .hero-form {
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    z-index: 10;
}

.hero-dark-section .form-card {
    /* Reset transform */
    transform: none;
    box-shadow: var(--shadow-xl);
    /* Stronger shadow for floating effect */
}

/* Hero Light Section - Badges */
.hero-light-section {
    background: var(--se-offwhite);
    padding: 60px 0;
    padding-top: 40px;
}

.hero-light-section .hero-badges {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 50px;
    max-width: 600px;
    padding-top: 10px;
    margin-top: 0;
}

@media (max-width: 992px) {
    .hero-dark-section {
        padding-bottom: 60px;
        /* Restore padding on mobile */
    }

    .hero-dark-section .hero-content {
        display: block;
    }

    .hero-dark-section .hero-text {
        width: 100%;
        margin-bottom: 40px;
    }

    .hero-dark-section .hero-form {
        position: relative;
        width: 100%;
    }

    .hero-light-section .hero-badges {
        justify-content: center;
        max-width: 100%;
    }
}

/* Badge Typography Updates */
.badge-value {
    display: block;
    font-family: var(--font-heading);
    font-weight: normal;
    font-size: 2.5rem;
    color: var(--se-navy);
    line-height: 1;
    margin-bottom: 5px;
    letter-spacing: 0.08em;
    white-space: nowrap;
}

.badge-label {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--se-navy);
    font-weight: 600;
    display: block;
}

/* ============================================
   FreeTrialFormCtrl.ascx — form control styles
   Matches design B (Website/index.html reference)
   ============================================ */

.trial-form {
    width: 100%;
}

.trial-form .formContainer {
    display: flex;
    flex-direction: column;
}

/* --- Kill the global ::before asterisk from components.css on LABELS only --- */
.form-card label.fieldRequired::before {
    content: none !important;
    display: none !important;
}

/* --- Form group spacing (override components.css 16px) --- */
.form-card .v2-form-group {
    margin-bottom: 10px !important;
}

/* --- Labels --- */
.form-card .v2-form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--se-navy);
    font-size: 0.85rem;
}

/* Asterisk after label text: "Prénom *" */
.form-card label.fieldRequired::after {
    content: " *";
}

/* --- Input fields --- */
.form-card .v2-form-control {
    width: 100%;
    padding: 10px 12px;
    background: #f8f9fa;
    border: 1px solid #e2e5e9;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--se-navy);
    transition: all 0.3s ease;
    font-weight: 500;
    font-family: var(--font-body);
    box-sizing: border-box;
}

.form-card .v2-form-control:focus {
    outline: none;
    border-color: var(--se-orange);
    background: white;
    box-shadow: 0 0 0 4px rgba(29, 42, 57, 0.1);
}

.form-card .v2-form-control.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.form-card .v2-form-control::placeholder {
    color: rgba(0, 0, 0, 0.35);
}

/* --- Phone container --- */
.phone-container {
    display: flex;
    gap: 8px;
}

.phone-container select.v2-form-control {
    flex: 0 0 auto;
    width: auto;
    max-width: 160px;
    appearance: auto;
    cursor: pointer;
}

.phone-container input.v2-form-control {
    flex: 1;
}

/* --- Captcha row (wrapper for CaptchaCtrl inside free-trial form) --- */
.captcha-row {
    display: block;
}

.captcha-row .captchacontainer {
    margin-bottom: 8px;
}

.captcha-row .captchacontainer img.captcha {
    border: 1px solid var(--se-gray-border);
    border-right: none;
}

.captcha-row .txtCaptCha {
    border: 1px solid var(--se-gray-border);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: var(--font-body);
    background: white;
    transition: border-color 0.2s ease;
}

.captcha-row .txtCaptCha:focus {
    outline: none;
    border-color: var(--se-orange);
    box-shadow: 0 0 0 3px rgba(238, 101, 37, 0.1);
}

/* --- Submit button — orange gradient (design B), coins carrés --- */
.btn-trial,
button.btn-trial,
#trial .btn-trial {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    background: #EE6525 !important;
    color: white !important;
    border: none;
    border-radius: 0 !important;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font-body);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(238, 101, 37, 0.3);
    margin-top: 4px;
}

.btn-trial:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(238, 101, 37, 0.4);
}

.btn-trial:active {
    transform: translateY(0);
}

/* --- "* Champs obligatoires" note --- */
.required-note {
    font-size: 0.8rem;
    color: #999;
    margin-top: 10px;
    margin-bottom: 0;
    text-align: center;
}

/* Override the .resx <p class="fieldRequired"> inside .required-note */
.required-note .fieldRequired {
    font-size: 0.8rem;
    color: #999;
    margin: 0;
    padding: 0;
    font-weight: 400;
    display: inline;
}

/* Keep the ::before asterisk on the "Champs obligatoires" note */
.required-note .fieldRequired::before {
    content: "* " !important;
    display: inline !important;
    color: #999;
    font-size: 0.8rem;
    font-weight: 400;
}

/* --- Confirmation message --- */
.confirmationMessage {
    text-align: center;
    padding: 30px 20px;
    color: var(--se-navy);
}

.confirmationMessage i {
    color: var(--se-orange);
}

.hidden {
    display: none !important;
}

/* ============================================
   Section: Use Cases by Industry
   ============================================ */

.ft-usecases {
    padding: 80px 0;
    background: var(--se-offwhite, #f8f9fa);
}

.ft-usecases .section-title::after {
    margin: 20px auto 0;
}

.ft-usecases-subtitle {
    text-align: center;
    color: #64748b;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* Industry Tabs */
.ft-uc-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.ft-uc-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 28px;
    border: 2px solid var(--se-gray-border, #e2e8f0);
    border-radius: var(--radius-md);
    background: white;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--se-navy, #1a2b4a);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
}

.ft-uc-tab i {
    font-size: 1.1rem;
    color: var(--se-orange, #EE6525);
}

.ft-uc-tab:hover {
    border-color: var(--se-orange, #EE6525);
    color: var(--se-orange);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.ft-uc-tab.active {
    background: var(--se-navy, #1a2b4a);
    border-color: var(--se-navy, #1a2b4a);
    color: white;
    box-shadow: var(--shadow-orange);
}

.ft-uc-tab.active i {
    color: var(--se-orange, #EE6525);
}

/* Panels */
.ft-uc-panel {
    animation: ftUcFadeIn 0.4s ease;
}

.ft-uc-panel:not(.active) {
    display: none;
}

@keyframes ftUcFadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Use Case Cards Grid */
.ft-uc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 30px;
}

.ft-uc-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 30px;
    border: 1px solid var(--se-gray-border);
    transition: all var(--transition-smooth);
    text-align: left;
}

.ft-uc-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--se-orange);
}

.ft-uc-card > i {
    font-size: 1.5rem;
    color: var(--se-orange, #EE6525);
    margin-bottom: 20px;
    display: block;
}

.ft-uc-card h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--se-navy, #1a2b4a);
    margin: 0 0 var(--space-sm);
    line-height: 1.3;
}

.ft-uc-card p {
    font-size: 0.9rem;
    color: var(--se-gray);
    line-height: 1.7;
    margin: 0 0 15px;
}

.ft-uc-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--se-orange, #EE6525);
    text-decoration: none;
    transition: all var(--transition-base);
}

.ft-uc-link:hover {
    gap: 8px;
    color: var(--se-orange-dark);
}

.ft-uc-link i {
    font-size: 0.8rem;
}

/* SESAR Block */
.ft-uc-sesar {
    display: flex;
    gap: var(--space-lg);
    align-items: flex-start;
    background: var(--se-navy, #1a2b4a);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--se-orange);
    padding: var(--space-lg) var(--space-xl);
    color: white;
    position: relative;
    overflow: hidden;
}

.ft-uc-sesar-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: var(--se-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ft-uc-sesar-icon i {
    font-size: 1.5rem;
    color: white;
}

.ft-uc-sesar-content h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: white;
    margin: 0 0 var(--space-sm);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.ft-uc-sesar-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin: 0 0 var(--space-sm);
}

.ft-uc-sesar-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--se-orange, #EE6525);
    text-decoration: none;
    transition: all var(--transition-base);
}

.ft-uc-sesar-link:hover {
    gap: 8px;
    color: var(--se-orange-dark);
}

.ft-uc-sesar-link i {
    font-size: 0.8rem;
}

/* Responsive Use Cases */
@media (max-width: 1024px) {
    .ft-uc-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .ft-usecases {
        padding: 50px 0;
    }

    .ft-uc-tabs {
        gap: 6px;
    }

    .ft-uc-tab {
        padding: 10px 16px;
        font-size: 0.82rem;
    }

    .ft-uc-tab span {
        display: none;
    }

    .ft-uc-tab i {
        font-size: 1.3rem;
    }

    .ft-uc-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ft-uc-card {
        padding: 24px 20px;
    }

    .ft-uc-sesar {
        flex-direction: column;
        padding: 28px 22px;
        gap: 16px;
    }
}

/* --- Mobile responsive --- */
@media (max-width: 767px) {
    .phone-container {
        flex-direction: column;
    }

    .phone-container select.v2-form-control,
    .phone-container input.v2-form-control {
        width: 100%;
        max-width: none;
    }
}