/* ============================================
   PAGE ABOUT V2 - COMPLETE CSS
   ============================================ */

/* ---------- SECTION 1: SPLASH HERO ---------- */
.about-v2-splash {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0a0015;
}

.about-v2-splash-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(255,107,53,0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(46,196,182,0.10) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 100%, rgba(255,107,53,0.05) 0%, transparent 40%);
    z-index: 0;
}

.about-v2-splash-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.about-v2-splash-text {
    color: white;
}

.about-v2-splash-tag {
    display: inline-block;
    padding: 6px 20px;
    border: 1px solid rgba(255,107,53,0.3);
    border-radius: 50px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #FF6B35;
    margin-bottom: 20px;
}

.about-v2-splash-text h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.about-v2-splash-text h1 span {
    background: linear-gradient(135deg, #FF6B35, #2EC4B6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-v2-splash-text p {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    max-width: 500px;
    margin-bottom: 30px;
}

.about-v2-splash-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.about-v2-splash-btn-primary {
    padding: 14px 35px;
    background: linear-gradient(135deg, #FF6B35, #E71D36);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 5px 30px rgba(255,107,53,0.3);
}

.about-v2-splash-btn-primary:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 15px 50px rgba(255,107,53,0.4);
    color: white;
}

.about-v2-splash-btn-secondary {
    padding: 14px 35px;
    background: transparent;
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.2);
    transition: all 0.4s ease;
}

.about-v2-splash-btn-secondary:hover {
    border-color: #FF6B35;
    background: rgba(255,107,53,0.1);
    transform: translateY(-4px);
    color: white;
}

/* ---------- FLOATING CARDS ---------- */
.about-v2-splash-visual {
    position: relative;
    min-height: 400px;
}

.about-v2-splash-float-card {
    position: absolute;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.3s ease;
    animation: aboutV2Float 3s ease-in-out infinite;
}

.about-v2-splash-float-card:hover {
    background: rgba(255,255,255,0.12);
    transform: scale(1.05);
}

.about-v2-splash-float-card span {
    font-size: 32px;
}

.about-v2-splash-float-card strong {
    display: block;
    font-size: 22px;
    color: white;
}

.about-v2-splash-float-card small {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
}

.about-v2-float-1 {
    top: 20%;
    left: 0;
    animation-delay: 0s;
}

.about-v2-float-2 {
    top: 10%;
    right: 0;
    animation-delay: 0.8s;
}

.about-v2-float-3 {
    bottom: 25%;
    left: 10%;
    animation-delay: 1.6s;
}

.about-v2-float-4 {
    bottom: 15%;
    right: 5%;
    animation-delay: 2.4s;
}

@keyframes aboutV2Float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

/* ---------- SECTION 2: NUMBERS ---------- */
.about-v2-numbers {
    padding: 60px 0;
    background: white;
    border-bottom: 1px solid #f0f0f0;
}

.about-v2-numbers-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.about-v2-number-item {
    text-align: center;
}

.about-v2-number {
    display: block;
    font-size: 56px;
    font-weight: 800;
    background: linear-gradient(135deg, #FF6B35, #2EC4B6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-v2-number-item label {
    display: block;
    font-size: 15px;
    color: #666;
    margin-top: 4px;
    font-weight: 500;
}

/* ---------- SECTION 3: FOUNDER ---------- */
.about-v2-founder {
    padding: 70px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.about-v2-founder-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.about-v2-founder-image {
    display: flex;
    justify-content: center;
}

.about-v2-founder-image-box {
    width: 280px;
    height: 350px;
    background: linear-gradient(135deg, #FF6B35, #E71D36);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(255,107,53,0.2);
}

.about-v2-founder-image-box span {
    font-size: 80px;
}

.about-v2-founder-quote-mark {
    position: absolute;
    bottom: 20px;
    right: 25px;
    font-size: 60px;
    color: rgba(255,255,255,0.15);
    font-weight: 800;
}

.about-v2-founder-text {
    padding: 10px 0;
}

.about-v2-founder-badge {
    display: inline-block;
    padding: 5px 18px;
    background: linear-gradient(135deg, #2EC4B6, #004E89);
    color: white;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.about-v2-founder-text h2 {
    font-size: 34px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.about-v2-founder-text h2 span {
    background: linear-gradient(135deg, #FF6B35, #004E89);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-v2-founder-text blockquote {
    font-size: 20px;
    line-height: 1.8;
    color: #333;
    font-style: italic;
    padding: 0;
    margin: 0 0 20px 0;
    border-left: 4px solid #FF6B35;
    padding-left: 20px;
}

.about-v2-founder-signature {
    margin-bottom: 25px;
}

.about-v2-founder-signature strong {
    display: block;
    font-size: 18px;
    color: #1a1a2e;
}

.about-v2-founder-signature span {
    color: #666;
    font-size: 14px;
}

.about-v2-founder-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.about-v2-founder-mission > div {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: white;
    padding: 15px 18px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.04);
}

.about-v2-founder-mission > div span {
    font-size: 28px;
}

.about-v2-founder-mission > div strong {
    display: block;
    font-size: 14px;
    color: #1a1a2e;
}

.about-v2-founder-mission > div p {
    margin: 0;
    font-size: 13px;
    color: #666;
}

/* ---------- SECTION 4: VALUES ---------- */
.about-v2-values {
    padding: 60px 0 70px;
    background: white;
}

.about-v2-values-header {
    text-align: center;
    margin-bottom: 40px;
}

.about-v2-values-badge {
    display: inline-block;
    padding: 5px 18px;
    background: linear-gradient(135deg, #FF6B35, #E71D36);
    color: white;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.about-v2-values-header h2 {
    font-size: 34px;
    font-weight: 700;
    color: #1a1a2e;
}

.about-v2-values-header h2 span {
    background: linear-gradient(135deg, #FF6B35, #2EC4B6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-v2-values-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.about-v2-value-card {
    background: #f8f9fa;
    padding: 30px 25px;
    border-radius: 14px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.about-v2-value-card:hover {
    background: white;
    border-color: #2EC4B6;
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(46,196,182,0.08);
}

.about-v2-value-icon {
    font-size: 44px;
    display: block;
    margin-bottom: 12px;
}

.about-v2-value-card h3 {
    font-size: 19px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 6px;
}

.about-v2-value-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* ---------- SECTION 5: FLEET ---------- */
.about-v2-fleet {
    padding: 60px 0 70px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.about-v2-fleet-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-v2-fleet-header {
    text-align: center;
    margin-bottom: 40px;
}

.about-v2-fleet-badge {
    display: inline-block;
    padding: 5px 18px;
    background: linear-gradient(135deg, #004E89, #2EC4B6);
    color: white;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.about-v2-fleet-header h2 {
    font-size: 34px;
    font-weight: 700;
    color: #1a1a2e;
}

.about-v2-fleet-header h2 span {
    background: linear-gradient(135deg, #FF6B35, #004E89);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-v2-fleet-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.about-v2-fleet-item {
    background: white;
    padding: 30px 20px;
    border-radius: 14px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
    position: relative;
}

.about-v2-fleet-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    border-color: #FF6B35;
}

.about-v2-fleet-item.featured {
    border-color: #FF6B35;
    background: linear-gradient(135deg, rgba(255,107,53,0.05), rgba(255,107,53,0.02));
}

.about-v2-fleet-item.featured:hover {
    background: white;
}

.about-v2-fleet-icon {
    font-size: 44px;
    display: block;
    margin-bottom: 10px;
}

.about-v2-fleet-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 4px;
}

.about-v2-fleet-item p {
    color: #666;
    font-size: 13px;
    margin: 0;
}

.about-v2-fleet-popular {
    position: absolute;
    top: -10px;
    right: 10px;
    padding: 3px 14px;
    background: linear-gradient(135deg, #FF6B35, #E71D36);
    color: white;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

/* ---------- SECTION 6: TERRITORY ---------- */
.about-v2-territory {
    padding: 60px 0 70px;
    background: white;
}

.about-v2-territory-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-v2-territory-header {
    text-align: center;
    margin-bottom: 40px;
}

.about-v2-territory-badge {
    display: inline-block;
    padding: 5px 18px;
    background: linear-gradient(135deg, #FF6B35, #E71D36);
    color: white;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.about-v2-territory-header h2 {
    font-size: 34px;
    font-weight: 700;
    color: #1a1a2e;
}

.about-v2-territory-header h2 span {
    background: linear-gradient(135deg, #2EC4B6, #004E89);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-v2-territory-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.about-v2-territory-block {
    background: #f8f9fa;
    padding: 22px 24px;
    border-radius: 14px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.about-v2-territory-block:hover {
    background: white;
    border-color: #2EC4B6;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(46,196,182,0.06);
}

.about-v2-territory-block h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.about-v2-territory-cities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.about-v2-territory-cities span {
    padding: 4px 14px;
    background: white;
    border-radius: 50px;
    font-size: 13px;
    color: #555;
    border: 1px solid #e8e8e8;
    transition: all 0.3s ease;
}

.about-v2-territory-cities span:hover {
    background: linear-gradient(135deg, #2EC4B6, #004E89);
    color: white;
    border-color: #2EC4B6;
    transform: scale(1.05);
}

/* ---------- SECTION 7: TESTIMONIALS ---------- */
.about-v2-testimonials {
    padding: 60px 0 70px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.about-v2-testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-v2-testimonials-header {
    text-align: center;
    margin-bottom: 40px;
}

.about-v2-testimonials-badge {
    display: inline-block;
    padding: 5px 18px;
    background: linear-gradient(135deg, #E71D36, #FF6B35);
    color: white;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.about-v2-testimonials-header h2 {
    font-size: 34px;
    font-weight: 700;
    color: #1a1a2e;
}

.about-v2-testimonials-header h2 span {
    background: linear-gradient(135deg, #FF6B35, #004E89);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-v2-testimonials-scroll {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.about-v2-testimonial-card {
    background: white;
    padding: 25px 20px;
    border-radius: 14px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.04);
    border: 1px solid #f0f0f0;
    transition: all 0.4s ease;
}

.about-v2-testimonial-card:hover {
    transform: translateY(-8px);
    border-color: #FF6B35;
    box-shadow: 0 20px 40px rgba(255,107,53,0.08);
}

.about-v2-testimonial-stars {
    color: #FFD700;
    font-size: 16px;
    margin-bottom: 10px;
}

.about-v2-testimonial-card p {
    color: #555;
    font-size: 14px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 12px;
}

.about-v2-testimonial-author strong {
    display: block;
    color: #1a1a2e;
    font-size: 14px;
}

.about-v2-testimonial-author span {
    color: #888;
    font-size: 12px;
}

/* ---------- SECTION 8: TIMELINE ---------- */
.about-v2-timeline {
    padding: 60px 0 70px;
    background: white;
}

.about-v2-timeline-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-v2-timeline-header {
    text-align: center;
    margin-bottom: 40px;
}

.about-v2-timeline-badge {
    display: inline-block;
    padding: 5px 18px;
    background: linear-gradient(135deg, #004E89, #2EC4B6);
    color: white;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.about-v2-timeline-header h2 {
    font-size: 34px;
    font-weight: 700;
    color: #1a1a2e;
}

.about-v2-timeline-header h2 span {
    background: linear-gradient(135deg, #FF6B35, #2EC4B6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-v2-timeline-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
}

.about-v2-timeline-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #FF6B35, #2EC4B6, #004E89, #FF6B35);
    border-radius: 4px;
}

.about-v2-timeline-item {
    text-align: center;
    position: relative;
}

.about-v2-timeline-year {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF6B35, #E71D36);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 14px;
    margin: 0 auto 15px;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 20px rgba(255,107,53,0.3);
}

.about-v2-timeline-item:nth-child(2) .about-v2-timeline-year {
    background: linear-gradient(135deg, #2EC4B6, #004E89);
    box-shadow: 0 5px 20px rgba(46,196,182,0.3);
}

.about-v2-timeline-item:nth-child(3) .about-v2-timeline-year {
    background: linear-gradient(135deg, #004E89, #2EC4B6);
    box-shadow: 0 5px 20px rgba(0,78,137,0.3);
}

.about-v2-timeline-item:nth-child(4) .about-v2-timeline-year {
    background: linear-gradient(135deg, #FF6B35, #F7C59F);
    box-shadow: 0 5px 20px rgba(255,107,53,0.3);
}

.about-v2-timeline-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 2px;
}

.about-v2-timeline-content p {
    color: #666;
    font-size: 13px;
    margin: 0;
}

/* ---------- SECTION 9: CTA ---------- */
.about-v2-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, #0a0015 0%, #1a0a2e 30%, #2d1b4e 60%, #1a0a2e 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-v2-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,107,53,0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: aboutV2CtaGlow 8s ease-in-out infinite;
}

.about-v2-cta::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(46,196,182,0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: aboutV2CtaGlow 10s ease-in-out infinite reverse;
}

@keyframes aboutV2CtaGlow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

.about-v2-cta-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.about-v2-cta-content h2 {
    font-size: 40px;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
}

.about-v2-cta-content h2 span {
    background: linear-gradient(135deg, #2EC4B6, #F7C59F, #FF6B35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 300% 300%;
    animation: aboutV2Gradient 5s ease-in-out infinite;
}

@keyframes aboutV2Gradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.about-v2-cta-content p {
    color: rgba(255,255,255,0.7);
    font-size: 18px;
    margin-bottom: 30px;
}

.about-v2-cta-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.about-v2-cta-primary {
    padding: 15px 40px;
    background: linear-gradient(135deg, #FF6B35, #E71D36);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 17px;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 5px 30px rgba(255,107,53,0.3);
}

.about-v2-cta-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(255,107,53,0.4);
    color: white;
}

.about-v2-cta-secondary {
    padding: 15px 40px;
    background: transparent;
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 17px;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.2);
    transition: all 0.4s ease;
}

.about-v2-cta-secondary:hover {
    border-color: #2EC4B6;
    background: rgba(46,196,182,0.1);
    transform: translateY(-5px);
    color: white;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .about-v2-splash-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .about-v2-splash-text p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .about-v2-splash-buttons {
        justify-content: center;
    }
    .about-v2-splash-visual {
        min-height: 300px;
    }
    .about-v2-float-1 { top: 10%; left: 5%; }
    .about-v2-float-2 { top: 5%; right: 5%; }
    .about-v2-float-3 { bottom: 15%; left: 10%; }
    .about-v2-float-4 { bottom: 10%; right: 10%; }
    
    .about-v2-founder-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .about-v2-founder-image-box {
        width: 200px;
        height: 260px;
    }
    .about-v2-founder-text blockquote {
        text-align: center;
        border-left: none;
        border-top: 4px solid #FF6B35;
        padding-top: 20px;
    }
    .about-v2-founder-mission {
        grid-template-columns: 1fr;
    }
    
    .about-v2-fleet-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-v2-testimonials-scroll {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-v2-timeline-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .about-v2-timeline-grid::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .about-v2-splash-text h1 {
        font-size: 38px;
    }
    .about-v2-splash-text p {
        font-size: 16px;
    }
    .about-v2-numbers-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .about-v2-number {
        font-size: 42px;
    }
    
    .about-v2-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-v2-fleet-grid {
        grid-template-columns: 1fr 1fr;
    }
    .about-v2-territory-grid {
        grid-template-columns: 1fr;
    }
    .about-v2-testimonials-scroll {
        grid-template-columns: 1fr;
    }
    .about-v2-timeline-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .about-v2-splash-float-card {
        padding: 12px 16px;
        font-size: 12px;
    }
    .about-v2-splash-float-card span {
        font-size: 24px;
    }
    .about-v2-splash-float-card strong {
        font-size: 18px;
    }
    
    .about-v2-cta-content h2 {
        font-size: 32px;
    }
    .about-v2-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .about-v2-cta-primary,
    .about-v2-cta-secondary {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about-v2-splash-text h1 {
        font-size: 30px;
    }
    .about-v2-splash-buttons {
        flex-direction: column;
        align-items: center;
    }
    .about-v2-splash-btn-primary,
    .about-v2-splash-btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .about-v2-numbers-inner {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    .about-v2-number {
        font-size: 34px;
    }
    
    .about-v2-values-grid {
        grid-template-columns: 1fr;
    }
    .about-v2-fleet-grid {
        grid-template-columns: 1fr;
    }
    .about-v2-testimonials-scroll {
        grid-template-columns: 1fr;
    }
    .about-v2-timeline-grid {
        grid-template-columns: 1fr;
    }
    
    .about-v2-splash-visual {
        min-height: 200px;
    }
    .about-v2-splash-float-card {
        padding: 10px 14px;
    }
    .about-v2-splash-float-card span {
        font-size: 20px;
    }
    .about-v2-splash-float-card strong {
        font-size: 15px;
    }
    .about-v2-splash-float-card small {
        font-size: 10px;
    }
    
    .about-v2-founder-text h2 {
        font-size: 28px;
    }
    .about-v2-founder-text blockquote {
        font-size: 16px;
    }
    
    .about-v2-territory-block {
        padding: 16px;
    }
    .about-v2-territory-cities span {
        font-size: 11px;
        padding: 3px 10px;
    }
}