.configurator {
    background: white;
    border-radius: 16px;
    width: 100%;
    max-width: 860px;
    height: 80vh;
    margin: 0 auto;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    display: flex;
    flex-direction: column;
    margin-top: 4rem;
    margin-bottom: 4rem;
    padding: 2rem 2.5rem;
    font-family: 'Outfit', sans-serif;
    overflow: hidden;
    box-sizing: border-box;
}

:root {
    --red: #B80C09;
    --red-dark: #8A0907;
    --dark: #2B3036;
    --text-muted: #686D6C;
    --bg-light: #f5f6f7;
    --bg-mid: #eceef0;
    --border: #D1D4D9;
    --white: #ffffff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--bg-light);
    color: var(--dark);
    line-height: 1.6;
}

/* --------------------------------  navbar modifs  ------------------------------------------------ */

.nav-links{
    display: none!important;
}

.nav-right{
    display: none!important;
}

.hamburger{
    display: none!important;
}

.nav-content {
    justify-content: center!important;
}

.logo{
    pointer-events: none;
}

/* --------------------------------  HERO  ------------------------------------------------ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f6f7 0%, #e9ebed 100%);
}

.hero .container {
    max-width: 1400px;
    margin-inline: auto;
    padding-inline: 2rem;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

/* subtle background texture */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(184,12,9,0.04) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(43,48,54,0.04) 0%, transparent 40%);
    pointer-events: none;
}

/* ── LEFT PANEL ── */
.hero-left {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: clamp(2rem, 3.2vw, 3.1rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.12;
    letter-spacing: -0.025em;
}

.hero-title .accent {
    color: var(--red);
    position: relative;
    display: inline;
}

.hero-title .accent::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 3px;
    background: var(--red);
    border-radius: 2px;
    opacity: 0.3;
}

.hero-subtitle {
    font-size: clamp(0.9rem, 1.1vw, 1.05rem);
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 520px;
}

/* divider line */
.hero-divider {
    width: 48px;
    height: 3px;
    background: var(--red);
    border-radius: 2px;
}

/* ── CTA BUTTONS ── */
.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    margin-top: 0.25rem;
}

.btn-call {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background: var(--red);
    color: white;
    font-family: 'DM Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 1.05rem 2.4rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 18px rgba(184,12,9,0.32);
    white-space: nowrap;
}

.btn-call:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(184,12,9,0.4);
}

.btn-call .phone-icon {
    width: 22px;
    height: 22px;
    animation: phoneRing 1.8s ease-in-out infinite;
    transform-origin: center;
}

@keyframes phoneRing {
    0%, 100% { transform: rotate(0deg); }
    10% { transform: rotate(-14deg); }
    20% { transform: rotate(14deg); }
    30% { transform: rotate(-14deg); }
    40% { transform: rotate(14deg); }
    50% { transform: rotate(0deg); }
}

.btn-configurator {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    background: white;
    color: var(--dark);
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 1.05rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    border: 2px solid var(--border);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-configurator:hover {
    border-color: var(--red);
    color: var(--red);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.btn-configurator svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn-configurator:hover svg {
    transform: translateY(3px);
}

/* ── TRUST ROW ── */
.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.trust-item svg {
    width: 16px;
    height: 16px;
    color: var(--red);
    flex-shrink: 0;
}

/* ── RIGHT PANEL ── */
.hero-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    z-index: 1;
}

/* big decorative arc behind the illustration */
.hero-right::before {
    content: '';
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184,12,9,0.07) 0%, transparent 70%);
    pointer-events: none;
}

/* photo container */
.gate-illustration {
    position: relative;
    width: 100%;
    max-width: 480px;
}

.gate-illustration .hero-photo {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
    object-fit: cover;
    box-shadow: 0 24px 48px rgba(43,48,54,0.18);
}

/* floating badge – intervention */
.badge-intervention {
    position: absolute;
    bottom: 28px;
    left: -16px;
    background: var(--red);
    color: white;
    border-radius: 14px;
    padding: 0.8rem 1.2rem;
    box-shadow: 0 8px 24px rgba(184,12,9,0.35);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.badge-intervention svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.badge-intervention .bi-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.badge-intervention .bi-label {
    font-size: 0.7rem;
    font-weight: 500;
    opacity: 0.85;
}

.badge-intervention .bi-value {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

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

    .hero-right::before {
        right: 50%;
        transform: translate(50%, -50%);
    }

    .badge-intervention { left: 10px; bottom: 20px; }
}

@media (max-width: 640px) {
    .hero .container {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .btn-call { font-size: 1.05rem; padding: 0.95rem 1.8rem; }
    .btn-configurator { font-size: 0.9rem; padding: 0.95rem 1.6rem; }

    .hero-ctas { flex-direction: column; align-items: flex-start; }

    .trust-row { gap: 1rem; }
}

/* --------------------------------  CONFIGURATOR  ------------------------------------------------ */

/* ── Progress ── */
.cfg-progress-bar {
    width: 100%;
    height: 6px;
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.cfg-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #8B0000, #c41e1e);
    border-radius: 10px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.cfg-progress-fill::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: cfg-shimmer 2s infinite;
}

@keyframes cfg-shimmer {
    0%   { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.cfg-progress-text {
    text-align: center;
    margin-top: 0.6rem;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    color: #5a6c7d;
    font-weight: 500;
}

/* ── Step container ── */
.cfg-steps {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.cfg-step {
    display: none;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    justify-content: center;
}

.cfg-step.active {
    display: flex;
    animation: cfg-fadeIn 0.4s ease;
}

@keyframes cfg-fadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

.cfg-question {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

/* ── Option cards (steps 1 & 2) ── */
.cfg-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    /* flex: 1;  */
    min-height: 0;
}

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

.cfg-card {
    border: 2px solid #ddd;
    border-radius: 12px;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
    background: #f8f9fa;
    min-height: 0;
}

.cfg-card:hover {
    border-color: #8B0000;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(139,0,0,0.1);
}

.cfg-card.selected {
    border-color: #8B0000;
    transform: scale(1.02);
}

.cfg-card.selected .cfg-card-label {
    background: #8B0000;
    color: white;
}

.cfg-img-wrap {
    flex: 1;
    min-height: 0;
    overflow: hidden;
    background: white;
}

.cfg-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.cfg-card:hover .cfg-img-wrap img {
    transform: scale(1.03);
}

.cfg-card-label {
    flex-shrink: 0;
    text-align: center;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: #2c3e50;
    background: #f8f9fa;
    transition: background 0.2s, color 0.2s;
}


@media (max-width: 600px) {
    /* Step 1: stack the two gate type cards vertically */
    .cfg-step[data-step="1"] .cfg-grid,
    .cfg-step[data-step="2"] .cfg-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    /* Make each card horizontal (image left, label right) */
    .cfg-step[data-step="1"] .cfg-card,
    .cfg-step[data-step="2"] .cfg-card {
        flex-direction: row;
        height: 90px;
    }

    .cfg-step[data-step="1"] .cfg-img-wrap,
    .cfg-step[data-step="2"] .cfg-img-wrap {
        width: 110px;
        flex: 0 0 110px;
        height: 100%;
    }

    .cfg-step[data-step="1"] .cfg-card-label,
    .cfg-step[data-step="2"] .cfg-card-label {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
    }
}

/* ── Carousel (step 3) ── */
.cfg-carousel-wrapper {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cfg-carousel-stage {
    flex: 1;
    min-height: 0;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: white;
}

.cfg-carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.cfg-carousel-slide {
    flex: 0 0 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
}

.cfg-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
}

/* Selected overlay */
.cfg-carousel-slide.selected::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 3px solid #8B0000;
    border-radius: 12px;
    pointer-events: none;
}

.cfg-carousel-slide.selected .cfg-slide-check {
    display: flex;
}

.cfg-slide-check {
    display: none;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    background: #8B0000;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(139,0,0,0.3);
}

/* Arrows */
.cfg-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    font-size: 18px;
    color: #2c3e50;
}

.cfg-arrow:hover {
    background: #8B0000;
    color: white;
    box-shadow: 0 4px 14px rgba(139,0,0,0.25);
    transform: translateY(-50%) scale(1.08);
}

.cfg-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: translateY(-50%) scale(1);
    background: white;
    color: #2c3e50;
}

.cfg-arrow-prev { left: 10px; }
.cfg-arrow-next { right: 10px; }

/* Dots & counter */
.cfg-carousel-footer {
    flex-shrink: 0;
    display: grid;
    grid-template-columns: 52px 1fr 52px;
    align-items: center;
}

.cfg-carousel-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.cfg-carousel-name {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
}

.cfg-carousel-meta {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.82rem;
    color: #5a6c7d;
}

.cfg-meta-price {
    font-weight: 700;
    color: #8B0000;
    font-size: 0.9rem;
}

.cfg-meta-sep {
    color: #ccc;
}

.cfg-meta-material {
    font-weight: 500;
}

.cfg-carousel-counter {
    font-size: 0.82rem;
    color: #5a6c7d;
    white-space: nowrap;
    text-align: right;
}

/* Touch/drag hint */
.cfg-swipe-hint {
    font-size: 0.78rem;
    color: #aab;
    text-align: center;
    flex-shrink: 0;
    margin-top: -0.25rem;
}

.cfg-step[data-step="5"] {
    justify-content: space-between;
}
.cfg-colors-wrapper {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    align-items: flex-start;
}

.cfg-color-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
    width: 100%;
    box-sizing: border-box;
}

.cfg-color-swatch {
    display: flex;
    align-items: center;
    gap: 0;
    border: 2px solid var(--swatch-border, transparent);
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    background: white;
    font-family: inherit;
    transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
    text-align: left;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    padding: 0;
}

.cfg-color-swatch:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 14px rgba(0,0,0,0.12);
}

.cfg-color-swatch.selected {
    border-color: #8B0000;
    box-shadow: 0 4px 14px rgba(139,0,0,0.2);
    transform: scale(1.02);
}

.cfg-swatch-bar {
    flex-shrink: 0;
    width: 52px;
    align-self: stretch;
    background: var(--swatch-bg, #ccc);
    border-radius: 0;
}

.cfg-swatch-rainbow {
    background: linear-gradient(180deg, #b0b8c1, #e8eaec, #ffffff);
}

.cfg-swatch-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0.65rem 0.85rem;
    gap: 0.1rem;
}

.cfg-swatch-code {
    font-size: 0.88rem;
    font-weight: 700;
    color: #2c3e50;
}

.cfg-swatch-name {
    font-size: 0.78rem;
    color: #6b7c8d;
    font-weight: 400;
}

/* ── Step 5: Form ── */
.cfg-form-intro {
    flex-shrink: 0;
    background: linear-gradient(135deg, #fdf8f8, #fff5f5);
    border: 1px solid #f0d8d8;
    border-radius: 10px;
    padding: 0.85rem 1.1rem;
    margin-bottom: 0.9rem;
}

.cfg-form-intro-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: #8B0000;
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.cfg-perks {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.3rem 1rem;
}

.cfg-perks li {
    font-size: 0.82rem;
    color: #2c3e50;
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
}

.cfg-perk-icon {
    color: #8B0000;
    font-size: 0.65rem;
    flex-shrink: 0;
}

.cfg-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
    gap: 0.6rem;
    justify-content: center;
}

.cfg-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
}

.cfg-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.cfg-form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: #5a6c7d;
}

.cfg-required {
    color: #8B0000;
}

.cfg-form-group input,
.cfg-form-group textarea {
    font-family: inherit;
    font-size: 0.9rem;
    padding: 0.6rem 0.85rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.2s;
    color: #2c3e50;
    background: white;
}

.cfg-form-group input:focus,
.cfg-form-group textarea:focus {
    border-color: #8B0000;
}

.cfg-form-group input.cfg-invalid,
.cfg-form-group textarea.cfg-invalid {
    border-color: #e74c3c;
}

.cfg-form-group textarea {
    resize: none;
    height: 68px;
}

/* ── Step 6: Success ── */
.cfg-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    text-align: center;
    gap: 0.6rem;
    animation: cfg-fadeIn 0.5s ease;
}

.cfg-success-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8B0000, #c41e1e);
    color: white;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(139,0,0,0.25);
}

.cfg-success-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.cfg-success-sub {
    font-size: 0.9rem;
    color: #5a6c7d;
    margin: 0;
}

.cfg-summary-box {
    width: 100%;
    max-width: 480px;
    background: #f8f9fa;
    border: 1px solid #e8ecef;
    border-radius: 10px;
    padding: 0.85rem 1.1rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.cfg-summary-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    font-size: 0.85rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.35rem;
}

.cfg-summary-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.cfg-summary-label {
    color: #5a6c7d;
    font-weight: 500;
    white-space: nowrap;
}

.cfg-summary-value {
    color: #2c3e50;
    font-weight: 600;
    text-align: right;
}

@media (max-width: 600px) {
    .cfg-form-row { grid-template-columns: 1fr; }
    .cfg-perks { grid-template-columns: 1fr; }
}

/* ── Navigation buttons ── */
.cfg-nav {
    flex-shrink: 0;
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.25rem;
}

.cfg-btn {
    padding: 0.85rem 2.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s ease;
    border: none;
}

.cfg-btn-primary {
    background: #8B0000;
    color: white;
    box-shadow: 0 4px 12px rgba(139,0,0,0.2);
}

.cfg-btn-primary:hover:not(:disabled) {
    background: #a00000;
    transform: translateY(-1px);
}

.cfg-btn-primary:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

.cfg-btn-secondary {
    background: white;
    color: #2c3e50;
    border: 2px solid #ddd;
}

.cfg-btn-secondary:hover {
    border-color: #8B0000;
    color: #8B0000;
}

@media (max-width: 600px) {
    .configurator { padding: 1.25rem; height: auto; min-height: 80vh; }
    .cfg-grid-3 { grid-template-columns: 1fr; }
    .cfg-nav { flex-direction: column; }
    .cfg-btn { width: 100%; }
    .cfg-arrow { width: 32px; height: 32px; font-size: 14px; }
}

@media (max-width: 860px) {
    .cfg-grid-3 { grid-template-columns: repeat(2, 1fr); }
}


/* ── DIFFÉRENCIATION SECTION ── */
.diff-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.diff-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.diff-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: #2B3036;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.diff-subtitle {
    font-size: 1.1rem;
    color: #686D6C;
    font-weight: 400;
    max-width: 560px;
    margin-inline: auto;
    line-height: 1.6;
}

.diff-subtitle strong {
    color: #2B3036;
    font-weight: 700;
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.diff-card {
    background: linear-gradient(135deg, #f5f6f7 0%, #eceef0 100%);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.diff-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(184, 12, 9, 0.12);
    border-color: #B80C09;
}

.diff-icon {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, #B80C09 0%, #8A0907 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 14px rgba(184, 12, 9, 0.3);
}

.diff-icon svg {
    width: 32px;
    height: 32px;
    color: #ffffff;
}

.diff-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2B3036;
    margin-bottom: 0.75rem;
}

.diff-card-desc {
    font-size: 0.95rem;
    color: #686D6C;
    line-height: 1.65;
}

@media (max-width: 1024px) {
    .diff-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .diff-section {
        padding: 4rem 0;
    }
}

@media (max-width: 640px) {
    .diff-section {
        padding: 3rem 0;
    }

    .diff-header {
        margin-bottom: 2.5rem;
    }

    .diff-card {
        padding: 2rem;
    }
}



/* ── PROCESS SECTION ── */
.process-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f5f6f7 0%, #eceef0 100%);
}

.process-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: #2B3036;
    margin-bottom: 4rem;
    letter-spacing: -0.02em;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

/* horizontal connecting line between steps */
.process-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: calc(12.5% );
    width: 75%;
    height: 2px;
    background: #D1D4D9;
    z-index: 0;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1.25rem;
    position: relative;
    z-index: 1;
}

.process-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #B80C09 0%, #8A0907 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
    box-shadow: 0 4px 16px rgba(184, 12, 9, 0.3);
    flex-shrink: 0;
    border: 4px solid #f5f6f7;
    position: relative;
    z-index: 2;
}

.process-icon svg {
    width: 34px;
    height: 34px;
    color: #ffffff;
}

/* hide the inline connector divs — we use the ::before line instead */
.process-connector { display: none; }

.process-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.process-step-number {
    font-size: 0.75rem;
    font-weight: 800;
    color: #B80C09;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.process-step-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #2B3036;
    line-height: 1.3;
}

.process-step-desc {
    font-size: 0.9rem;
    color: #686D6C;
    line-height: 1.65;
    max-width: 220px;
}

@media (max-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 2rem;
    }

    .process-grid::before {
        display: none;
    }

    .process-section {
        padding: 4rem 0;
    }
}

@media (max-width: 640px) {
    .process-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .process-section {
        padding: 3rem 0;
    }

    .process-title {
        margin-bottom: 3rem;
    }
}

/* --------------------------------  whoe are we  ------------------------------------------------ */

.qsn {
    /* font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif; */
    padding: 96px 0;
    background: #ffffff;
}
 
.qsn-container {
    max-width: 1400px;
    margin-inline: auto;
    padding-inline: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
 
.qsn-photo-wrap {
    position: relative;
}
 
.qsn-photo-wrap img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
    object-fit: cover;
    box-shadow: 0 24px 48px rgba(43,48,54,0.18);
}
 
.qsn-badge {
    position: absolute;
    bottom: 28px;
    right: -16px;
    background: #8B0000;
    color: white;
    border-radius: 14px;
    padding: 0.8rem 1.2rem;
    box-shadow: 0 8px 24px rgba(139,0,0,0.35);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
 
.qsn-badge svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    stroke: white;
    fill: none;
}
 
.qsn-badge-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}
 
.qsn-badge-label {
    font-size: 0.7rem;
    font-weight: 500;
    opacity: 0.85;
}
 
.qsn-badge-value {
    font-size: 1rem;
    font-weight: 800;
    line-height: 1;
}
 
.qsn-text {
    display: flex;
    flex-direction: column;
    gap: 0;
}
 
.qsn-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #8B0000;
    margin: 0 0 1rem 0;
}
 
.qsn-title {
    font-size: clamp(1.8rem, 2.5vw, 2.6rem);
    font-weight: 800;
    color: #2b3036;
    line-height: 1.12;
    letter-spacing: -0.025em;
    margin: 0 0 1.5rem 0;
}
 
.qsn-divider {
    width: 48px;
    height: 3px;
    background: #8B0000;
    border-radius: 2px;
    margin-bottom: 1.75rem;
}
 
.qsn-body p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #6b7280;
    margin: 0 0 1.25rem 0;
}
 
.qsn-body p:last-child {
    margin: 0;
}
 
.qsn-sig {
    margin-top: 2.25rem;
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 1.75rem;
    border-top: 1px solid #f0f0f0;
}
 
.qsn-avatars {
    display: flex;
}
 
.qsn-av {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #f0d0d0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    color: #8B0000;
    border: 2px solid white;
    box-shadow: 0 0 0 1px #e0b0b0;
}
 
.qsn-av:last-child {
    margin-left: -10px;
}
 
.qsn-sig-text strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #2b3036;
}
 
.qsn-sig-text span {
    font-size: 12px;
    color: #9ca3af;
}
 
@media (max-width: 1024px) {
    .qsn-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .qsn-badge { right: 10px; bottom: 20px; }
}
 
@media (max-width: 640px) {
    .qsn { padding: 64px 0; }
    .qsn-title { font-size: 1.7rem; }
    .qsn-body p { font-size: 0.95rem; }
}

/* ----------------- FINAL CTA SECTION ----------------- */
.final-cta-section {
    padding: 5rem 0;
    background-color: #2B3036;
}

.final-cta-content {
    text-align: center;
}

.final-cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 2.5rem;
    letter-spacing: -0.02em;
}

.footer-line {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    text-align: left;
}

@media (max-width: 768px) {
    .final-cta-section {
        padding: 4rem 0;
    }

    .final-cta-title {
        margin-bottom: 2rem;
    }

    .footer-line {
        margin-top: 3rem;
        padding-top: 1.5rem;
    }

    .footer-text {
        text-align: center;
    }
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: #B80C09;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 1.25rem 3rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(184, 12, 9, 0.3);
    margin-bottom: 1.5rem;
}

.cta-button:hover {
    background-color: #8A0907;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(184, 12, 9, 0.4);
}

.phone-icon {
    width: 28px;
    height: 28px;
    animation: phoneRing 1.5s ease-in-out infinite;
    transform-origin: center;
}

@keyframes phoneRing {
    0%, 100% {
        transform: rotate(0deg);
    }
    10% {
        transform: rotate(-15deg);
    }
    20% {
        transform: rotate(15deg);
    }
    30% {
        transform: rotate(-15deg);
    }
    40% {
        transform: rotate(15deg);
    }
    50% {
        transform: rotate(0deg);
    }
}