/* ============================================================
   Sell Your Aircraft - Shared Styles
   Used by: /sell-your-aircraft, /for-dealers, /sell-your-aircraft/by-owner, /verified
   ============================================================ */

/* Full-width override */
#render-body { width: 100% !important; max-width: none !important; padding: 0 !important; margin: 0 !important; }

/* ---- Hero ---- */
.sya-hero {
    background: linear-gradient(135deg, #1a0a2e 0%, #3d1a5c 40%, #5c2d82 70%, #8a3995 100%);
    padding: 64px 0 72px;
    position: relative;
    overflow: hidden;
}
.sya-hero::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(138,57,149,0.25) 0%, transparent 70%);
    pointer-events: none;
}
.sya-hero::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -5%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(93,45,130,0.2) 0%, transparent 70%);
    pointer-events: none;
}
.sya-hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}
.sya-hero h1 {
    font-family: Inter, -apple-system, sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
    line-height: 1.2;
}
.sya-hero .sya-hero-sub {
    font-family: Inter, -apple-system, sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    margin: 0 0 20px;
    line-height: 1.4;
}
.sya-hero .sya-hero-desc {
    font-family: Inter, -apple-system, sans-serif;
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin: 0 auto 28px;
    max-width: 560px;
}
.sya-hero .sya-btn-white {
    display: inline-block;
    padding: 14px 36px;
    background: #fff;
    color: #8a3995;
    border: none;
    border-radius: 8px;
    font-family: Inter, -apple-system, sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.15s, transform 0.1s;
}
.sya-hero .sya-btn-white:hover {
    background: #f3f4f6;
    transform: translateY(-1px);
    text-decoration: none;
    color: #8a3995;
}

/* ---- Credibility Strip ---- */
.sya-cred-strip {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    padding: 24px 0;
}
.sya-cred-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
.sya-cred-item {
    text-align: center;
    font-family: Inter, -apple-system, sans-serif;
}
.sya-cred-value {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    line-height: 1.2;
}
.sya-cred-label {
    font-size: 12px;
    color: #6b7280;
    margin-top: 2px;
}

/* ---- Section ---- */
.sya-section {
    font-family: Inter, -apple-system, sans-serif;
    padding: 56px 0;
}
.sya-section--gray {
    background: #f9fafb;
}
.sya-section--white {
    background: #fff;
}
.sya-section-title {
    font-size: 26px;
    font-weight: 700;
    color: #111827;
    text-align: center;
    margin: 0 0 8px;
}
.sya-section-subtitle {
    font-size: 15px;
    color: #6b7280;
    text-align: center;
    margin: 0 auto 36px;
    max-width: 600px;
    line-height: 1.5;
}

/* ---- Audience Path Cards ---- */
.sya-paths {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}
.sya-path-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px 28px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s, transform 0.15s;
    display: block;
}
.sya-path-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transform: translateY(-3px);
    text-decoration: none;
    color: inherit;
}
.sya-path-icon {
    width: 56px;
    height: 56px;
    background: #f3e8f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.sya-path-icon svg {
    width: 28px;
    height: 28px;
    color: #8a3995;
}
.sya-path-title {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}
.sya-path-desc {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 16px;
}
.sya-path-link {
    font-size: 14px;
    font-weight: 600;
    color: #8a3995;
}

/* ---- Feature Grid (3 columns) ---- */
.sya-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 8px;
}
.sya-feature-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 24px 20px;
}
.sya-feature-icon {
    width: 44px;
    height: 44px;
    background: #f3e8f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.sya-feature-icon svg {
    width: 22px;
    height: 22px;
    color: #8a3995;
}
.sya-feature-title {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 6px;
}
.sya-feature-desc {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
}

/* ---- Buyer Callout ---- */
.sya-buyer-callout {
    text-align: center;
    padding: 20px;
    background: #faf8fb;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    margin-top: 36px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.sya-buyer-callout p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}
.sya-buyer-callout a {
    color: #8a3995;
    font-weight: 600;
    text-decoration: none;
}
.sya-buyer-callout a:hover {
    text-decoration: underline;
}

/* ---- Logo Scroll Band ---- */
.sya-logos-section {
    background: #fff;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    padding: 36px 0;
    overflow: hidden;
}
.sya-logos-title {
    font-family: Inter, -apple-system, sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    margin-bottom: 20px;
}
.sya-logos-track {
    display: flex;
    animation: sya-scroll 40s linear infinite;
    width: max-content;
}
.sya-logos-track:hover {
    animation-play-state: paused;
}
.sya-logo-placeholder {
    flex-shrink: 0;
    width: 140px;
    height: 48px;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin: 0 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Inter, -apple-system, sans-serif;
    font-size: 11px;
    color: #9ca3af;
    font-weight: 500;
}

/* ---- Testimonials ---- */
.sya-testimonials {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}
.sya-testimonial-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 24px;
}
.sya-testimonial-quote {
    font-size: 14px;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 16px;
    font-style: italic;
}
.sya-testimonial-author {
    font-size: 14px;
    font-weight: 700;
    color: #111827;
}
.sya-testimonial-role {
    font-size: 13px;
    color: #6b7280;
}

/* ---- FAQ ---- */
.sya-faq {
    max-width: 700px;
    margin: 0 auto;
}
.sya-faq-item {
    border-bottom: 1px solid #e5e7eb;
}
.sya-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    cursor: pointer;
    font-family: Inter, -apple-system, sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
}
.sya-faq-question:hover {
    color: #8a3995;
}
.sya-faq-question svg {
    width: 18px;
    height: 18px;
    color: #9ca3af;
    flex-shrink: 0;
    transition: transform 0.2s;
}
.sya-faq-item.open .sya-faq-question svg {
    transform: rotate(180deg);
}
.sya-faq-answer {
    display: none;
    padding: 0 0 18px;
    font-family: Inter, -apple-system, sans-serif;
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}
.sya-faq-item.open .sya-faq-answer {
    display: block;
}

/* ---- Coming Soon Teaser ---- */
.sya-coming-soon {
    text-align: center;
    padding: 20px;
    font-family: Inter, -apple-system, sans-serif;
    font-size: 13px;
    color: #9ca3af;
}

/* ---- Steps ---- */
.sya-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}
.sya-step {
    text-align: center;
    position: relative;
}
.sya-step-number {
    width: 40px;
    height: 40px;
    background: #8a3995;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Inter, -apple-system, sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin: 0 auto 12px;
}
.sya-step-title {
    font-family: Inter, -apple-system, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 6px;
}
.sya-step-desc {
    font-family: Inter, -apple-system, sans-serif;
    font-size: 13px;
    color: #6b7280;
    line-height: 1.4;
}

/* ---- Premium Services List ---- */
.sya-premium-list {
    max-width: 600px;
    margin: 0 auto;
}
.sya-premium-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
}
.sya-premium-item:last-child {
    border-bottom: none;
}
.sya-premium-item svg {
    width: 18px;
    height: 18px;
    color: #8a3995;
    flex-shrink: 0;
    margin-top: 2px;
}
.sya-premium-item-text {
    font-family: Inter, -apple-system, sans-serif;
    font-size: 14px;
    color: #374151;
}
.sya-premium-note {
    text-align: center;
    font-family: Inter, -apple-system, sans-serif;
    font-size: 13px;
    color: #9ca3af;
    margin-top: 16px;
}

/* ---- CTA Banner ---- */
.sya-cta-banner {
    background: linear-gradient(135deg, #1a0a2e 0%, #3d1a5c 50%, #8a3995 100%);
    border-radius: 12px;
    padding: 40px 32px;
    text-align: center;
    color: #fff;
    margin: 0 auto;
    max-width: 800px;
}
.sya-cta-banner h3 {
    font-family: Inter, -apple-system, sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 8px;
}
.sya-cta-banner p {
    font-family: Inter, -apple-system, sans-serif;
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    margin: 0 0 24px;
}

/* ---- Dealer Form ---- */
.sya-form-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 36px;
    max-width: 560px;
    margin: 0 auto;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.sya-form-title {
    font-family: Inter, -apple-system, sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 4px;
}
.sya-form-subtitle {
    font-family: Inter, -apple-system, sans-serif;
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 28px;
}
.sya-field {
    margin-bottom: 18px;
}
.sya-field label {
    display: block;
    font-family: Inter, -apple-system, sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
}
.sya-field input[type="text"],
.sya-field input[type="email"],
.sya-field input[type="url"],
.sya-field select,
.sya-field textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-family: Inter, -apple-system, sans-serif;
    font-size: 14px;
    color: #374151;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
    background: #fff;
}
.sya-field input:focus,
.sya-field select:focus,
.sya-field textarea:focus {
    border-color: #8a3995;
    box-shadow: 0 0 0 3px rgba(138,57,149,0.08);
}
.sya-field input::placeholder { color: #9ca3af; }
.sya-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    background: #8a3995;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: Inter, -apple-system, sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s, transform 0.1s;
    margin-top: 4px;
}
.sya-submit:hover { background: #7a2d85; transform: translateY(-1px); }
.sya-submit:active { transform: translateY(0); }

/* Success state */
.sya-success {
    text-align: center;
    padding: 40px 24px;
}
.sya-success-icon {
    width: 64px;
    height: 64px;
    background: #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.sya-success-icon svg { width: 32px; height: 32px; color: #16a34a; }
.sya-success h3 {
    font-family: Inter, -apple-system, sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 8px;
}
.sya-success p {
    font-family: Inter, -apple-system, sans-serif;
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    max-width: 420px;
    margin: 0 auto;
}
.sya-success-steps {
    text-align: left;
    max-width: 380px;
    margin: 20px auto 0;
}
.sya-success-steps li {
    font-family: Inter, -apple-system, sans-serif;
    font-size: 14px;
    color: #374151;
    padding: 6px 0;
    line-height: 1.4;
}

/* ---- Trust / Verified Page ---- */
.sya-trust-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-top: 4px solid #8a3995;
    border-radius: 10px;
    padding: 28px 24px;
}
.sya-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: #f3e8f9;
    border-radius: 20px;
    font-family: Inter, -apple-system, sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #8a3995;
    margin-bottom: 12px;
}
.sya-trust-badge svg {
    width: 14px;
    height: 14px;
}

/* ---- Keyframes ---- */
@keyframes sya-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .sya-features { grid-template-columns: repeat(2, 1fr); }
    .sya-testimonials { grid-template-columns: 1fr; }
    .sya-steps { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 767px) {
    .sya-hero { padding: 40px 0 48px; }
    .sya-hero h1 { font-size: 28px; }
    .sya-hero .sya-hero-sub { font-size: 18px; }
    .sya-hero .sya-hero-desc { font-size: 14px; padding: 0 8px; }
    .sya-cred-inner { gap: 20px; }
    .sya-cred-value { font-size: 16px; }
    .sya-section { padding: 36px 0; }
    .sya-section-title { font-size: 22px; }
    .sya-paths { grid-template-columns: 1fr; }
    .sya-features { grid-template-columns: 1fr; }
    .sya-steps { grid-template-columns: 1fr; gap: 16px; }
    .sya-form-card { padding: 24px 18px; box-shadow: none; }
    .sya-submit { width: 100%; justify-content: center; }
}
