.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', 'Manrope', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blue);
    background: rgba(30, 91, 255, 0.08);
    border: 1px solid rgba(30, 91, 255, 0.18);
    border-radius: 100px;
    padding: 5px 14px;
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--blue);
    border-radius: 50%;
}

.section-title {
    font-family: 'Outfit', 'Manrope', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.18;
    letter-spacing: -0.03em;
}

.section-title span { color: var(--blue); }

.section-sub {
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-top: 10px;
    line-height: 1.65;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    color: #fff;
    font-family: 'Outfit', 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 0.92rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 18px rgba(30, 91, 255, 0.28);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(30, 91, 255, 0.38);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    background: transparent;
    color: var(--blue);
    font-family: 'Outfit', 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    border: 2px solid var(--blue-pale);
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.22s ease;
}

.btn-outline:hover {
    background: rgba(30, 91, 255, 0.06);
    border-color: var(--blue);
}

.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-hero {
    position: relative;
    padding: 100px 0 80px;
    background: linear-gradient(135deg, var(--navy) 0%, #0a2466 45%, #0d3380 100%);
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
    radial-gradient(ellipse 70% 80% at 80% 30%, rgba(30,91,255,0.3) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 10% 90%, rgba(95,139,255,0.15) 0%, transparent 55%);
    pointer-events: none;
}

.about-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 100% 100% at 50% 50%, black 20%, transparent 75%);
}

.about-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 820px;
}

.about-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', 'Manrope', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 100px;
    padding: 6px 16px;
    margin-bottom: 24px;
}

.about-hero-badge .dot {
    width: 6px;
    height: 6px;
    background: #7DDFB4;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.about-hero h1 {
    font-family: 'Outfit', 'Manrope', sans-serif;
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.06;
    letter-spacing: -0.04em;
    margin-bottom: 22px;
}

.about-hero h1 em {
    font-style: normal;
    color: transparent;
    background: linear-gradient(90deg, #6FB3FF 0%, #A5C8FF 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.about-hero-desc {
    font-family: 'Manrope', sans-serif;
    font-size: 1.08rem;
    color: rgba(255,255,255,0.60);
    line-height: 1.7;
    max-width: 600px;
    margin-bottom: 36px;
}

.about-hero-meta {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-top: 36px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

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

.about-hero-stat-num {
    font-family: 'Outfit', 'Manrope', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.04em;
    line-height: 1;
}

.about-hero-stat-label {
    font-family: 'Manrope', sans-serif;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.42);
    margin-top: 5px;
}

.about-hero-divider {
    width: 1px;
    height: 42px;
    background: rgba(255,255,255,0.1);
}

.story-section {
    padding: 80px 0;
    background: var(--white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.story-visual {
    position: relative;
}

.story-img-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.story-img-bg {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(145deg, #0f2d73 0%, #1052c8 50%, #1e5bff 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.story-img-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 40px 40px;
}

.story-img-icon {
    position: relative;
    z-index: 1;
    width: 90px;
    height: 90px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.story-img-icon svg {
    width: 44px;
    height: 44px;
    color: rgba(255,255,255,0.85);
}

.story-badge {
    position: absolute;
    bottom: -16px;
    right: -16px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 18px 22px;
    box-shadow: 0 12px 40px rgba(8,30,82,0.12);
    display: flex;
    align-items: center;
    gap: 14px;
}

.story-badge-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.story-badge-icon svg { width: 22px; height: 22px; color: #fff; }

.story-badge-num {
    font-family: 'Outfit', 'Manrope', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--navy);
    letter-spacing: -0.04em;
    line-height: 1;
}

.story-badge-text {
    font-family: 'Manrope', sans-serif;
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.story-content h2 {
    font-family: 'Outfit', 'Manrope', sans-serif;
    font-size: clamp(1.7rem, 2.8vw, 2.4rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.story-content h2 span { color: var(--blue); }

.story-content p {
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 16px;
}

.story-content p:last-of-type { margin-bottom: 0; }

.story-highlight {
    margin: 28px 0;
    padding: 22px 26px;
    background: rgba(30,91,255,0.05);
    border-left: 4px solid var(--blue);
    border-radius: 0 14px 14px 0;
}

.story-highlight p {
    font-family: 'Outfit', 'Manrope', sans-serif;
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.55;
    margin: 0;
}

.mission-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg) 0%, #edf3ff 100%);
}

.mission-head {
    text-align: center;
    margin-bottom: 56px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.value-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 22px;
    padding: 34px 30px;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue) 0%, var(--blue-dark) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.value-card:hover {
    border-color: rgba(30,91,255,0.22);
    box-shadow: 0 10px 36px rgba(8,30,82,0.10);
    transform: translateY(-4px);
}

.value-card:hover::before { transform: scaleX(1); }

.value-icon {
    width: 52px;
    height: 52px;
    background: rgba(30,91,255,0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.value-icon svg { width: 24px; height: 24px; color: var(--blue); }

.value-title {
    font-family: 'Outfit', 'Manrope', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}

.value-text {
    font-family: 'Manrope', sans-serif;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.how-section {
    padding: 80px 0;
    background: var(--white);
}

.how-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: start;
    margin-top: 52px;
}

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

.how-step {
    display: flex;
    gap: 22px;
    position: relative;
    padding-bottom: 36px;
}

.how-step:last-child { padding-bottom: 0; }

.how-step-left {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.how-step-num {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', 'Manrope', sans-serif;
    font-size: 0.85rem;
    font-weight: 900;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(30,91,255,0.3);
}

.how-step-line {
    width: 2px;
    flex: 1;
    background: linear-gradient(180deg, rgba(30,91,255,0.3) 0%, rgba(30,91,255,0.05) 100%);
    margin-top: 8px;
}

.how-step:last-child .how-step-line { display: none; }

.how-step-content { padding-top: 8px; }

.how-step-title {
    font-family: 'Outfit', 'Manrope', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.how-step-text {
    font-family: 'Manrope', sans-serif;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.how-info-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.how-info-card {
    background: linear-gradient(135deg, var(--navy) 0%, #0d3490 100%);
    border-radius: 20px;
    padding: 28px 30px;
    position: relative;
    overflow: hidden;
}

.how-info-card::before {
    content: '';
    position: absolute;
    right: -40px;
    top: -40px;
    width: 160px;
    height: 160px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.how-info-card-icon {
    width: 46px;
    height: 46px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.how-info-card-icon svg { width: 22px; height: 22px; color: #fff; }

.how-info-card-title {
    font-family: 'Outfit', 'Manrope', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.how-info-card-text {
    font-family: 'Manrope', sans-serif;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
}

.how-info-card.light {
    background: var(--bg);
    border: 1.5px solid var(--border);
}

.how-info-card.light .how-info-card-icon {
    background: rgba(30,91,255,0.08);
    border-color: rgba(30,91,255,0.12);
}

.how-info-card.light .how-info-card-icon svg { color: var(--blue); }
.how-info-card.light .how-info-card-title { color: var(--navy); }
.how-info-card.light .how-info-card-text { color: var(--text-muted); }
.how-info-card.light::before { display: none; }

.safety-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #edf3ff 0%, var(--bg) 100%);
}

.safety-wrap {
    background: linear-gradient(135deg, var(--navy) 0%, #0d3490 55%, #1052c8 100%);
    border-radius: 28px;
    padding: 64px;
    position: relative;
    overflow: hidden;
}

.safety-wrap::before {
    content: '';
    position: absolute;
    right: -80px;
    top: -80px;
    width: 380px;
    height: 380px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
}

.safety-wrap::after {
    content: '';
    position: absolute;
    left: 25%;
    bottom: -100px;
    width: 300px;
    height: 300px;
    background: rgba(30,91,255,0.18);
    border-radius: 50%;
}

.safety-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
}

.safety-head-col {
    grid-column: span 3;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 12px;
}

.safety-label {
    display: inline-block;
    font-family: 'Outfit', 'Manrope', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 100px;
    padding: 5px 14px;
    margin-bottom: 16px;
}

.safety-title {
    font-family: 'Outfit', 'Manrope', sans-serif;
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
    line-height: 1.18;
    max-width: 440px;
}

.safety-title span {
    color: #7DDFB4;
}

.safety-sub {
    font-family: 'Manrope', sans-serif;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    max-width: 340px;
    line-height: 1.6;
}

.safety-item {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 18px;
    padding: 26px 24px;
    backdrop-filter: blur(10px);
    transition: background 0.25s, border-color 0.25s;
}

.safety-item:hover {
    background: rgba(255,255,255,0.10);
    border-color: rgba(255,255,255,0.18);
}

.safety-item-icon {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.safety-item-icon svg { width: 24px; height: 24px; color: #fff; }

.safety-item-title {
    font-family: 'Outfit', 'Manrope', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.safety-item-text {
    font-family: 'Manrope', sans-serif;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.52);
    line-height: 1.6;
}

.cta-section {
    padding: 80px 0;
    background: var(--white);
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.cta-text { max-width: 560px; }

.cta-text h2 {
    font-family: 'Outfit', 'Manrope', sans-serif;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 14px;
}

.cta-text h2 span { color: var(--blue); }

.cta-text p {
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
}

.cta-contact-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 16px 20px;
    text-decoration: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    min-width: 260px;
}

.cta-contact-card:hover {
    border-color: rgba(30,91,255,0.3);
    box-shadow: 0 4px 18px rgba(30,91,255,0.08);
}

.cta-contact-icon {
    width: 42px;
    height: 42px;
    background: rgba(30,91,255,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-contact-icon svg { width: 20px; height: 20px; color: var(--blue); }

.cta-contact-label {
    font-family: 'Manrope', sans-serif;
    font-size: 0.7rem;
    color: var(--text-muted);
}

.cta-contact-val {
    font-family: 'Outfit', 'Manrope', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.01em;
}

@media (max-width: 1024px) {
    .container { padding: 0 24px; }
    .story-grid { gap: 52px; }
    .how-grid { gap: 48px; }
    .safety-wrap { padding: 48px 48px; }
    .safety-grid { gap: 24px; }
}

@media (max-width: 900px) {
    .container { padding: 0 20px; }

    .about-hero { padding: 80px 0 64px; }
    .about-hero-meta { gap: 28px; }
    .about-hero-stat-num { font-size: 1.7rem; }

    .story-section { padding: 64px 0; }
    .story-grid { grid-template-columns: 1fr; gap: 40px; }
    .story-badge { bottom: -12px; right: -8px; }

    .mission-section { padding: 64px 0; }
    .values-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

    .how-section { padding: 64px 0; }
    .how-grid { grid-template-columns: 1fr; gap: 44px; }

    .safety-section { padding: 64px 0; }
    .safety-wrap { padding: 40px 36px; }
    .safety-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .safety-head-col { grid-column: span 2; flex-direction: column; align-items: flex-start; }

    .cta-section { padding: 64px 0; }
    .cta-inner { flex-direction: column; align-items: flex-start; gap: 36px; }
    .cta-actions { flex-direction: row; flex-wrap: wrap; }
}

@media (max-width: 640px) {
    .container { padding: 0 16px; }

    .about-hero { padding: 64px 0 52px; }
    .about-hero h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
    .about-hero-desc { font-size: 0.9rem; }
    .about-hero-meta { gap: 20px; flex-wrap: wrap; }
    .about-hero-divider { display: none; }
    .about-hero-stat-num { font-size: 1.5rem; }

    .story-section { padding: 52px 0; }
    .story-badge { right: 0; padding: 14px 16px; gap: 10px; }
    .story-badge-num { font-size: 1.3rem; }

    .mission-section { padding: 52px 0; }
    .values-grid { grid-template-columns: 1fr; }
    .value-card { padding: 26px 22px; }

    .how-section { padding: 52px 0; }
    .how-grid { margin-top: 36px; }

    .safety-section { padding: 52px 0; }
    .safety-wrap { padding: 32px 24px; border-radius: 20px; }
    .safety-grid { grid-template-columns: 1fr; }
    .safety-head-col { grid-column: span 1; }

    .cta-section { padding: 52px 0; }
    .cta-actions { flex-direction: column; width: 100%; }
    .cta-contact-card { min-width: unset; width: 100%; }
}

@media (max-width: 480px) {
    .about-hero {
    padding: 40px 10px 20px 5px;
    }
    .about-hero h1 { font-size: clamp(1.75rem, 9vw, 2.4rem); }
    .about-hero-badge { display: none; }
    .story-img-bg { aspect-ratio: 3/2; }
    .story-badge { display: none; }
    .safety-wrap { padding: 28px 18px; }
    .about-hero-meta {
    display: none;
    }
}