/* =========================================
   SUBPAGES.CSS - Logistmar International
   Ultra Professional Subpage Styles
   ========================================= */

/* ====== PAGE HERO ====== */
.page-hero {
    position: relative;
    height: 420px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
}
.page-hero-compact {
    height: 320px;
}
.page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}
.page-hero-solid {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-primary) 0%, #1a1a2e 50%, #16213e 100%);
}
.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,10,15,0.3) 0%, rgba(10,10,15,0.85) 100%);
}
.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px 50px;
    max-width: 800px;
}
.page-hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.page-hero-content p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.7);
    font-weight: 300;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 16px;
    font-size: 0.9rem;
}
.breadcrumb a {
    color: var(--accent-primary);
    text-decoration: none;
    transition: color 0.3s;
}
.breadcrumb a:hover {
    color: #ff6b6b;
}
.breadcrumb span {
    color: rgba(255,255,255,0.5);
}
.breadcrumb .current {
    color: rgba(255,255,255,0.8);
}

/* ====== SECTION STYLES ====== */
.sp-section {
    padding: 80px 0;
}
.sp-section-alt {
    background: rgba(255,255,255,0.02);
}
.sp-section-tight {
    padding: 0 0 40px;
}

/* ====== TWO COLUMN LAYOUT ====== */
.sp-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.sp-content .section-tag {
    display: inline-block;
    margin-bottom: 12px;
}
.sp-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}
.sp-lead {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
    margin-bottom: 16px;
}
.sp-content p {
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
    margin-bottom: 12px;
}

/* Image Block */
.sp-image-block {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}
.sp-image-block img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    transition: transform 0.5s;
}
.sp-image-block:hover img {
    transform: scale(1.05);
}
.sp-image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255,61,61,0.95);
    color: #fff;
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.badge-year {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}
.sp-image-badge span:last-child {
    font-size: 0.75rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ====== THREE COLUMN ====== */
.sp-three-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ====== FOUR COLUMN ====== */
.sp-four-col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* ====== SP CARD ====== */
.sp-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 36px 28px;
    transition: all 0.4s ease;
}
.sp-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent-primary);
    box-shadow: 0 20px 60px rgba(255,61,61,0.1);
}
.sp-card-gradient {
    background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,61,61,0.03) 100%);
}
.sp-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent-primary), #ff6b6b);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 20px;
}
.sp-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.sp-card p {
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ====== TIMELINE ====== */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--accent-primary) 0%, rgba(255,61,61,0.1) 100%);
}
.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
}
.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
    text-align: right;
}
.timeline-year {
    flex: 0 0 auto;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-primary), #ff6b6b);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    position: relative;
    z-index: 2;
    margin: 0 auto;
    box-shadow: 0 0 30px rgba(255,61,61,0.3);
}
.timeline-content {
    flex: 1;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 24px;
    margin: 0 30px;
    transition: all 0.3s;
}
.timeline-content:hover {
    border-color: rgba(255,61,61,0.3);
    background: rgba(255,255,255,0.06);
}
.timeline-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--accent-primary);
}
.timeline-content p {
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    font-size: 0.9rem;
}

/* ====== TEAM CARDS ====== */
.sp-team-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s;
}
.sp-team-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,61,61,0.3);
}
.sp-team-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255,61,61,0.2), rgba(255,61,61,0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--accent-primary);
    margin: 0 auto 16px;
}
.sp-team-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.sp-team-card p {
    color: rgba(255,255,255,0.55);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 12px;
}
.sp-team-count {
    display: inline-block;
    background: rgba(255,61,61,0.15);
    color: var(--accent-primary);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* ====== CERTIFICATIONS ====== */
.sp-cert-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.sp-cert-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s;
}
.sp-cert-card:hover {
    border-color: rgba(59,130,246,0.4);
    transform: translateY(-4px);
}
.sp-cert-icon {
    font-size: 2rem;
    color: #3b82f6;
    margin-bottom: 16px;
}
.sp-cert-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
}
.sp-cert-card p {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

/* ====== CTA ====== */
.sp-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255,61,61,0.08) 0%, rgba(10,10,15,0.95) 100%);
    position: relative;
    overflow: hidden;
}
.sp-cta::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,61,61,0.15), transparent 70%);
    top: -200px;
    right: -100px;
    border-radius: 50%;
}
.sp-cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}
.sp-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}
.sp-cta-content p {
    color: rgba(255,255,255,0.65);
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.sp-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ====== STATS BANNER ====== */
.sp-stats-banner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,61,61,0.04));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 40px;
}
.sp-stat-item {
    text-align: center;
}
.sp-stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-primary), #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}
.sp-stat-label {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    font-weight: 500;
}

/* ====== REGION BLOCKS - Hizmet Ağı ====== */
.sp-region-block {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    margin-bottom: 30px;
    overflow: hidden;
    transition: all 0.4s;
}
.sp-region-block:hover {
    border-color: rgba(255,61,61,0.25);
}
.sp-region-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 30px;
    background: linear-gradient(135deg, rgba(255,61,61,0.06), transparent);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.sp-region-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent-primary), #ff6b6b);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    flex-shrink: 0;
}
.sp-region-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.sp-region-subtitle {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}
.sp-region-body {
    padding: 28px 30px;
}
.sp-region-desc p {
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin-bottom: 20px;
}
.sp-country-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.sp-country-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
    transition: all 0.3s;
}
.sp-country-tag:hover {
    background: rgba(255,61,61,0.1);
    border-color: rgba(255,61,61,0.3);
    color: var(--accent-primary);
}
.sp-country-tag i {
    font-size: 0.7rem;
    color: var(--accent-primary);
}

/* ====== HUB CARDS ====== */
.sp-hub-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s;
    position: relative;
}
.sp-hub-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,61,61,0.3);
}
.sp-hub-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(59,130,246,0.2), rgba(59,130,246,0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #3b82f6;
    margin: 0 auto 16px;
}
.sp-hub-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.sp-hub-card p {
    color: rgba(255,255,255,0.55);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 14px;
}
.sp-hub-badge {
    display: inline-block;
    background: rgba(59,130,246,0.15);
    color: #3b82f6;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ====== TRANSPORT GRID ====== */
.sp-transport-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.sp-transport-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.4s;
}
.sp-transport-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,61,61,0.3);
}
.sp-transport-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.sp-transport-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.sp-transport-card:hover .sp-transport-img img {
    transform: scale(1.08);
}
.sp-transport-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10,10,15,0.8) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 20px;
}
.sp-transport-overlay i {
    font-size: 2rem;
    color: rgba(255,255,255,0.8);
}
.sp-transport-info {
    padding: 24px;
}
.sp-transport-info h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 14px;
}
.sp-transport-info ul {
    list-style: none;
    padding: 0;
}
.sp-transport-info ul li {
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}
.sp-transport-info ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: 700;
}

/* ====== SECTOR GRID ====== */
.sp-sector-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.sp-sector-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.4s;
}
.sp-sector-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,61,61,0.3);
}
.sp-sector-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255,61,61,0.15), rgba(255,61,61,0.03));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent-primary);
    margin: 0 auto 14px;
}
.sp-sector-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.sp-sector-card p {
    color: rgba(255,255,255,0.5);
    font-size: 0.82rem;
    line-height: 1.6;
    margin-bottom: 12px;
}
.sp-sector-count {
    display: inline-block;
    background: rgba(255,61,61,0.12);
    color: var(--accent-primary);
    padding: 3px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* ====== TESTIMONIAL GRID ====== */
.sp-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.sp-testimonial-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.4s;
}
.sp-testimonial-card:hover {
    border-color: rgba(255,61,61,0.25);
    transform: translateY(-4px);
}
.sp-testimonial-stars {
    margin-bottom: 16px;
}
.sp-testimonial-stars i {
    color: #fbbf24;
    font-size: 0.9rem;
    margin-right: 2px;
}
.sp-testimonial-text {
    color: rgba(255,255,255,0.7);
    font-size: 0.92rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    padding-left: 16px;
    border-left: 3px solid var(--accent-primary);
}
.sp-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.sp-author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-primary), #ff6b6b);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: #fff;
    flex-shrink: 0;
}
.sp-testimonial-author strong {
    display: block;
    font-size: 0.9rem;
}
.sp-testimonial-author span {
    color: rgba(255,255,255,0.45);
    font-size: 0.78rem;
}

/* ====== CASE STUDIES ====== */
.sp-case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.sp-case-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.4s;
}
.sp-case-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,61,61,0.25);
}
.sp-case-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.sp-case-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.sp-case-card:hover .sp-case-img img {
    transform: scale(1.06);
}
.sp-case-tag {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--accent-primary);
    color: #fff;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}
.sp-case-content {
    padding: 24px;
}
.sp-case-content h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.sp-case-content p {
    color: rgba(255,255,255,0.55);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 16px;
}
.sp-case-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.sp-case-meta span {
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 6px;
}
.sp-case-meta i {
    color: var(--accent-primary);
    font-size: 0.75rem;
}

/* ====== BENEFITS GRID - Kariyer ====== */
.sp-benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
.sp-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 20px;
    transition: all 0.3s;
}
.sp-benefit-item:hover {
    border-color: rgba(255,61,61,0.25);
    background: rgba(255,255,255,0.06);
}
.sp-benefit-item i {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255,61,61,0.15), rgba(255,61,61,0.03));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--accent-primary);
    flex-shrink: 0;
}
.sp-benefit-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.sp-benefit-item p {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* ====== JOB CARDS ====== */
.sp-jobs-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.sp-job-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.4s;
}
.sp-job-card:hover {
    border-color: rgba(255,61,61,0.25);
}
.sp-job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 24px 28px 16px;
}
.sp-job-header h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.sp-job-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.sp-job-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.06);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
}
.sp-job-tag i {
    font-size: 0.7rem;
    color: var(--accent-primary);
}
.sp-job-dept {
    background: linear-gradient(135deg, var(--accent-primary), #ff6b6b);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}
.sp-job-body {
    padding: 0 28px 20px;
}
.sp-job-body > p {
    color: rgba(255,255,255,0.6);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 16px;
}
.sp-job-requirements h5 {
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: rgba(255,255,255,0.8);
}
.sp-job-requirements ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}
.sp-job-requirements ul li {
    color: rgba(255,255,255,0.55);
    font-size: 0.85rem;
    padding-left: 18px;
    position: relative;
}
.sp-job-requirements ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: bold;
}
.sp-job-footer {
    padding: 16px 28px;
    border-top: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.02);
}

/* ====== APPLICATION FORM ====== */
.sp-form-container {
    max-width: 800px;
    margin: 0 auto;
}
.sp-application-form {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 40px;
}
.sp-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}
.sp-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.sp-form-full {
    margin-bottom: 20px;
}
.sp-form-group label {
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
}
.sp-form-group input,
.sp-form-group select,
.sp-form-group textarea {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    padding: 12px 16px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    transition: all 0.3s;
    outline: none;
}
.sp-form-group input::placeholder,
.sp-form-group textarea::placeholder {
    color: rgba(255,255,255,0.3);
}
.sp-form-group input:focus,
.sp-form-group select:focus,
.sp-form-group textarea:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 20px rgba(255,61,61,0.1);
}
.sp-form-group select {
    cursor: pointer;
}
.sp-form-group select option {
    background: #1a1a2e;
    color: #fff;
}
.sp-form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.sp-form-note {
    color: rgba(255,255,255,0.4);
    font-size: 0.82rem;
}
.sp-form-note a {
    color: var(--accent-primary);
    text-decoration: none;
}

/* ====== BLOG STYLES ====== */
.sp-blog-categories {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}
.sp-cat-btn {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    padding: 8px 20px;
    border-radius: 25px;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}
.sp-cat-btn:hover,
.sp-cat-btn.active {
    background: var(--accent-primary);
    color: #fff;
    border-color: var(--accent-primary);
}

/* Featured Blog */
.sp-blog-featured {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    overflow: hidden;
}
.sp-blog-featured-img {
    position: relative;
    min-height: 350px;
}
.sp-blog-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sp-blog-featured-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--accent-primary);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}
.sp-blog-featured-content {
    padding: 40px 30px 40px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.sp-blog-featured-content h2 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 14px;
    line-height: 1.3;
}
.sp-blog-featured-content p {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
}
.sp-blog-meta {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}
.sp-blog-meta span {
    color: rgba(255,255,255,0.45);
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    gap: 6px;
}
.sp-blog-meta i {
    color: var(--accent-primary);
}

/* Blog Grid */
.sp-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 50px;
}
.sp-blog-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.4s;
}
.sp-blog-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,61,61,0.25);
}
.sp-blog-card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.sp-blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.sp-blog-card:hover .sp-blog-card-img img {
    transform: scale(1.08);
}
.sp-blog-card-cat {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(10,10,15,0.8);
    backdrop-filter: blur(10px);
    color: var(--accent-primary);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(255,61,61,0.2);
}
.sp-blog-card-content {
    padding: 22px;
}
.sp-blog-card-content h3 {
    font-size: 1.02rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.sp-blog-card-content p {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.sp-blog-read-more {
    color: var(--accent-primary);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s;
}
.sp-blog-read-more:hover {
    gap: 12px;
}
.sp-blog-read-more.sp-coming-soon {
    color: #999;
    cursor: default;
    font-weight: 500;
    pointer-events: none;
    opacity: 0.7;
}

/* Pagination */
.sp-pagination {
    display: flex;
    gap: 10px;
    justify-content: center;
}
.sp-page-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
}
.sp-page-btn:hover,
.sp-page-btn.active {
    background: var(--accent-primary);
    color: #fff;
    border-color: var(--accent-primary);
}

/* Newsletter */
.sp-newsletter {
    background: linear-gradient(145deg, rgba(255,61,61,0.08), rgba(255,255,255,0.04));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.sp-newsletter-content {
    display: flex;
    align-items: center;
    gap: 20px;
}
.sp-newsletter-content i {
    font-size: 2.5rem;
    color: var(--accent-primary);
    flex-shrink: 0;
}
.sp-newsletter-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.sp-newsletter-content p {
    color: rgba(255,255,255,0.55);
    font-size: 0.88rem;
}
.sp-newsletter-form {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}
.sp-newsletter-form input {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    padding: 12px 20px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    width: 260px;
    outline: none;
    transition: border-color 0.3s;
}
.sp-newsletter-form input:focus {
    border-color: var(--accent-primary);
}
.sp-newsletter-form input::placeholder {
    color: rgba(255,255,255,0.3);
}

/* ====== LEGAL / KVKK STYLES ====== */
.sp-legal-content {
    max-width: 900px;
    margin: 0 auto;
}
.sp-legal-update {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(59,130,246,0.1);
    border: 1px solid rgba(59,130,246,0.2);
    border-radius: 12px;
    padding: 14px 20px;
    margin-bottom: 36px;
    color: #3b82f6;
    font-size: 0.9rem;
}

/* TOC */
.sp-legal-toc {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 28px 32px;
    margin-bottom: 50px;
}
.sp-legal-toc h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.sp-legal-toc h3 i {
    color: var(--accent-primary);
}
.sp-legal-toc ol {
    padding-left: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.sp-legal-toc ol li {
    color: rgba(255,255,255,0.55);
    font-size: 0.9rem;
}
.sp-legal-toc ol li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}
.sp-legal-toc ol li a:hover {
    color: var(--accent-primary);
}

/* Legal Articles */
.sp-legal-article {
    margin-bottom: 48px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.sp-legal-article:last-of-type {
    border-bottom: none;
}
.sp-legal-article h2 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: #fff;
}
.sp-legal-article p {
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
    margin-bottom: 14px;
    font-size: 0.94rem;
}
.sp-legal-article ul {
    padding-left: 20px;
    margin-bottom: 16px;
}
.sp-legal-article ul li {
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    font-size: 0.92rem;
    margin-bottom: 6px;
}

/* Legal Info Box */
.sp-legal-info-box {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 24px;
    margin-top: 16px;
}
.sp-legal-info-item {
    display: flex;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.sp-legal-info-item:last-child {
    border-bottom: none;
}
.sp-legal-info-item strong {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    min-width: 120px;
}
.sp-legal-info-item span {
    color: rgba(255,255,255,0.55);
    font-size: 0.9rem;
}

/* Legal Table */
.sp-legal-table-wrapper {
    overflow-x: auto;
    margin: 16px 0;
}
.sp-legal-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 14px;
    overflow: hidden;
}
.sp-legal-table thead {
    background: rgba(255,61,61,0.1);
}
.sp-legal-table th {
    text-align: left;
    padding: 14px 18px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--accent-primary);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.sp-legal-table td {
    padding: 12px 18px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.sp-legal-table tbody tr:hover {
    background: rgba(255,255,255,0.03);
}

/* Legal Two Col */
.sp-legal-two-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 20px;
}
.sp-legal-two-col h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.sp-legal-two-col h4 i {
    color: var(--accent-primary);
}
.sp-legal-two-col ul {
    padding-left: 16px;
}
.sp-legal-two-col ul li {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.8;
}

/* Rights Grid */
.sp-legal-rights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 20px;
}
.sp-legal-right {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 16px;
}
.sp-legal-right i {
    color: var(--accent-primary);
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}
.sp-legal-right span {
    color: rgba(255,255,255,0.65);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* Contact Methods */
.sp-legal-contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}
.sp-legal-method {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 22px;
}
.sp-legal-method > i {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255,61,61,0.15), rgba(255,61,61,0.03));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--accent-primary);
    flex-shrink: 0;
}
.sp-legal-method h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.sp-legal-method p {
    color: rgba(255,255,255,0.55);
    font-size: 0.88rem;
    line-height: 1.6;
}
.sp-legal-method a {
    color: var(--accent-primary);
    text-decoration: none;
}

/* Legal Notice */
.sp-legal-notice {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(255,61,61,0.06);
    border: 1px solid rgba(255,61,61,0.15);
    border-radius: 14px;
    padding: 20px;
    margin-top: 24px;
}
.sp-legal-notice i {
    color: var(--accent-primary);
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}
.sp-legal-notice p {
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}

/* Legal Footer */
.sp-legal-footer {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.sp-legal-footer p {
    color: rgba(255,255,255,0.45);
    font-size: 0.88rem;
    margin-bottom: 6px;
}
.sp-legal-footer p:first-child {
    color: rgba(255,255,255,0.7);
    font-weight: 600;
}

/* =============================================================
   SUBPAGES - ULTRA PRO RESPONSIVE SYSTEM
   Matching main styles.css breakpoints
   ============================================================= */

/* --- Touch Device --- */
@media (hover: none) and (pointer: coarse) {
    .sp-card:hover,
    .sp-team-card:hover,
    .sp-cert-card:hover,
    .sp-hub-card:hover,
    .sp-transport-card:hover,
    .sp-sector-card:hover,
    .sp-testimonial-card:hover,
    .sp-case-card:hover,
    .sp-blog-card:hover,
    .sp-region-block:hover {
        transform: none;
    }
    .sp-image-block:hover img {
        transform: none;
    }
    .sp-transport-card:hover .sp-transport-img img {
        transform: none;
    }
    .sp-case-card:hover .sp-case-img img {
        transform: none;
    }
    .sp-blog-card:hover .sp-blog-card-img img {
        transform: none;
    }
    /* Bigger touch targets */
    .sp-cat-btn {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }
    .sp-page-btn {
        width: 44px;
        height: 44px;
    }
    .sp-country-tag {
        min-height: 40px;
        display: inline-flex;
        align-items: center;
    }
}

/* ===== 1200px - Desktop ===== */
@media (max-width: 1200px) {
    .sp-four-col,
    .sp-sector-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .sp-legal-rights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .sp-stats-banner {
        padding: 30px;
        gap: 24px;
    }
}

/* ===== 1024px - Tablet Landscape ===== */
@media (max-width: 1024px) {
    .sp-three-col,
    .sp-testimonial-grid,
    .sp-cert-grid,
    .sp-case-grid,
    .sp-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .sp-transport-grid {
        grid-template-columns: 1fr;
    }
    .sp-two-col {
        gap: 40px;
    }
    .sp-content h2 {
        font-size: 1.9rem;
    }
    .sp-image-block img {
        height: 340px;
    }

    /* Blog */
    .sp-blog-featured {
        grid-template-columns: 1fr;
    }
    .sp-blog-featured-img {
        min-height: 280px;
    }
    .sp-blog-featured-content {
        padding: 28px;
    }
    .sp-blog-featured-content h2 {
        font-size: 1.4rem;
    }

    /* Newsletter */
    .sp-newsletter {
        flex-direction: column;
        text-align: center;
        padding: 36px 28px;
    }
    .sp-newsletter-content {
        flex-direction: column;
    }
    .sp-newsletter-form {
        width: 100%;
        max-width: 400px;
    }
    .sp-newsletter-form input {
        width: 100%;
        flex: 1;
    }

    /* Timeline */
    .timeline {
        max-width: 700px;
    }

    /* CTA */
    .sp-cta-content h2 {
        font-size: 2rem;
    }
    .sp-cta-content p {
        font-size: 1rem;
    }

    /* Region blocks */
    .sp-region-header {
        padding: 22px 24px;
    }
    .sp-region-body {
        padding: 22px 24px;
    }
}

/* ===== 768px - Tablet Portrait ===== */
@media (max-width: 768px) {
    /* Page Hero */
    .page-hero {
        height: 300px;
        margin-top: 60px;
    }
    .page-hero-compact {
        height: 260px;
    }
    .page-hero-content {
        padding: 0 16px 36px;
    }
    .page-hero-content h1 {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }
    .page-hero-content p {
        font-size: 0.95rem;
    }

    /* Breadcrumb */
    .breadcrumb {
        font-size: 0.8rem;
        gap: 8px;
        flex-wrap: wrap;
    }

    /* Section */
    .sp-section {
        padding: 50px 0;
    }
    .sp-section-tight {
        padding: 0 0 30px;
    }

    /* Two Column → Single */
    .sp-two-col {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .sp-content h2 {
        font-size: 1.6rem;
    }
    .sp-lead {
        font-size: 1rem;
    }
    .sp-content p {
        font-size: 0.9rem;
    }

    /* Image block */
    .sp-image-block img {
        height: 280px;
    }
    .sp-image-badge {
        bottom: 14px;
        left: 14px;
        padding: 10px 16px;
    }
    .badge-year {
        font-size: 1.5rem;
    }
    .sp-image-badge span:last-child {
        font-size: 0.68rem;
    }

    /* All Grids → Single Column */
    .sp-three-col,
    .sp-four-col,
    .sp-sector-grid,
    .sp-testimonial-grid,
    .sp-cert-grid,
    .sp-case-grid,
    .sp-blog-grid,
    .sp-legal-rights-grid {
        grid-template-columns: 1fr;
    }

    /* Cards */
    .sp-card {
        padding: 28px 22px;
    }
    .sp-card-icon {
        width: 52px;
        height: 52px;
        font-size: 1.2rem;
    }
    .sp-card h3 {
        font-size: 1.15rem;
    }
    .sp-card p {
        font-size: 0.88rem;
    }

    /* Stats Banner */
    .sp-stats-banner {
        grid-template-columns: repeat(2, 1fr);
        padding: 24px;
        gap: 20px;
        border-radius: 16px;
    }
    .sp-stat-number {
        font-size: 2rem;
    }
    .sp-stat-label {
        font-size: 0.82rem;
    }

    /* Timeline - Mobile Layout */
    .timeline {
        padding: 10px 0;
    }
    .timeline::before {
        left: 24px;
        transform: none;
    }
    .timeline-item,
    .timeline-item:nth-child(odd) {
        flex-direction: column;
        text-align: left;
        padding-left: 64px;
        position: relative;
    }
    .timeline-year {
        position: absolute;
        left: 0;
        width: 48px;
        height: 48px;
        font-size: 0.72rem;
        margin: 0;
    }
    .timeline-content {
        margin: 0;
        padding: 20px;
    }
    .timeline-content h4 {
        font-size: 1rem;
    }
    .timeline-content p {
        font-size: 0.85rem;
    }

    /* Team Cards */
    .sp-team-card {
        padding: 24px 18px;
    }
    .sp-team-icon {
        width: 48px;
        height: 48px;
    }

    /* Certifications */
    .sp-cert-card {
        padding: 24px;
    }
    .sp-cert-icon {
        font-size: 1.6rem;
    }

    /* CTA */
    .sp-cta {
        padding: 60px 0;
    }
    .sp-cta-content h2 {
        font-size: clamp(1.4rem, 5vw, 1.8rem);
    }
    .sp-cta-content p {
        font-size: 0.95rem;
    }
    .sp-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .sp-cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    /* Region Blocks */
    .sp-region-header {
        padding: 20px;
        gap: 14px;
    }
    .sp-region-icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        font-size: 1.1rem;
    }
    .sp-region-header h3 {
        font-size: 1.15rem;
    }
    .sp-region-subtitle {
        font-size: 0.82rem;
    }
    .sp-region-body {
        padding: 20px;
    }
    .sp-country-tags {
        gap: 8px;
    }
    .sp-country-tag {
        padding: 5px 12px;
        font-size: 0.8rem;
    }

    /* Hub Cards */
    .sp-hub-card {
        padding: 24px;
    }
    .sp-hub-icon {
        width: 44px;
        height: 44px;
    }

    /* Transport Grid */
    .sp-transport-img {
        height: 180px;
    }
    .sp-transport-info {
        padding: 20px;
    }
    .sp-transport-info h4 {
        font-size: 1.05rem;
    }

    /* Sector Grid */
    .sp-sector-card {
        padding: 22px 18px;
    }
    .sp-sector-icon {
        width: 44px;
        height: 44px;
    }

    /* Testimonial Grid */
    .sp-testimonial-card {
        padding: 22px;
    }
    .sp-testimonial-text {
        font-size: 0.88rem;
        padding-left: 14px;
    }

    /* Case Studies */
    .sp-case-img {
        height: 180px;
    }
    .sp-case-content {
        padding: 20px;
    }
    .sp-case-content h4 {
        font-size: 0.98rem;
    }

    /* Benefits */
    .sp-benefit-item {
        padding: 16px;
        gap: 14px;
    }
    .sp-benefit-item i {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    /* Job Cards */
    .sp-job-header {
        flex-direction: column;
        gap: 12px;
        padding: 20px 22px 14px;
    }
    .sp-job-header h4 {
        font-size: 1.05rem;
    }
    .sp-job-body {
        padding: 0 22px 18px;
    }
    .sp-job-body > p {
        font-size: 0.88rem;
    }
    .sp-job-requirements ul {
        grid-template-columns: 1fr;
    }
    .sp-job-footer {
        padding: 14px 22px;
    }

    /* Application Form */
    .sp-form-grid {
        grid-template-columns: 1fr;
    }
    .sp-application-form {
        padding: 24px 20px;
        border-radius: 16px;
    }
    .sp-form-group input,
    .sp-form-group select,
    .sp-form-group textarea {
        font-size: 16px; /* Prevents iOS zoom */
        padding: 11px 14px;
    }
    .sp-form-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }
    .sp-form-actions .btn {
        width: 100%;
        justify-content: center;
    }

    /* Blog */
    .sp-blog-categories {
        gap: 8px;
        padding: 0 4px;
    }
    .sp-cat-btn {
        padding: 7px 16px;
        font-size: 0.82rem;
    }
    .sp-blog-featured-img {
        min-height: 220px;
    }
    .sp-blog-featured-content {
        padding: 22px;
    }
    .sp-blog-featured-content h2 {
        font-size: 1.2rem;
    }
    .sp-blog-featured-content p {
        font-size: 0.88rem;
    }
    .sp-blog-card-img {
        height: 180px;
    }
    .sp-blog-card-content {
        padding: 18px;
    }
    .sp-blog-card-content h3 {
        font-size: 0.95rem;
    }
    .sp-blog-card-content p {
        font-size: 0.82rem;
    }
    .sp-blog-meta span {
        font-size: 0.78rem;
    }

    /* Pagination */
    .sp-pagination {
        gap: 8px;
    }
    .sp-page-btn {
        width: 38px;
        height: 38px;
        font-size: 0.85rem;
    }

    /* Newsletter */
    .sp-newsletter {
        padding: 28px 20px;
        border-radius: 16px;
    }
    .sp-newsletter-content i {
        font-size: 2rem;
    }
    .sp-newsletter-content h3 {
        font-size: 1.05rem;
    }
    .sp-newsletter-content p {
        font-size: 0.82rem;
    }
    .sp-newsletter-form {
        flex-direction: column;
        width: 100%;
        max-width: none;
    }
    .sp-newsletter-form input {
        width: 100%;
    }
    .sp-newsletter-form .btn {
        width: 100%;
        justify-content: center;
    }

    /* Legal */
    .sp-legal-toc {
        padding: 22px 20px;
    }
    .sp-legal-toc ol {
        grid-template-columns: 1fr;
    }
    .sp-legal-two-col {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .sp-legal-article h2 {
        font-size: 1.2rem;
    }
    .sp-legal-article p {
        font-size: 0.88rem;
    }
    .sp-legal-method {
        padding: 18px;
        gap: 14px;
    }
    .sp-legal-method > i {
        width: 42px;
        height: 42px;
    }
    .sp-legal-info-item {
        flex-direction: column;
        gap: 4px;
    }
    .sp-legal-info-item strong {
        min-width: auto;
    }
}

/* ===== 640px - Large Phone ===== */
@media (max-width: 640px) {
    /* Page Hero */
    .page-hero {
        height: 260px;
    }
    .page-hero-compact {
        height: 230px;
    }
    .page-hero-content h1 {
        font-size: clamp(1.3rem, 6vw, 1.7rem);
    }

    /* Section */
    .sp-section {
        padding: 40px 0;
    }
    .sp-content h2 {
        font-size: 1.4rem;
    }
    .sp-lead {
        font-size: 0.92rem;
    }

    /* Image block */
    .sp-image-block img {
        height: 220px;
    }

    /* Stats banner - Compact */
    .sp-stats-banner {
        padding: 20px;
        gap: 16px;
    }
    .sp-stat-number {
        font-size: 1.7rem;
    }
    .sp-stat-label {
        font-size: 0.78rem;
    }

    /* Cards - Tighter padding */
    .sp-card {
        padding: 24px 18px;
    }
    .sp-card h3 {
        font-size: 1.08rem;
    }

    /* Transport */
    .sp-transport-img {
        height: 160px;
    }

    /* Case studies */
    .sp-case-img {
        height: 160px;
    }
    .sp-case-content {
        padding: 18px;
    }

    /* Blog cards */
    .sp-blog-card-img {
        height: 160px;
    }

    /* Region body */
    .sp-region-desc p {
        font-size: 0.88rem;
    }
    .sp-country-tag {
        font-size: 0.75rem;
        padding: 4px 10px;
    }

    /* CTA tighter */
    .sp-cta {
        padding: 50px 0;
    }
    .sp-cta-content h2 {
        font-size: 1.4rem;
    }

    /* Legal */
    .sp-legal-content {
        max-width: 100%;
    }
    .sp-legal-right {
        padding: 14px;
    }
    .sp-legal-right span {
        font-size: 0.8rem;
    }
    .sp-legal-table th,
    .sp-legal-table td {
        padding: 10px 12px;
        font-size: 0.82rem;
    }
}

/* ===== 480px - Small Phone ===== */
@media (max-width: 480px) {
    /* Page Hero */
    .page-hero {
        height: 230px;
        margin-top: 50px;
    }
    .page-hero-compact {
        height: 200px;
    }
    .page-hero-content {
        padding: 0 12px 28px;
    }
    .page-hero-content h1 {
        font-size: 1.3rem;
    }
    .page-hero-content p {
        font-size: 0.85rem;
    }
    .breadcrumb {
        font-size: 0.72rem;
        gap: 6px;
    }

    /* Section */
    .sp-section {
        padding: 36px 0;
    }
    .sp-content h2 {
        font-size: 1.25rem;
    }
    .sp-lead {
        font-size: 0.85rem;
    }

    /* Image block */
    .sp-image-block img {
        height: 180px;
    }
    .sp-image-badge {
        bottom: 10px;
        left: 10px;
        padding: 8px 12px;
        border-radius: 10px;
    }
    .badge-year {
        font-size: 1.3rem;
    }

    /* Stats Banner */
    .sp-stats-banner {
        grid-template-columns: 1fr 1fr;
        padding: 16px;
        gap: 14px;
        border-radius: 14px;
    }
    .sp-stat-number {
        font-size: 1.5rem;
    }
    .sp-stat-label {
        font-size: 0.72rem;
    }

    /* Cards */
    .sp-card {
        padding: 20px 16px;
        border-radius: 14px;
    }
    .sp-card-icon {
        width: 46px;
        height: 46px;
        font-size: 1rem;
        border-radius: 12px;
        margin-bottom: 14px;
    }
    .sp-card h3 {
        font-size: 1rem;
    }
    .sp-card p {
        font-size: 0.82rem;
    }

    /* Timeline */
    .timeline-item,
    .timeline-item:nth-child(odd) {
        padding-left: 56px;
    }
    .timeline-year {
        width: 42px;
        height: 42px;
        font-size: 0.65rem;
    }
    .timeline-content {
        padding: 16px;
    }
    .timeline-content h4 {
        font-size: 0.92rem;
    }
    .timeline-content p {
        font-size: 0.8rem;
    }

    /* Team */
    .sp-team-card {
        padding: 20px 16px;
    }
    .sp-team-icon {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }
    .sp-team-card h4 {
        font-size: 0.95rem;
    }
    .sp-team-card p {
        font-size: 0.8rem;
    }

    /* Cert */
    .sp-cert-card {
        padding: 20px;
    }
    .sp-cert-icon {
        font-size: 1.4rem;
    }
    .sp-cert-card h4 {
        font-size: 0.95rem;
    }

    /* CTA */
    .sp-cta-content h2 {
        font-size: 1.25rem;
    }
    .sp-cta-content p {
        font-size: 0.88rem;
        margin-bottom: 22px;
    }
    .sp-cta-buttons .btn {
        max-width: 260px;
        font-size: 0.88rem;
    }

    /* Region */
    .sp-region-header {
        padding: 16px;
        gap: 12px;
    }
    .sp-region-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .sp-region-header h3 {
        font-size: 1.05rem;
    }
    .sp-region-body {
        padding: 16px;
    }

    /* Hub */
    .sp-hub-card {
        padding: 20px;
    }
    .sp-hub-icon {
        width: 40px;
        height: 40px;
    }
    .sp-hub-card h4 {
        font-size: 0.95rem;
    }

    /* Transport */
    .sp-transport-img {
        height: 150px;
    }
    .sp-transport-info {
        padding: 16px;
    }
    .sp-transport-info h4 {
        font-size: 0.98rem;
    }

    /* Sector */
    .sp-sector-card {
        padding: 20px 16px;
    }
    .sp-sector-icon {
        width: 40px;
        height: 40px;
    }
    .sp-sector-card h4 {
        font-size: 0.88rem;
    }

    /* Testimonial */
    .sp-testimonial-card {
        padding: 20px 16px;
    }
    .sp-testimonial-text {
        font-size: 0.82rem;
        padding-left: 12px;
    }
    .sp-author-avatar {
        width: 38px;
        height: 38px;
        font-size: 0.8rem;
    }
    .sp-testimonial-author strong {
        font-size: 0.82rem;
    }
    .sp-testimonial-author span {
        font-size: 0.72rem;
    }

    /* Case Studies */
    .sp-case-img {
        height: 150px;
    }
    .sp-case-content {
        padding: 16px;
    }
    .sp-case-content h4 {
        font-size: 0.92rem;
    }
    .sp-case-content p {
        font-size: 0.8rem;
    }
    .sp-case-tag {
        padding: 3px 10px;
        font-size: 0.68rem;
    }

    /* Benefits */
    .sp-benefit-item {
        padding: 14px;
        gap: 12px;
    }
    .sp-benefit-item i {
        width: 36px;
        height: 36px;
        font-size: 0.92rem;
    }
    .sp-benefit-item h4 {
        font-size: 0.88rem;
    }
    .sp-benefit-item p {
        font-size: 0.78rem;
    }

    /* Jobs */
    .sp-job-header {
        padding: 16px 18px 12px;
    }
    .sp-job-header h4 {
        font-size: 0.98rem;
    }
    .sp-job-tags {
        gap: 6px;
    }
    .sp-job-tag {
        font-size: 0.72rem;
        padding: 3px 10px;
    }
    .sp-job-dept {
        font-size: 0.72rem;
        padding: 5px 12px;
    }
    .sp-job-body {
        padding: 0 18px 16px;
    }
    .sp-job-body > p {
        font-size: 0.82rem;
    }
    .sp-job-requirements h5 {
        font-size: 0.82rem;
    }
    .sp-job-requirements ul li {
        font-size: 0.78rem;
    }
    .sp-job-footer {
        padding: 12px 18px;
    }

    /* Application Form */
    .sp-application-form {
        padding: 20px 16px;
    }
    .sp-form-group label {
        font-size: 0.82rem;
    }

    /* Blog categories */
    .sp-blog-categories {
        gap: 6px;
    }
    .sp-cat-btn {
        padding: 6px 12px;
        font-size: 0.78rem;
    }

    /* Blog featured */
    .sp-blog-featured-content {
        padding: 18px;
    }
    .sp-blog-featured-content h2 {
        font-size: 1.08rem;
    }
    .sp-blog-featured-content p {
        font-size: 0.82rem;
    }

    /* Blog cards */
    .sp-blog-card-img {
        height: 150px;
    }
    .sp-blog-card-content {
        padding: 16px;
    }
    .sp-blog-card-content h3 {
        font-size: 0.88rem;
    }
    .sp-blog-card-content p {
        font-size: 0.78rem;
    }
    .sp-blog-read-more {
        font-size: 0.82rem;
    }

    /* Pagination */
    .sp-page-btn {
        width: 36px;
        height: 36px;
        font-size: 0.82rem;
        border-radius: 8px;
    }

    /* Newsletter */
    .sp-newsletter {
        padding: 22px 16px;
    }
    .sp-newsletter-content i {
        font-size: 1.8rem;
    }
    .sp-newsletter-content h3 {
        font-size: 0.98rem;
    }
    .sp-newsletter-content p {
        font-size: 0.78rem;
    }

    /* Legal */
    .sp-legal-update {
        font-size: 0.82rem;
        padding: 12px 16px;
    }
    .sp-legal-toc {
        padding: 18px 16px;
    }
    .sp-legal-toc h3 {
        font-size: 0.98rem;
    }
    .sp-legal-toc ol li {
        font-size: 0.82rem;
    }
    .sp-legal-article h2 {
        font-size: 1.1rem;
    }
    .sp-legal-article p {
        font-size: 0.85rem;
    }
    .sp-legal-article ul li {
        font-size: 0.82rem;
    }
    .sp-legal-info-box {
        padding: 18px;
    }
    .sp-legal-right {
        padding: 12px;
    }
    .sp-legal-right span {
        font-size: 0.78rem;
    }
    .sp-legal-method {
        padding: 14px;
    }
    .sp-legal-method h4 {
        font-size: 0.88rem;
    }
    .sp-legal-method p {
        font-size: 0.82rem;
    }
    .sp-legal-notice {
        padding: 16px;
    }
    .sp-legal-notice p {
        font-size: 0.82rem;
    }
    .sp-legal-footer p {
        font-size: 0.8rem;
    }
}

/* ===== 375px - Very Small Phone ===== */
@media (max-width: 375px) {
    .page-hero {
        height: 210px;
    }
    .page-hero-content h1 {
        font-size: 1.15rem;
    }
    .page-hero-content p {
        font-size: 0.8rem;
    }

    .sp-section {
        padding: 30px 0;
    }
    .sp-content h2 {
        font-size: 1.15rem;
    }
    .sp-lead {
        font-size: 0.8rem;
    }

    .sp-image-block img {
        height: 160px;
    }

    .sp-stats-banner {
        padding: 14px;
        gap: 12px;
    }
    .sp-stat-number {
        font-size: 1.3rem;
    }

    .sp-card {
        padding: 16px 14px;
    }
    .sp-card h3 {
        font-size: 0.92rem;
    }

    .sp-cta-content h2 {
        font-size: 1.1rem;
    }

    .sp-blog-card-img,
    .sp-case-img,
    .sp-transport-img {
        height: 130px;
    }
}

/* ===== Landscape Phone Fix for Subpages ===== */
@media (max-height: 500px) and (orientation: landscape) {
    .page-hero {
        height: 200px;
    }
    .sp-section {
        padding: 40px 0;
    }
}

/* ===== Internal Linking - Related Pages Cards ===== */
.sp-related-card {
    display: flex;
    flex-direction: column;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}
.sp-related-card:hover {
    background: rgba(255,61,61,0.05);
    border-color: rgba(255,61,61,0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(255,61,61,0.1);
}
.sp-related-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255,61,61,0.15), rgba(255,61,61,0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #ff3d3d;
    margin-bottom: 1rem;
}
.sp-related-card h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}
.sp-related-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
}
.sp-related-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: #ff3d3d;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}
.sp-related-card:hover .sp-related-link {
    gap: 0.8rem;
}
@media (max-width: 768px) {
    .sp-related-card {
        padding: 1.5rem;
    }
}

/* ===== Blog Article Pages ===== */
.sp-article {
    max-width: 800px;
    margin: 0 auto;
}
.sp-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
}
.sp-article-meta i {
    margin-right: 0.4rem;
    color: #ff3d3d;
}
.sp-article-body {
    line-height: 1.85;
    color: rgba(255,255,255,0.8);
    font-size: 1.05rem;
}
.sp-article-body h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 2.5rem 0 1rem;
    padding-left: 1rem;
    border-left: 3px solid #ff3d3d;
}
.sp-article-body p {
    margin-bottom: 1.2rem;
}
.sp-article-body ul,
.sp-article-body ol {
    margin: 1rem 0 1.5rem 1.5rem;
}
.sp-article-body li {
    margin-bottom: 0.6rem;
}
.sp-article-lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
    font-weight: 400;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255,61,61,0.05);
    border-left: 4px solid #ff3d3d;
    border-radius: 0 12px 12px 0;
}
.sp-article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.sp-tag {
    display: inline-block;
    padding: 0.3rem 0.85rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
}
.sp-tag:hover {
    background: rgba(255,61,61,0.1);
    border-color: rgba(255,61,61,0.3);
    color: #ff3d3d;
}
.sp-author-box {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
}
.sp-author-avatar-lg {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff3d3d, #ff6b6b);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}
.sp-author-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.3rem;
}
.sp-author-info p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
}
.sp-share-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
}
.sp-share-box > span {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    white-space: nowrap;
}
.sp-share-buttons {
    display: flex;
    gap: 0.5rem;
}
.sp-share-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}
.sp-share-btn:hover {
    background: rgba(255,61,61,0.15);
    border-color: rgba(255,61,61,0.4);
    color: #ff3d3d;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .sp-article-meta {
        gap: 0.8rem;
        font-size: 0.8rem;
    }
    .sp-article-body {
        font-size: 0.95rem;
    }
    .sp-article-body h2 {
        font-size: 1.25rem;
    }
    .sp-article-lead {
        font-size: 1.05rem;
        padding: 1rem;
    }
    .sp-author-box {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    .sp-share-box {
        flex-direction: column;
        text-align: center;
    }
}

/* =========================================
   GÜMRÜK DANIŞMANLIK PAGE - New Components
   ========================================= */

/* ====== TEXT BLOCK (Two-col text side) ====== */
.sp-text-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.sp-text-block .section-tag {
    display: inline-block;
    margin-bottom: 12px;
}
.sp-text-block h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}
.sp-text-block p {
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
    margin-bottom: 12px;
}
.sp-text-block p strong {
    color: rgba(255,255,255,0.9);
}

/* ====== HIGHLIGHT BOX ====== */
.sp-highlight-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-top: 24px;
    padding: 20px 24px;
    background: rgba(255,61,61,0.06);
    border: 1px solid rgba(255,61,61,0.15);
    border-radius: 14px;
    border-left: 4px solid var(--accent-primary);
}
.sp-highlight-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent-primary), #ff6b6b);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
}
.sp-highlight-box strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}
.sp-highlight-box p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    margin: 0;
}

/* ====== SERVICE CARD (4-col grid items) ====== */
.sp-service-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s ease;
}
.sp-service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,61,61,0.3);
    box-shadow: 0 20px 60px rgba(255,61,61,0.08);
    background: rgba(255,255,255,0.06);
}
.sp-service-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent-primary), #ff6b6b);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    margin: 0 auto 18px;
}
.sp-service-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}
.sp-service-card p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.65;
}

/* ====== FEATURE CARD (3-col grid items) ====== */
.sp-feature-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    transition: all 0.35s ease;
}
.sp-feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,61,61,0.25);
    box-shadow: 0 16px 48px rgba(255,61,61,0.06);
}
.sp-feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255,61,61,0.15), rgba(255,61,61,0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #ff3d3d;
    margin: 0 auto 16px;
}
.sp-feature-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}
.sp-feature-card p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.65;
}

/* ====== PROCESS TIMELINE ====== */
.sp-process-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    max-width: 720px;
    margin: 0 auto;
}
.sp-process-timeline::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--accent-primary), rgba(255,61,61,0.1));
}
.sp-process-step {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 28px 0;
    position: relative;
}
.sp-step-number {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-primary), #ff6b6b);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    z-index: 1;
    box-shadow: 0 0 20px rgba(255,61,61,0.25);
}
.sp-step-content {
    flex: 1;
    padding-top: 10px;
}
.sp-step-content h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}
.sp-step-content p {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}

/* ====== FAQ ACCORDION ====== */
.sp-faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.sp-faq-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.sp-faq-item:hover {
    border-color: rgba(255,61,61,0.2);
}
.sp-faq-item.active {
    border-color: rgba(255,61,61,0.3);
    background: rgba(255,61,61,0.03);
}
.sp-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    user-select: none;
    transition: background 0.3s;
}
.sp-faq-question:hover {
    background: rgba(255,255,255,0.02);
}
.sp-faq-question h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
    flex: 1;
    padding-right: 16px;
}
.sp-faq-question i {
    color: var(--accent-primary);
    font-size: 0.85rem;
    transition: transform 0.3s;
}
.sp-faq-item.active .sp-faq-question i {
    transform: rotate(180deg);
}
.sp-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}
.sp-faq-item.active .sp-faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}
.sp-faq-answer p {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    margin: 0;
}

/* ====== RESPONSIVE - New Components ====== */
@media (max-width: 1024px) {
    .sp-four-col {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .sp-text-block h2 {
        font-size: 1.6rem;
    }
    .sp-highlight-box {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .sp-service-card {
        padding: 24px 18px;
    }
    .sp-feature-card {
        padding: 24px 18px;
    }
    .sp-process-timeline::before {
        left: 22px;
    }
    .sp-step-number {
        width: 46px;
        height: 46px;
        min-width: 46px;
        font-size: 0.9rem;
    }
    .sp-step-content h4 {
        font-size: 1.05rem;
    }
    .sp-faq-question {
        padding: 16px 18px;
    }
    .sp-faq-item.active .sp-faq-answer {
        padding: 0 18px 16px;
    }
    .sp-three-col {
        grid-template-columns: 1fr;
    }
    .sp-four-col {
        grid-template-columns: 1fr;
    }
}
