@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,700;0,9..144,900;1,9..144,300&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
    --yn-bg: #f5f7ff;
    --yn-bg-alt: #eef2ff;
    --yn-surface: #ffffff;
    --yn-text: #0f1c3f;
    --yn-text-muted: #64748b;
    --yn-text-faint: #94a3b8;
    --yn-blue: #293d75;
    --yn-blue-light: #3b82f6;
    --yn-blue-soft: rgba(29,78,216,0.08);
    --yn-gold: #d97706;
    --yn-gold-light: #fbbf24;
    --yn-border: rgba(15,28,63,0.08);
    --yn-border-mid: rgba(15,28,63,0.12);
    --yn-shadow-sm: 0 2px 12px rgba(15,28,63,0.06);
    --yn-shadow-md: 0 8px 32px rgba(15,28,63,0.1);
    --yn-shadow-lg: 0 20px 60px rgba(15,28,63,0.12);
}

.yn-about * { box-sizing: border-box; }

.yn-about {
    font-family: 'DM Sans', sans-serif;
    background: var(--yn-bg);
    color: var(--yn-text);
    overflow-x: hidden;
}

/* ── HERO ── */
.yn-hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    background: var(--yn-bg);
    overflow: hidden;
}

.yn-hero-mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 15% 50%, rgba(29,78,216,0.1) 0%, transparent 60%),
        radial-gradient(ellipse 50% 70% at 85% 15%, rgba(245,158,11,0.08) 0%, transparent 50%),
        radial-gradient(ellipse 40% 40% at 70% 85%, rgba(59,130,246,0.07) 0%, transparent 50%);
}

.yn-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(15,28,63,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15,28,63,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.yn-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: yn-float 8s ease-in-out infinite;
}

.yn-hero-orb-1 {
    width: 500px; height: 500px;
    background: rgba(29,78,216,0.1);
    top: -150px; left: -100px;
    animation-delay: 0s;
}

.yn-hero-orb-2 {
    width: 300px; height: 300px;
    background: rgba(217,119,6,0.08);
    bottom: -80px; right: -50px;
    animation-delay: -4s;
}

@keyframes yn-float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

.yn-hero-content { position: relative; z-index: 2; }

.yn-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--yn-gold);
    margin-bottom: 28px;
}

.yn-eyebrow::before {
    content: '';
    display: block;
    width: 32px; height: 1px;
    background: var(--yn-gold);
    opacity: 0.8;
}

.yn-hero-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(56px, 8vw, 110px);
    font-weight: 900;
    line-height: 0.92;
    letter-spacing: -2px;
    color: var(--yn-text);
    margin-bottom: 32px;
}

.yn-hero-title em {
    font-style: italic;
    font-weight: 300;
    color: transparent;
    -webkit-text-stroke: 1px rgba(15,28,63,0.8);
}

.yn-hero-title .yn-gold-accent {
    color: var(--yn-gold);
}

.yn-hero-desc {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.75;
    color: var(--yn-text-muted);
    max-width: 420px;
    margin-bottom: 44px;
}

.yn-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.yn-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--yn-blue);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.yn-btn-primary:hover {
    background: #1e40af;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(29,78,216,0.3);
}

.yn-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: transparent;
    color: var(--yn-text-muted);
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    border-radius: 50px;
    text-decoration: none;
    border: 1px solid var(--yn-border-mid);
    transition: all 0.3s ease;
}

.yn-btn-ghost:hover {
    border-color: var(--yn-blue);
    color: var(--yn-blue);
    background: var(--yn-blue-soft);
}

.yn-hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 500px;
}

.yn-year-badge {
    position: absolute;
    width: 180px; height: 180px;
    background: linear-gradient(135deg, var(--yn-gold-light) 0%, var(--yn-gold) 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    box-shadow: 0 0 0 20px rgba(217,119,6,0.08), 0 0 0 40px rgba(217,119,6,0.04), var(--yn-shadow-lg);
    animation: yn-pulse 4s ease-in-out infinite;
}

@keyframes yn-pulse {
    0%, 100% { box-shadow: 0 0 0 20px rgba(217,119,6,0.08), 0 0 0 40px rgba(217,119,6,0.04), var(--yn-shadow-lg); }
    50% { box-shadow: 0 0 0 30px rgba(217,119,6,0.06), 0 0 0 60px rgba(217,119,6,0.02), var(--yn-shadow-lg); }
}

.yn-year-badge .yn-year-num {
    font-family: 'Fraunces', serif;
    font-size: 52px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.yn-year-badge .yn-year-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    margin-top: 4px;
}

.yn-orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px solid var(--yn-border);
}

.yn-orbit-1 { width: 260px; height: 260px; animation: yn-orbit-spin 20s linear infinite; }
.yn-orbit-2 { width: 380px; height: 380px; animation: yn-orbit-spin 35s linear infinite reverse; }
.yn-orbit-3 { width: 480px; height: 480px; animation: yn-orbit-spin 50s linear infinite; }

@keyframes yn-orbit-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.yn-orbit-dot {
    position: absolute;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--yn-blue-light);
    top: -4px; left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 12px rgba(59,130,246,0.6);
}

.yn-orbit-dot-gold {
    background: var(--yn-gold);
    box-shadow: 0 0 12px rgba(217,119,6,0.6);
    top: auto; bottom: -4px;
}

.yn-floating-card {
    position: absolute;
    background: var(--yn-surface);
    backdrop-filter: blur(20px);
    border: 1px solid var(--yn-border);
    border-radius: 16px;
    padding: 14px 20px;
    z-index: 4;
    box-shadow: var(--yn-shadow-md);
    animation: yn-card-float 6s ease-in-out infinite;
}

.yn-floating-card-1 { top: 15%; right: 5%; animation-delay: -2s; }
.yn-floating-card-2 { bottom: 20%; left: 5%; animation-delay: -4s; }

@keyframes yn-card-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.yn-fc-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--yn-text-faint);
    margin-bottom: 4px;
}

.yn-fc-value {
    font-family: 'Fraunces', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--yn-text);
}

.yn-fc-value span { color: var(--yn-gold); }

.yn-breadcrumb-bar {
    position: absolute;
    bottom: 40px; left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--yn-text-faint);
}

.yn-breadcrumb-bar a { color: var(--yn-text-faint); text-decoration: none; transition: color 0.2s; }
.yn-breadcrumb-bar a:hover { color: var(--yn-blue); }
.yn-breadcrumb-bar .yn-bc-sep { color: var(--yn-border-mid); }
.yn-breadcrumb-bar .yn-bc-active { color: var(--yn-text-muted); }

/* ── STORY ── */
.yn-story {
    background: var(--yn-surface);
    padding: 120px 0;
    position: relative;
}

.yn-story-bg-text {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Fraunces', serif;
    font-size: clamp(120px, 18vw, 260px);
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(15,28,63,0.04);
    white-space: nowrap;
    user-select: none;
    pointer-events: none;
    z-index: 0;
}

.yn-story-content { position: relative; z-index: 1; }

.yn-section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--yn-gold);
    margin-bottom: 20px;
}

.yn-section-label::before {
    content: '';
    display: block;
    width: 24px; height: 1px;
    background: var(--yn-gold);
}

.yn-story-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(36px, 4vw, 60px);
    font-weight: 700;
    line-height: 1.1;
    color: var(--yn-text);
    margin-bottom: 28px;
}

.yn-story-title em {
    font-style: italic;
    font-weight: 300;
    color: var(--yn-text-faint);
}

.yn-story-text {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.85;
    color: var(--yn-text-muted);
    margin-bottom: 20px;
}

.yn-story-text strong {
    color: var(--yn-text);
    font-weight: 600;
}

.yn-quote-block {
    border-left: 2px solid var(--yn-gold);
    padding: 16px 24px;
    margin: 32px 0;
    background: rgba(217,119,6,0.04);
    border-radius: 0 12px 12px 0;
}

.yn-quote-block p {
    font-family: 'Fraunces', serif;
    font-size: 20px;
    font-style: italic;
    font-weight: 300;
    color: var(--yn-text-muted);
    margin: 0;
}

.yn-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 40px;
}

.yn-feature-item {
    background: var(--yn-bg);
    border: 1px solid var(--yn-border);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
    cursor: default;
}

.yn-feature-item:hover {
    background: var(--yn-surface);
    border-color: rgba(29,78,216,0.2);
    box-shadow: var(--yn-shadow-md);
    transform: translateY(-3px);
}

.yn-fi-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, rgba(29,78,216,0.12), rgba(59,130,246,0.05));
    border: 1px solid rgba(59,130,246,0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--yn-blue);
    margin-bottom: 14px;
}

.yn-fi-title {
    font-weight: 600;
    font-size: 14px;
    color: var(--yn-text);
    margin-bottom: 6px;
}

.yn-fi-desc {
    font-size: 12px;
    font-weight: 300;
    color: var(--yn-text-faint);
    line-height: 1.6;
    margin: 0;
}

/* ── STATS ── */
.yn-stats {
    background: var(--yn-bg-alt);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.yn-stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(29,78,216,0.05) 0%, transparent 70%);
}

.yn-stats-header {
    text-align: center;
    margin-bottom: 72px;
    position: relative;
    z-index: 1;
}

.yn-section-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(32px, 3.5vw, 52px);
    font-weight: 700;
    color: var(--yn-text);
    line-height: 1.15;
    margin-bottom: 16px;
}

.yn-section-desc {
    font-size: 15px;
    font-weight: 300;
    color: var(--yn-text-muted);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.75;
}

.yn-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--yn-border);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    box-shadow: var(--yn-shadow-md);
}

.yn-stat-item {
    background: var(--yn-surface);
    padding: 52px 32px;
    text-align: center;
    position: relative;
    transition: background 0.3s ease;
}

.yn-stat-item:hover { background: #f0f4ff; }

.yn-stat-item::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 0; height: 2px;
    background: var(--yn-gold);
    transition: width 0.4s ease;
}

.yn-stat-item:hover::after { width: 60%; }

.yn-stat-icon {
    font-size: 28px;
    color: var(--yn-blue-light);
    margin-bottom: 16px;
    display: block;
    opacity: 0.6;
}

.yn-stat-number {
    font-family: 'Fraunces', serif;
    font-size: clamp(40px, 4.5vw, 64px);
    font-weight: 900;
    color: var(--yn-text);
    line-height: 1;
    margin-bottom: 8px;
}

.yn-stat-number .yn-stat-suffix {
    color: var(--yn-gold);
}

.yn-stat-label {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--yn-text-faint);
}

/* ── SERVICES ── */
.yn-services {
    background: var(--yn-surface);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.yn-services::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--yn-border-mid) 50%, transparent);
}

.yn-services-header {
    text-align: center;
    margin-bottom: 72px;
}

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

.yn-service-card {
    background: var(--yn-bg);
    border: 1px solid var(--yn-border);
    border-radius: 24px;
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: default;
}

.yn-service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(29,78,216,0.04) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.yn-service-card:hover {
    border-color: rgba(29,78,216,0.2);
    transform: translateY(-6px);
    box-shadow: var(--yn-shadow-lg), 0 0 0 1px rgba(29,78,216,0.08);
    background: var(--yn-surface);
}

.yn-service-card:hover::before { opacity: 1; }

.yn-service-card-num {
    position: absolute;
    top: 24px; right: 28px;
    font-family: 'Fraunces', serif;
    font-size: 72px;
    font-weight: 900;
    color: rgba(15,28,63,0.04);
    line-height: 1;
    user-select: none;
}

.yn-sc-icon-wrap {
    width: 60px; height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.yn-sc-icon-wrap-blue {
    background: linear-gradient(135deg, rgba(29,78,216,0.12), rgba(59,130,246,0.05));
    border: 1px solid rgba(59,130,246,0.2);
    color: var(--yn-blue);
}

.yn-sc-icon-wrap-gold {
    background: linear-gradient(135deg, rgba(217,119,6,0.12), rgba(217,119,6,0.04));
    border: 1px solid rgba(217,119,6,0.2);
    color: var(--yn-gold);
}

.yn-sc-icon-wrap-teal {
    background: linear-gradient(135deg, rgba(20,184,166,0.12), rgba(20,184,166,0.04));
    border: 1px solid rgba(20,184,166,0.2);
    color: #0d9488;
}

.yn-sc-title {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--yn-text);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.yn-sc-desc {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.75;
    color: var(--yn-text-muted);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.yn-sc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.yn-sc-tag {
    padding: 4px 12px;
    background: var(--yn-surface);
    border: 1px solid var(--yn-border);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 500;
    color: var(--yn-text-muted);
    letter-spacing: 0.5px;
}

/* ── VALUES ── */
.yn-values {
    background: var(--yn-surface);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.yn-values::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--yn-border-mid) 50%, transparent);
}

.yn-values-header {
    margin-bottom: 72px;
}

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

.yn-value-card {
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    background: var(--yn-surface);
    border: 1px solid var(--yn-border);
    cursor: default;
}

.yn-value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--yn-shadow-lg);
}

.yn-value-card-1 { border-top: 3px solid var(--yn-blue-light); }
.yn-value-card-2 { border-top: 3px solid var(--yn-gold); }
.yn-value-card-3 { border-top: 3px solid #0d9488; }
.yn-value-card-4 { border-top: 3px solid #7c3aed; }

.yn-vc-icon {
    font-size: 36px;
    margin-bottom: 20px;
    display: block;
}

.yn-vc-icon-blue { color: var(--yn-blue-light); }
.yn-vc-icon-gold { color: var(--yn-gold); }
.yn-vc-icon-teal { color: #0d9488; }
.yn-vc-icon-purple { color: #7c3aed; }

.yn-vc-title {
    font-family: 'Fraunces', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--yn-text);
    margin-bottom: 12px;
}

.yn-vc-desc {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.75;
    color: var(--yn-text-muted);
    margin: 0;
}

.yn-values-aside {
    position: sticky;
    top: 100px;
    padding-left: 40px;
}

.yn-values-aside-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(40px, 4.5vw, 68px);
    font-weight: 900;
    color: var(--yn-text);
    line-height: 1.05;
    margin-bottom: 24px;
}

.yn-values-aside-title em {
    display: block;
    font-style: italic;
    font-weight: 300;
    color: var(--yn-text-faint);
}

.yn-values-aside-desc {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--yn-text-muted);
}

/* ── CTA ── */
.yn-cta {
    background: var(--yn-surface);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.yn-cta-inner {
    position: relative;
    background: linear-gradient(135deg, #293d75 0%, #1e40af 50%, #1e3a8a 100%);
    border-radius: 32px;
    padding: 80px;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(29,78,216,0.3);
}

.yn-cta-inner::before {
    content: '';
    position: absolute;
    top: -60%; left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.08) 0%, transparent 60%);
    pointer-events: none;
}

.yn-cta-inner::after {
    content: '';
    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: 40px 40px;
    pointer-events: none;
}

.yn-cta-tag {
    display: inline-block;
    position: relative;
    z-index: 1;
    padding: 6px 20px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    margin-bottom: 28px;
}

.yn-cta-title {
    position: relative;
    z-index: 1;
    font-family: 'Fraunces', serif;
    font-size: clamp(36px, 4vw, 60px);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
}

.yn-cta-desc {
    position: relative;
    z-index: 1;
    font-size: 16px;
    font-weight: 300;
    color: rgba(255,255,255,0.6);
    max-width: 500px;
    margin: 0 auto 44px;
    line-height: 1.75;
}

.yn-cta .yn-btn-primary {
    position: relative; z-index: 1;
    background: #fff;
    color: var(--yn-blue);
}

.yn-cta .yn-btn-primary:hover {
    background: #f0f4ff;
    color: #1e40af;
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.yn-cta .yn-btn-ghost {
    position: relative; z-index: 1;
    color: rgba(255,255,255,0.75);
    border-color: rgba(255,255,255,0.25);
}

.yn-cta .yn-btn-ghost:hover {
    border-color: rgba(255,255,255,0.6);
    color: #fff;
    background: rgba(255,255,255,0.08);
}

/* ── ANIMATIONS ── */
.yn-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.yn-reveal.yn-visible {
    opacity: 1;
    transform: translateY(0);
}

.yn-reveal-delay-1 { transition-delay: 0.1s; }
.yn-reveal-delay-2 { transition-delay: 0.2s; }
.yn-reveal-delay-3 { transition-delay: 0.3s; }
.yn-reveal-delay-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
    .yn-hero { min-height: auto; padding: 120px 0 80px; }
    .yn-hero-visual { height: 320px; margin-top: 40px; }
    .yn-year-badge { width: 130px; height: 130px; }
    .yn-year-badge .yn-year-num { font-size: 38px; }
    .yn-orbit-1 { width: 180px; height: 180px; }
    .yn-orbit-2 { width: 260px; height: 260px; }
    .yn-orbit-3 { width: 320px; height: 320px; }
    .yn-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .yn-services-grid { grid-template-columns: 1fr; }
    .yn-values-aside { padding-left: 0; position: static; margin-bottom: 48px; }
    .yn-values-grid { grid-template-columns: 1fr; }
    .yn-cta-inner { padding: 48px 32px; }
    .yn-feature-grid { grid-template-columns: 1fr; }
    .yn-floating-card-1, .yn-floating-card-2 { display: none; }
}

@media (max-width: 575px) {
    .yn-stats-grid { grid-template-columns: 1fr 1fr; }
    .yn-stat-item { padding: 36px 20px; }
    .yn-values-grid { grid-template-columns: 1fr; }
}
.yn-services-header-label {
    justify-content: center;
    display: inline-flex;
}
.yn-services-header-title { margin-top: 12px; }
.yn-hero-actions--center { justify-content: center; }
