/* ============================================
   DIRAC GROUP - PROFESSIONAL DESIGN
   Established. Trustworthy. Global.
   ============================================ */

/* === VARIABLES === */
:root {
    --color-primary: #0a0a0a;
    --color-primary-dark: #000000;
    --color-accent: #1e4d6b;
    --color-accent-dark: #163a52;
    --color-text: #222;
    --color-text-light: #444;
    --color-border: #ddd;
    --color-bg: #ffffff;
    --color-bg-dark: #0a0a0a;
    --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-heading: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-bg);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--color-accent);
    text-decoration: underline;
}

a:hover {
    color: var(--color-accent-dark);
}

/* === CONTAINER === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.container-narrow {
    max-width: 800px;
}

/* === HEADER === */
.header {
    background: var(--color-bg);
    border-bottom: 2px solid var(--color-primary);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--color-primary);
}

.logo-icon {
    width: 36px;
    height: 36px;
    margin-right: 12px;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 22px;
    letter-spacing: -0.02em;
}

.nav-desktop {
    display: none;
    gap: 40px;
}

.nav-link {
    color: var(--color-text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.nav-link:hover {
    color: var(--color-accent);
    text-decoration: none;
}

.menu-toggle {
    background: none;
    border: none;
    color: var(--color-text);
    cursor: pointer;
    padding: 8px;
}

.nav-mobile {
    display: none;
    flex-direction: column;
    padding: 20px 24px;
    border-top: 1px solid var(--color-border);
    background: var(--color-bg);
}

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

.nav-mobile-link {
    color: var(--color-text);
    text-decoration: none;
    padding: 14px 0;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    border-bottom: 1px solid var(--color-border);
}

.nav-mobile-link:last-child {
    border-bottom: none;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
    .menu-toggle {
        display: none;
    }
}

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
}

.btn:hover {
    text-decoration: none;
}

.btn-primary {
    background: var(--color-accent);
    color: #fff;
    border: 2px solid var(--color-accent);
}

.btn-primary:hover {
    background: var(--color-accent-dark);
    border-color: var(--color-accent-dark);
}

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

.btn-secondary:hover {
    background: var(--color-primary);
    color: #fff;
}

.btn-large {
    padding: 18px 48px;
    font-size: 16px;
}

/* === HERO === */
.hero {
    background: var(--color-primary);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.95);
    font-style: normal;
}

.hero-description {
    font-size: 17px;
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto 28px;
    color: rgba(255,255,255,0.8);
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero .btn-primary {
    background: var(--color-accent);
    color: #fff;
    border-color: var(--color-accent);
}

.hero .btn-primary:hover {
    background: var(--color-accent-dark);
    border-color: var(--color-accent-dark);
}

.hero .btn-secondary {
    border-color: rgba(255,255,255,0.5);
    color: #fff;
}

.hero .btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}

@media (max-width: 768px) {
    .hero {
        padding: 50px 0;
    }
    .hero h1 {
        font-size: 36px;
    }
    .hero-subtitle {
        font-size: 17px;
    }
    .hero-description {
        font-size: 15px;
    }
}

/* === PAGE HERO === */
.page-hero {
    background: var(--color-primary);
    color: #fff;
    padding: 50px 0;
    text-align: center;
}

.page-hero h1 {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.page-hero p {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    max-width: 520px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .page-hero {
        padding: 50px 0;
    }
    .page-hero h1 {
        font-size: 30px;
    }
}

/* === TRUST BAR === */
.trust-bar {
    background: var(--color-accent);
    padding: 24px 0;
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.trust-item {
    padding: 0 16px;
    border-right: 1px solid rgba(255,255,255,0.2);
}

.trust-item:last-child {
    border-right: none;
}

.trust-item strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.trust-item span {
    font-size: 13px;
    color: rgba(255,255,255,0.85);
}

@media (max-width: 900px) {
    .trust-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .trust-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.2);
        padding-bottom: 16px;
    }
    .trust-item:nth-child(3),
    .trust-item:nth-child(4) {
        border-bottom: none;
    }
}

@media (max-width: 500px) {
    .trust-items {
        grid-template-columns: 1fr;
    }
    .trust-item {
        border-bottom: 1px solid rgba(255,255,255,0.2);
    }
    .trust-item:last-child {
        border-bottom: none;
    }
}

/* === SECTIONS === */
.section {
    padding: 50px 0;
}

.section-alt {
    background: #f8f8f8;
}

.section h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 12px;
    text-align: center;
    letter-spacing: -0.02em;
}

.section h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background: var(--color-accent);
    margin: 16px auto 0;
}

.section-intro {
    font-size: 16px;
    color: var(--color-text-light);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 32px;
}

.body-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .section {
        padding: 40px 0;
    }
    .section h2 {
        font-size: 26px;
    }
}

/* === PROCESS GRID === */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.process-card {
    text-align: center;
    padding: 32px 28px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-right: none;
}

.process-card:last-child {
    border-right: 1px solid var(--color-border);
}

.process-number {
    width: 50px;
    height: 50px;
    background: var(--color-accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.process-card p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.6;
}

@media (max-width: 900px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
    .process-card {
        border-right: 1px solid var(--color-border);
        border-bottom: none;
    }
    .process-card:last-child {
        border-bottom: 1px solid var(--color-border);
    }
}

/* === BUYERS GRID === */
.buyers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.buyer-card {
    background: var(--color-bg);
    padding: 32px 24px;
    border: 1px solid var(--color-border);
    border-right: none;
    text-align: center;
}

.buyer-card:last-child {
    border-right: 1px solid var(--color-border);
}

.buyer-card h3 {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 400;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.buyer-card p {
    font-size: 14px;
    color: var(--color-text-light);
}

@media (max-width: 900px) {
    .buyers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .buyer-card {
        border-right: 1px solid var(--color-border);
    }
    .buyer-card:nth-child(2n) {
        border-right: 1px solid var(--color-border);
    }
    .buyer-card:nth-child(1),
    .buyer-card:nth-child(2) {
        border-bottom: none;
    }
}

@media (max-width: 500px) {
    .buyers-grid {
        grid-template-columns: 1fr;
    }
    .buyer-card {
        border-right: 1px solid var(--color-border);
        border-bottom: none;
    }
    .buyer-card:last-child {
        border-bottom: 1px solid var(--color-border);
    }
}

/* === STATS === */
.stats-section {
    background: var(--color-primary);
    color: #fff;
    padding: 40px 0;
}

.stats-section h2 {
    color: #fff;
}

.stats-section h2::after {
    background: var(--color-accent);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 4px;
    color: #6ab0e6;
}

.stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .stat-number {
        font-size: 40px;
    }
}

/* === CATEGORIES === */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.category-item {
    background: var(--color-bg);
    padding: 18px 12px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    border: 1px solid var(--color-border);
    border-right: none;
    border-bottom: none;
}

.category-item:nth-child(4n) {
    border-right: 1px solid var(--color-border);
}

.category-item:nth-child(n+5) {
    border-top: none;
}

.categories-grid .category-item:nth-child(5),
.categories-grid .category-item:nth-child(6),
.categories-grid .category-item:nth-child(7),
.categories-grid .category-item:nth-child(8) {
    border-bottom: 1px solid var(--color-border);
}

@media (max-width: 900px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .category-item {
        border-right: none;
        border-bottom: none;
    }
    .category-item:nth-child(2n) {
        border-right: 1px solid var(--color-border);
    }
    .category-item:nth-child(n+7) {
        border-bottom: 1px solid var(--color-border);
    }
}

@media (max-width: 500px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
    .category-item {
        border: 1px solid var(--color-border);
        border-bottom: none;
    }
    .category-item:last-child {
        border-bottom: 1px solid var(--color-border);
    }
}

/* === FACILITIES === */
.facilities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.facilities-content h2 {
    text-align: left;
    margin-bottom: 28px;
}

.facilities-content h2::after {
    margin: 20px 0 0;
}

.facilities-list {
    list-style: none;
}

.facilities-list li {
    font-size: 16px;
    color: var(--color-text);
    padding: 16px 0;
    border-bottom: 1px solid var(--color-border);
    padding-left: 28px;
    position: relative;
}

.facilities-list li:before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 700;
}

.facilities-list li:last-child {
    border-bottom: none;
}

.facilities-image img {
    width: 100%;
    border: 1px solid var(--color-border);
}

@media (max-width: 768px) {
    .facilities-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .facilities-content h2 {
        text-align: center;
    }
    .facilities-content h2::after {
        margin: 20px auto 0;
    }
}

/* === FEATURES GRID === */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

.feature-card {
    background: var(--color-bg);
    padding: 40px;
    border: 1px solid var(--color-border);
}

.feature-card:nth-child(1) {
    border-right: none;
    border-bottom: none;
}

.feature-card:nth-child(2) {
    border-bottom: none;
}

.feature-card:nth-child(3) {
    border-right: none;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
    color: var(--color-primary);
    margin-bottom: 14px;
}

.feature-card p {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    .feature-card {
        border: 1px solid var(--color-border);
        border-bottom: none;
    }
    .feature-card:last-child {
        border-bottom: 1px solid var(--color-border);
    }
}

/* === TEAM === */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.team-member {
    text-align: center;
}

.team-photo {
    width: 130px;
    height: 130px;
    overflow: hidden;
    margin: 0 auto 20px;
    background: #eee;
    border: 2px solid var(--color-border);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 400;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.team-member p {
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 10px;
}

.team-linkedin {
    font-size: 13px;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

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

@media (max-width: 600px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

/* === CTA SECTION === */
.cta-section {
    background: var(--color-primary);
    color: #fff;
    text-align: center;
}

.cta-section h2 {
    color: #fff;
    margin-bottom: 16px;
}

.cta-section h2::after {
    display: none;
}

.cta-section p {
    color: rgba(255,255,255,0.85);
    font-size: 17px;
    margin-bottom: 32px;
}

.cta-section .btn-primary {
    background: #fff;
    color: var(--color-primary);
    border-color: #fff;
}

.cta-section .btn-primary:hover {
    background: transparent;
    color: #fff;
}

/* === CONTACT === */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.contact-card {
    padding: 40px 32px;
    background: var(--color-bg);
    text-align: center;
    border: 1px solid var(--color-border);
    border-right: none;
}

.contact-card:last-child {
    border-right: 1px solid var(--color-border);
}

.contact-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.contact-card p {
    font-size: 15px;
    color: var(--color-text);
    margin-bottom: 4px;
}

.contact-link {
    color: var(--color-accent);
    font-size: 17px;
}

.contact-note {
    font-size: 13px;
    color: var(--color-text-light);
    margin-top: 12px;
    font-style: italic;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-card {
        border: 1px solid var(--color-border);
        border-bottom: none;
    }
    .contact-card:last-child {
        border-bottom: 1px solid var(--color-border);
    }
}

/* === INFO LIST === */
.info-list {
    list-style: none;
    margin: 28px 0;
}

.info-list li {
    font-size: 16px;
    padding: 14px 0 14px 28px;
    position: relative;
    border-bottom: 1px solid var(--color-border);
}

.info-list li:before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 700;
}

.info-list li:last-child {
    border-bottom: none;
}

/* === FOOTER === */
.footer {
    background: var(--color-primary);
    color: rgba(255,255,255,0.7);
    padding: 48px 0 24px;
}

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

.footer-logo {
    width: 40px;
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 14px;
    line-height: 1.6;
}

.footer-section h3 {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    text-decoration: none;
}

.footer-links a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-address {
    font-style: normal;
    font-size: 15px;
    line-height: 1.9;
}

.footer-address a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}

.footer-address a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-site-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    text-decoration: none;
}

.footer-site-link:hover {
    color: #fff;
}

.footer-site-logo {
    height: 24px;
    width: auto;
}

.footer-social {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    text-decoration: none;
}

.footer-social:hover {
    color: #fff;
}

.footer-social svg {
    stroke: currentColor;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 28px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

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

@media (max-width: 500px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* === PRIVACY PAGE === */
.privacy-content {
    padding: 56px 0;
}

.privacy-content h2 {
    font-family: var(--font-heading);
    font-size: 26px;
    margin: 36px 0 18px;
    text-align: left;
}

.privacy-content h2::after {
    display: none;
}

.privacy-content p {
    margin-bottom: 18px;
}

.privacy-content ul {
    margin: 18px 0 18px 28px;
}

.privacy-content li {
    margin-bottom: 10px;
}

/* === FAQ === */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    padding: 36px 0;
    border-bottom: 1px solid var(--color-border);
}

.faq-item:first-child {
    padding-top: 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 400;
    color: var(--color-primary);
    margin-bottom: 18px;
    line-height: 1.4;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 14px;
}

.faq-item p:last-child {
    margin-bottom: 0;
}

.faq-item ul {
    margin: 16px 0 16px 0;
    list-style: none;
}

.faq-item li {
    font-size: 16px;
    line-height: 1.7;
    padding: 8px 0 8px 24px;
    position: relative;
}

.faq-item li:before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--color-accent);
}

.faq-item strong {
    color: var(--color-primary);
}

/* === PROTECTION GRID (Sell Page) === */
.protection-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    margin-top: 40px;
}

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

.protection-card {
    padding: 40px 32px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
}

.protection-card:nth-child(1) {
    border-right: none;
    border-bottom: none;
}

.protection-card:nth-child(2) {
    border-bottom: none;
}

.protection-card:nth-child(3) {
    border-right: none;
}

.protection-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 14px;
}

.protection-card p {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .protection-grid,
    .protection-grid-3 {
        grid-template-columns: 1fr;
    }
    .protection-card {
        border: 1px solid var(--color-border);
        border-bottom: none;
    }
    .protection-card:last-child {
        border-bottom: 1px solid var(--color-border);
    }
}

/* === PROCESS WITH IMAGE (Sell Page) === */
.process-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.process-step-item {
    display: flex;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid var(--color-border);
}

.process-step-item:first-child {
    padding-top: 0;
}

.process-step-item:last-child {
    border-bottom: none;
}

.step-number {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--color-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
}

.step-content h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.step-content p {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.6;
}

.process-image img {
    width: 100%;
    border: 1px solid var(--color-border);
}

@media (max-width: 900px) {
    .process-with-image {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .process-image {
        order: -1;
    }
}

/* === FAQ GRID (Sell Page) === */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    margin-top: 40px;
}

.faq-card {
    padding: 36px 32px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
}

.faq-card:nth-child(1) {
    border-right: none;
    border-bottom: none;
}

.faq-card:nth-child(2) {
    border-bottom: none;
}

.faq-card:nth-child(3) {
    border-right: none;
}

.faq-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.faq-card p {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    .faq-card {
        border: 1px solid var(--color-border);
        border-bottom: none;
    }
    .faq-card:last-child {
        border-bottom: 1px solid var(--color-border);
    }
}

/* === WHY CHOOSE US === */
.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.why-choose-content .body-text {
    margin-bottom: 16px;
}

.why-choose-list {
    list-style: none;
    margin-top: 20px;
}

.why-choose-list li {
    font-size: 15px;
    line-height: 1.6;
    padding: 12px 0 12px 24px;
    position: relative;
    border-bottom: 1px solid var(--color-border);
}

.why-choose-list li:last-child {
    border-bottom: none;
}

.why-choose-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 16px;
    width: 8px;
    height: 8px;
    background: var(--color-accent);
}

.why-choose-image img {
    width: 100%;
    border: 1px solid var(--color-border);
}

@media (max-width: 900px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .why-choose-image {
        order: -1;
    }
}

/* === TESTIMONIAL === */
.testimonial-section {
    background: var(--color-primary);
    padding: 48px 0;
}

.testimonial {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial blockquote {
    font-size: 22px;
    font-weight: 400;
    font-style: italic;
    line-height: 1.6;
    color: #fff;
    margin: 0 0 20px;
}

.testimonial cite {
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

@media (max-width: 768px) {
    .testimonial blockquote {
        font-size: 18px;
    }
}

/* === STOCK SUBMISSION FORM === */
.stock-form-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.stock-form {
    background: #fff;
    padding: 32px;
    border: 1px solid var(--color-border);
}

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

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    font-family: var(--font-body);
    font-size: 15px;
    border: 1px solid var(--color-border);
    background: #fff;
    color: var(--color-text);
    transition: border-color 0.2s;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.stock-form .btn {
    width: 100%;
    margin-top: 8px;
}

.form-alternative {
    text-align: center;
    padding: 32px;
    background: var(--color-primary);
    color: #fff;
}

.form-alternative p {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 12px;
}

.form-alternative .email-link {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    margin-bottom: 20px;
}

.form-alternative .email-link:hover {
    text-decoration: underline;
}

.form-alternative .form-note {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

.form-alternative .form-note a {
    color: rgba(255,255,255,0.8);
}

@media (max-width: 900px) {
    .stock-form-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}
