﻿

body {
    background-color: #fff;
}

.about-section-header {
    text-align: center;
    margin-bottom: 48px;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 11px;
    font-weight: 700;
    border-radius: 20px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-badge svg {
    margin-bottom: 1px;
}

.about-section-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -1px;
    line-height: 1.2;
}

.about-section-header p {
    font-size: 16px;
    color: #475569;
    margin-top: 12px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.about-hero-section {
    padding: 120px 0 80px;
    background: #fff;
}

.about-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-hero-content {
    flex: 1;
}

.about-hero-title {
    font-size: 52px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.text-blue {
    color: #2563eb;
}

.about-hero-desc {
    font-size: 16px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-inline-stats {
    display: flex;
    gap: 40px;
    margin-top: 32px;
}

.hero-stat-item {
    display: flex;
    flex-direction: column;
}

.hero-stat-item strong {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
    margin-bottom: 4px;
}

.hero-stat-item span {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

.about-hero-image-wrapper {
    flex: 1;
    position: relative;
    max-width: 500px;
}

.about-hero-image {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 24px 48px -12px rgba(0,0,0,0.1);
}

.hero-floating-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #fff;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #f1f5f9;
}

.hero-floating-badge strong {
    font-size: 24px;
    font-weight: 800;
    color: #2563eb;
    line-height: 1;
    margin-bottom: 4px;
}

.hero-floating-badge span {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
}

.problem-solution-section {
    padding: 100px 0;
    background: #fff;
    max-width: 1050px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.ps-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 32px;
}

.ps-card {
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.ps-card-left {
    box-shadow: 0 10px 40px -10px rgba(0,0,0,0.05);
}

.ps-card-right {
    background: #f8fbff;
    border-color: #e0e7ff;
}

.ps-card-bg-shape {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    z-index: 0;
}

.ps-card-bg-shape.bg-red {
    background: #fff1f2;
}

.ps-card-bg-shape.bg-blue {
    background: #eff6ff;
}

.ps-card-content {
    position: relative;
    z-index: 1;
}

.ps-card:hover {
    transform: translateY(-5px);
}

.ps-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.icon-red { background: #fee2e2; color: #ef4444; }
.icon-blue { background: #eff6ff; color: #2563eb; }

.ps-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.ps-card p {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 24px;
}

.link-red { color: #ef4444; font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 4px; }
.link-blue { color: #2563eb; font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 4px; }

.about-blue-banner {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    padding: 32px 0;
    color: #fff;
    border-radius: 12px;
    width: 100%;
}

.banner-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    text-align: center;
    gap: 16px;
    padding: 0 24px;
}

.banner-item strong {
    display: block;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
}

.banner-item span {
    font-size: 12px;
    color: #bfdbfe;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.foundation-section {
    padding: 100px 0;
    background: #faf9ff;
}

.badge-mission {
    background: #ffffff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.foundation-grid {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.foundation-card {
    background: #fff;
    border: none;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 40px -10px rgba(0,0,0,0.05);
}

.fd-badge-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.fd-badge-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 48px;
    gap: 4px;
}

.fd-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.fd-sub {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

.fd-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-blue-bg { background: #dbeafe; color: #2563eb; }
.icon-purple-bg { background: #f3e8ff; color: #a855f7; }

.foundation-card p {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

.different-section {
    padding: 100px 0;
    background: #fff;
}

.badge-diff {
    background: #eff6ff;
    color: #2563eb;
    box-shadow: none;
}

.different-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.diff-card {
    background: #fff;
    border: none;
    border-radius: 12px;
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.05), 0 0 0 1px rgba(0,0,0,0.03);
}

.diff-card-bg-shape {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    z-index: 0;
}
.diff-card-bg-shape.bg-blue { background: #eff6ff; }
.diff-card-bg-shape.bg-green { background: #f0fdf4; }
.diff-card-bg-shape.bg-purple { background: #faf5ff; }

.diff-card-content {
    position: relative;
    z-index: 1;
}

.diff-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.diff-icon.icon-blue { background: #e0e7ff; color: #2563eb; }
.diff-icon.icon-orange { background: #ffedd5; color: #ea580c; }
.diff-icon.icon-purple { background: #f3e8ff; color: #a855f7; }

.diff-badge {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.diff-badge.blue { background: #eff6ff; color: #2563eb; }
.diff-badge.green { background: #dcfce7; color: #16a34a; }
.diff-badge.purple { background: #faf5ff; color: #a855f7; }

.diff-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.diff-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 24px;
}

.link-blue { color: #2563eb; font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 4px; }
.link-orange { color: #ea580c; font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 4px; }
.link-purple { color: #a855f7; font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 4px; }

.team-section {
    padding: 100px 0;
    background: #fff;
}

.badge-team {
    background: #eff6ff;
    color: #2563eb;
    box-shadow: none;
}

.team-grid {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.team-card {
    width: calc(33.333% - 16px);
    max-width: 340px;
    flex: 0 0 auto;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.1);
}

.team-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.team-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 24px 24px 24px;
    background: linear-gradient(to top, rgba(15,23,42,0.95) 0%, rgba(15,23,42,0.6) 60%, rgba(15,23,42,0) 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.team-info h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #fff;
}

.team-info p {
    font-size: 13px;
    color: #cbd5e1;
    margin-bottom: 12px;
}

.linkedin-icon {
    display: inline-flex;
    align-items: center;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.linkedin-icon:hover {
    color: #bfdbfe;
}

.media-section {
    padding: 100px 0;
    background: #faf9ff;
}

.badge-press {
    background: #ffffff;
    color: #2563eb;
    border: 1px solid #f1f5f9;
    box-shadow: none;
}

.media-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.media-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    padding: 24px;
    height: 150px;
    display: flex;
    flex-direction: column;
    box-shadow: none;
}

.media-logo-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.media-logo-row h4 {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.media-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-blue-light { background: #e0e7ff; color: #2563eb; }
.icon-red-light { background: #fee2e2; color: #ef4444; }
.icon-purple-light { background: #f3e8ff; color: #a855f7; }
.icon-orange-light { background: #ffedd5; color: #ea580c; }

.media-card p {
    font-size: 13px;
    color: #475569;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 16px;
    flex-grow: 1;
}

.media-link {
    font-size: 12px;
    color: #2563eb;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
}

.journey-section {
    padding: 100px 0;
    background: #fff;
}

.badge-journey {
    background: #eff6ff;
    color: #2563eb;
    box-shadow: none;
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    margin-left: -1px;
    background-color: #93c5fd;
    z-index: 1;
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    width: 45%;
    background: #fff;
    padding: 32px 40px;
    border-radius: 12px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 40px -10px rgba(0,0,0,0.05);
    position: relative;
    display: flex;
    flex-direction: column;
}

.timeline-item.left-item .timeline-content {
    text-align: right;
    align-items: flex-end;
}

.timeline-item.right-item .timeline-content {
    text-align: left;
    align-items: flex-start;
}

.tl-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.tl-header-right {
    flex-direction: row;
    justify-content: flex-end;
}

.tl-header-right .tl-year-info {
    align-items: flex-end;
}

.tl-year-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tl-year {
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
}

.tl-label {
    font-size: 10px;
    color: #94a3b8;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.text-purple { color: #a855f7; }
.text-orange { color: #ea580c; }
.text-blue { color: #2563eb; }

.tl-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-solid-blue { background: #4f46e5; color: #fff; }

.timeline-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

.timeline-content.current-content {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    box-shadow: none;
}

.timeline-image {
    width: 45%;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    
}

.timeline-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #2563eb;
    border: none;
    box-shadow: 0 0 0 4px #fff;
    z-index: 3;
}

.timeline-dot.dot-purple {
    background: #9333ea;
}

.partners {
    background: #ffffff;
    padding: 60px 0;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    overflow: hidden;
}

.partners-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #94a3b8;
    text-transform: uppercase;
}

.partners-marquee {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.partners-track {
    display: flex;
    align-items: center;
    gap: 72px;
    animation: marquee-scroll 28s linear infinite;
    width: max-content;
}

.partners-marquee:hover .partners-track {
    animation-play-state: paused;
}

.partners-track img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.35);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.partners-track img:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.12);
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.about-bottom-cta {
    padding: 100px 0;
    background: #2563eb;
    text-align: center;
    color: #ffffff;
}

.about-bottom-cta h2 {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.about-bottom-cta p {
    font-size: 18px;
    color: #bfdbfe;
    max-width: 600px;
    margin: 0 auto 40px;
}

.about-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.btn-white {
    background: #fff;
    color: #2563eb;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    text-decoration: none;
}

.btn-white:hover {
    background: #f8fafc;
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

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

@media (max-width: 1024px) {
    .about-hero-container {
        flex-direction: column;
        text-align: center;
    }
    .hero-inline-stats {
        justify-content: center;
    }
    .about-hero-desc {
        margin: 0 auto 40px;
    }
    .hero-floating-badge {
        bottom: auto;
        top: 20px;
        right: 20px;
    }
    .team-card {
        width: calc(50% - 12px);
        max-width: none;
    }
    .media-grid, .different-grid, .banner-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ps-container, .foundation-grid {
        grid-template-columns: 1fr;
    }
    .media-grid, .different-grid, .banner-grid {
        grid-template-columns: 1fr;
    }
    .team-card {
        width: 100%;
        max-width: 400px;
    }
    .timeline::before {
        left: 20px;
    }
    .timeline-item, .timeline-item:nth-child(even) {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 60px;
    }
    .timeline-dot {
        left: 20px;
        transform: translate(-50%, 0);
        top: 0;
    }
    .timeline-content, .timeline-image {
        width: 100%;
    }
    .timeline-item.left-item .timeline-content,
    .timeline-item.right-item .timeline-content {
        text-align: left;
        padding: 24px;
    }
    .tl-header, .tl-header-right {
        flex-direction: row;
    }
    .timeline-image {
        margin-top: 24px;
    }
}

@media (max-width: 768px) {

    .about-hero {
        padding: 90px 24px 36px !important;
        min-height: auto !important;
    }

    .about-hero-inner {
        flex-direction: column !important;
        gap: 28px !important;
    }

    .about-hero-title {
        font-size: 28px !important;
        font-weight: 800 !important;
        line-height: 1.2 !important;
        margin-bottom: 10px !important;
    }

    .about-hero-subtitle {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }

    .about-hero-image {
        width: 100% !important;
        height: 220px !important;
        object-fit: cover !important;
        border-radius: 16px !important;
    }

    .about-section {
        padding: 32px 24px !important;
    }

    .about-section-title {
        font-size: 22px !important;
        font-weight: 700 !important;
        margin-bottom: 6px !important;
    }

    .about-content-block {
        flex-direction: column !important;
        gap: 20px !important;
    }

    .about-content-text { width: 100% !important; }
    .about-content-image {
        width: 100% !important;
        height: 200px !important;
        object-fit: cover !important;
        border-radius: 14px !important;
    }

    .team-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 14px !important;
    }

    .team-card {
        border-radius: 14px !important;
        overflow: hidden;
    }

    .team-card-img {
        width: 100% !important;
        height: 140px !important;
        object-fit: cover !important;
    }

    .team-card-info {
        padding: 10px !important;
    }

    .team-card-name {
        font-size: 13px !important;
        font-weight: 700 !important;
    }

    .team-card-role {
        font-size: 11px !important;
        color: #64748b !important;
    }

    .values-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
    }

    .value-card {
        border-radius: 12px !important;
        padding: 16px !important;
        display: flex !important;
        flex-direction: row !important;
        gap: 14px !important;
        align-items: flex-start !important;
    }

    .value-icon {
        width: 40px !important;
        height: 40px !important;
        border-radius: 10px !important;
        flex-shrink: 0;
    }

    .about-stats-grid {
        display: flex !important;
        flex-direction: row !important;
        overflow-x: auto !important;
        gap: 10px !important;
        padding-bottom: 8px;
        scrollbar-width: none;
    }
    .about-stats-grid::-webkit-scrollbar { display: none; }

    .stat-card {
        flex: 0 0 130px !important;
        min-width: 130px !important;
        border-radius: 12px !important;
        padding: 16px 12px !important;
        text-align: center !important;
    }

    .partners-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 12px !important;
        align-items: center;
    }

    .partners-grid img {
        width: 100% !important;
        height: auto !important;
        max-height: 36px !important;
        object-fit: contain !important;
    }
}

@media (max-width: 390px) {
    .team-grid { grid-template-columns: 1fr !important; }
    .partners-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 768px) {
    .container,
    [class$="-container"],
    [class*="hero-container"],
    [class*="page-container"],
    [class*="section-container"],
    .checkout-grid,
    .quote-main {
        padding-left: 20px !important;
        padding-right: 20px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
}
