/* ==========================================================
  
   ========================================================== */

/* ============================================================
   DESPRE NOI
   ============================================================ */
.about {
    background: #fff;
    padding: 80px 32px;
    position: relative;
    overflow: hidden;
}
.about::before {
    content: ''; position: absolute; top: -120px; right: -120px;
    width: 400px; height: 400px; border-radius: 50%;
    background: radial-gradient(circle, rgba(36,77,168,.06), transparent 70%);
    pointer-events: none;
}

.about-inner {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 64px; align-items: center;
}

.about-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 11px; font-weight: 500; letter-spacing: 3px;
    text-transform: uppercase; color: #244da8; margin-bottom: 16px;
}


    .about-eyebrow::before, .about-eyebrow::after {
        content: '';
        width: 24px;
        height: 1px;
        background: #244da8;
        opacity: .5;
    }

.about-title {
    font-family: 'Fraunces', serif; font-size: 36px;
    font-weight: 300; color: #111; line-height: 1.15; margin-bottom: 20px;
}
.about-title em { font-style: italic; color: #244da8; }

.about-desc {
    font-size: 15px; font-weight: 300; color: #666;
    line-height: 1.8; margin-bottom: 28px;
}

/* Valori */
.about-vals  { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.av {
    display: flex; align-items: flex-start; gap: 12px;
    background: #f7f6f2; border-radius: 12px; padding: 14px 16px;
    border: 1px solid rgba(0,0,0,.05);
    transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s;
}
.av:hover { transform: translateX(6px); box-shadow: 0 4px 16px rgba(36,77,168,.07); }
.av-icon {
    width: 36px; height: 36px; border-radius: 9px;
    background: #eef3ff; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.av-icon svg { width: 18px; height: 18px; }
.av-text h4 { font-size: 13px; font-weight: 600; color: #111; margin-bottom: 2px; }
.av-text p  { font-size: 12px; font-weight: 300; color: #888; line-height: 1.5; }

/* CTA */
.about-cta {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, #244da8, #2d5fc4);
    color: #fff; font-size: 13px; font-weight: 500;
    padding: 12px 24px; border-radius: 40px; text-decoration: none;
    transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s;
    box-shadow: 0 4px 20px rgba(36,77,168,.3);
}
.about-cta:hover {
    transform: translateY(-3px); box-shadow: 0 8px 30px rgba(36,77,168,.45);
    color: #fff; text-decoration: none;
}
.about-cta svg { width: 14px; height: 14px; transition: transform .25s; }
.about-cta:hover svg { transform: translateX(3px); }

/* Stats */
.about-right  { display: flex; flex-direction: column; gap: 16px; }
.stats-grid   { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.stat-card {
    background: #f7f6f2; border-radius: 16px; padding: 24px 20px;
    border: 1px solid rgba(0,0,0,.06); text-align: center;
    transition: transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .3s;
    position: relative; overflow: hidden;
}
.stat-card:hover { transform: translateY(-5px); box-shadow: 0 14px 40px rgba(0,0,0,.08); }
.stat-card::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
    background: var(--sc, #244da8);
    transform: scaleX(0); transform-origin: left;
    transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.stat-card:hover::after { transform: scaleX(1); }
.stat-val {
    font-family: 'Fraunces', serif; font-size: 36px;
    font-weight: 700; color: var(--sc, #244da8); line-height: 1; margin-bottom: 6px;
}
.stat-val span { font-size: 20px; }
.stat-lbl { font-size: 12px; font-weight: 400; color: #888; letter-spacing: .3px; }

/* Team strip */
.team-strip {
    background: #f7f6f2; border-radius: 16px; padding: 18px 20px;
    border: 1px solid rgba(0,0,0,.06);
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.team-avatars { display: flex; }
.ta {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--tc, #244da8); border: 2px solid #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 600; color: #fff;
    margin-left: -8px;
}
.ta:first-child { margin-left: 0; }
.team-text { font-size: 12px; font-weight: 400; color: #666; }
.team-text strong { color: #111; font-weight: 600; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: #f7f6f2; padding: 80px 32px; }

.contact-inner {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1.4fr;
    gap: 64px; align-items: start;
}

.contact-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 11px; font-weight: 500; letter-spacing: 3px;
    text-transform: uppercase; color: #244da8; margin-bottom: 16px;
}
    .contact-eyebrow::before, .contact-eyebrow::after {
        content: '';
        width: 24px;
        height: 1px;
        background: #244da8;
        opacity: .5;
    }

.contact-title {
    font-family: 'Fraunces', serif; font-size: 32px;
    font-weight: 300; color: #111; line-height: 1.15; margin-bottom: 16px;
}
.contact-title em { font-style: italic; color: #244da8; }
.contact-desc {
    font-size: 14px; font-weight: 300; color: #777;
    line-height: 1.75; margin-bottom: 28px;
}

/* Contact details */
.contact-details { display: flex; flex-direction: column; gap: 12px; }
.cd {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 14px; background: #fff; border-radius: 12px;
    border: 1px solid rgba(0,0,0,.06); text-decoration: none; color: inherit;
    transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.cd:hover { transform: translateX(4px); color: inherit; text-decoration: none; }
.cd-icon {
    width: 34px; height: 34px; border-radius: 9px;
    background: #eef3ff; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cd-icon svg { width: 16px; height: 16px; }
.cd-label {
    font-size: 10px; font-weight: 500; color: #aaa;
    text-transform: uppercase; letter-spacing: .8px;
    display: block; margin-bottom: 1px;
}
.cd-val { font-size: 13px; font-weight: 500; color: #111; }

/* Form card */
.contact-form-wrap {
    background: #fff; border-radius: 20px; padding: 36px;
    border: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 4px 24px rgba(0,0,0,.04);
}
.cf-title {
    font-family: 'Fraunces', serif; font-size: 20px;
    font-weight: 600; color: #111; margin-bottom: 24px;
}

.cf-row     { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cf-group   { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.cf-group.full { grid-column: span 2; }

.cf-label {
    font-size: 11px; font-weight: 500; color: #555;
    letter-spacing: .5px; text-transform: uppercase;
}

.cf-input, .cf-textarea, .cf-select {
    width: 100%; padding: 11px 14px;
    background: #f7f6f2; border: 1px solid rgba(0,0,0,.08);
    border-radius: 10px; font-family: 'DM Sans', sans-serif;
    font-size: 14px; font-weight: 300; color: #111;
    transition: border-color .2s, box-shadow .2s, background .2s;
    outline: none;
}
.cf-input:focus, .cf-textarea:focus, .cf-select:focus {
    background: #fff; border-color: #244da8;
    box-shadow: 0 0 0 3px rgba(36,77,168,.1);
}
.cf-textarea {
    resize: vertical; min-height: 110px; line-height: 1.6;
}
.cf-select {
    cursor: pointer; appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 12px center;
    padding-right: 32px;
}

.cf-submit {
    width: 100%; padding: 13px;
    background: linear-gradient(135deg, #244da8, #2d5fc4);
    color: #fff; font-family: 'DM Sans', sans-serif;
    font-size: 14px; font-weight: 500; letter-spacing: .3px;
    border: none; border-radius: 12px; cursor: pointer;
    transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s;
    box-shadow: 0 4px 20px rgba(36,77,168,.3);
    display: flex; align-items: center; justify-content: center; gap: 8px;
    margin-top: 6px;
}
.cf-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(36,77,168,.45); }
.cf-submit:active { transform: scale(.98); }
.cf-submit svg { width: 16px; height: 16px; transition: transform .25s; }
.cf-submit:hover svg { transform: translateX(3px); }

.cf-note {
    font-size: 11px; font-weight: 300; color: #aaa;
    text-align: center; margin-top: 12px; line-height: 1.5;
}

/* Success state */
.cf-success {
    flex-direction: column; align-items: center;
    text-align: center; padding: 24px 0; gap: 12px;
}
.cf-success-icon {
    width: 52px; height: 52px; border-radius: 50%;
    background: #e8f7f1; display: flex; align-items: center; justify-content: center;
}
.cf-success-icon svg { width: 26px; height: 26px; }
.cf-success h4 {
    font-family: 'Fraunces', serif; font-size: 20px;
    font-weight: 600; color: #111;
}
.cf-success p { font-size: 13px; font-weight: 300; color: #777; }

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .about-inner, .contact-inner { grid-template-columns: 1fr; gap: 40px; }
    .about::before { display: none; }
    .about, .contact { padding: 56px 24px; }
}
@media (max-width: 500px) {
    .cf-row { grid-template-columns: 1fr; }
    .about-title, .contact-title { font-size: 26px; }
}
