:root {
    --about-bg: linear-gradient(180deg, #e9f6ff 0%, #e4f1fb 100%);
    --about-panel: linear-gradient(180deg, rgba(235, 247, 255, 0.98) 0%, rgba(227, 240, 252, 0.95) 100%);
    --about-panel-edge: rgba(172, 205, 229, 0.96);
    --about-text: #13243a;
    --about-soft: #5e738d;
    --about-blue: #2f8fd9;
    --about-blue-deep: #1f66b3;
    --about-shadow: 0 34px 88px rgba(36, 87, 129, 0.16), 0 10px 26px rgba(78, 139, 185, 0.12);
    --about-card-radius: 1.5rem;
    --about-card-border: rgba(214, 231, 243, 0.9);
    --about-card-border-hover: rgba(146, 196, 229, 0.94);
    --about-hover-shadow: 0 22px 40px rgba(54, 103, 145, 0.14);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--about-text);
    background:
        radial-gradient(circle at 12% 14%, rgba(131, 204, 247, 0.34) 0%, transparent 22%),
        radial-gradient(circle at 88% 8%, rgba(255, 255, 255, 0.84) 0%, transparent 19%),
        radial-gradient(circle at 50% 100%, rgba(187, 224, 246, 0.3) 0%, transparent 26%),
        linear-gradient(180deg, #f8fcff 0%, #e4f1fb 100%);
}

.about-simple-page {
    min-height: 100vh;
    padding: 1rem;
    display: flex;
    justify-content: center;
}

.about-simple-shell {
    position: relative;
    overflow: hidden;
    width: min(100%, 1220px);
    padding: 1rem;
    border: 1px solid var(--about-panel-edge);
    border-radius: 2rem;
    background: var(--about-panel);
    box-shadow: var(--about-shadow);
    backdrop-filter: blur(18px);
}

.about-simple-shell::before,
.about-simple-shell::after {
    content: '';
    position: absolute;
    pointer-events: none;
}

.about-simple-shell::before {
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.68);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.about-simple-shell::after {
    top: -7rem;
    right: -3rem;
    width: 18rem;
    height: 18rem;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(149, 208, 247, 0.25) 0%, rgba(149, 208, 247, 0) 70%);
}

.about-simple-topbar,
.about-simple-hero,
.about-simple-platforms {
    position: relative;
    z-index: 1;
}

.about-simple-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.35rem 0.45rem 0.9rem;
}

.about-simple-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: inherit;
    text-decoration: none;
    font-weight: 800;
}

.about-simple-brand__mark {
    position: relative;
    width: 2.7rem;
    height: 2.7rem;
    border-radius: 999px;
    background: linear-gradient(180deg, #ffffff 0%, #dcebff 100%);
    border: 1px solid rgba(65, 113, 150, 0.18);
    box-shadow: 0 10px 22px rgba(84, 126, 166, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.about-simple-brand__mark::before,
.about-simple-brand__mark::after {
    content: '';
    position: absolute;
    border-radius: 999px;
}

.about-simple-brand__mark::before {
    inset: 0.52rem 0.72rem 0.52rem 0.56rem;
    background: linear-gradient(180deg, #f4d75e 0%, #c59718 100%);
}

.about-simple-brand__mark::after {
    inset: 0.42rem 0.52rem 0.62rem 1rem;
    background: #e8f6ff;
}

.about-simple-brand__text {
    font-size: clamp(1.42rem, 1.9vw, 1.98rem);
    letter-spacing: -0.04em;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}

.about-simple-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.about-simple-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 2.6rem;
    padding: 0 0.9rem;
    border-radius: 999px;
    color: #1f3046;
    text-decoration: none;
    font-weight: 700;
    transition: color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.about-simple-nav a:hover {
    color: #1c5f9f;
    background: rgba(255, 255, 255, 0.74);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82), 0 10px 22px rgba(80, 128, 166, 0.08);
}

.about-simple-nav a[aria-current='page'] {
    color: var(--about-blue);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(238, 247, 253, 0.94) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82), 0 12px 24px rgba(80, 128, 166, 0.1);
}

.about-simple-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 420px);
    gap: 1.5rem;
    align-items: center;
    padding: 1.2rem 0.45rem 1rem;
}

.about-simple-eyebrow,
.about-simple-section-label {
    margin: 0;
    color: var(--about-blue);
    font-size: clamp(0.95rem, 1.2vw, 1.15rem);
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.about-simple-copy h1 {
    margin: 0.7rem 0 0;
    font-size: clamp(2.85rem, 4.5vw, 4.35rem);
    line-height: 0.95;
    letter-spacing: -0.06em;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.54);
}

/* Smaller hero title for better rhythm */
/* Smaller hero title for better rhythm */
#aboutSimpleTitle {
    font-size: clamp(1.2rem, 2.2vw, 2.0rem);
    font-style: italic;
}

.about-simple-intro {
    max-width: 920px;
    margin: 1rem auto 0;
    text-align: center;
}

.about-simple-intro p {
    margin: 0 0 0.85rem;
    color: var(--about-soft);
    font-size: 1.02rem;
    line-height: 1.7;
}

.about-simple-intro p:last-child { margin-bottom: 0; }

.about-simple-lead {
    margin: 1rem 0 0;
    font-size: 1.04rem;
    line-height: 1.75;
    color: var(--about-text);
}

.about-simple-body {
    margin: 1rem 0 0;
    font-size: 0.98rem;
    line-height: 1.72;
    color: var(--about-soft);
}

.about-simple-highlight {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: start;
    margin-top: 1.35rem;
    padding: 1.15rem 1.2rem;
    border: 1px solid var(--about-card-border);
    border-radius: var(--about-card-radius);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 252, 255, 0.92) 100%);
    box-shadow: 0 18px 36px rgba(54, 103, 145, 0.1);
}

.about-simple-highlight__line {
    width: 0.36rem;
    min-height: 100%;
    border-radius: 999px;
    background: linear-gradient(180deg, #6ac7ff 0%, #2f8fd9 100%);
}

.about-simple-highlight p {
    margin: 0;
    color: #22354b;
    line-height: 1.7;
}

.about-simple-showcase {
    position: relative;
    min-height: 29rem;
    border: 1px solid var(--about-card-border);
    border-radius: 1.85rem;
    background:
        radial-gradient(circle at 50% 40%, rgba(170, 220, 248, 0.58) 0%, rgba(170, 220, 248, 0) 36%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(241, 248, 253, 0.92) 100%);
    box-shadow: 0 18px 36px rgba(54, 103, 145, 0.1);
    overflow: hidden;
}

.about-simple-orbit,
.about-simple-core,
.about-simple-chip {
    position: absolute;
}

.about-simple-orbit {
    left: 50%;
    top: 50%;
    border-radius: 999px;
    transform: translate(-50%, -50%);
    border: 1px dashed rgba(101, 165, 214, 0.34);
}

.about-simple-orbit--outer {
    width: 18rem;
    height: 18rem;
}

.about-simple-orbit--inner {
    width: 12.5rem;
    height: 12.5rem;
}

.about-simple-core {
    left: 50%;
    top: 50%;
    width: 8.2rem;
    height: 8.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(180deg, #58b3f7 0%, #2f8fd9 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.32), 0 18px 34px rgba(47, 143, 217, 0.28);
    color: #ffffff;
    text-align: center;
}

.about-simple-core span,
.about-simple-core strong {
    display: block;
    line-height: 1;
}

.about-simple-core span {
    font-size: 0.9rem;
    letter-spacing: 0.18em;
}

.about-simple-core strong {
    font-size: 1.45rem;
    letter-spacing: -0.05em;
}

.about-simple-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 4.8rem;
    min-height: 2.8rem;
    padding: 0 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.82);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(240, 247, 253, 0.94) 100%);
    box-shadow: 0 14px 30px rgba(54, 103, 145, 0.12);
    font-weight: 800;
    color: #21496b;
}

.about-simple-chip--wa {
    top: 3.5rem;
    left: 3rem;
}

.about-simple-chip--tele {
    top: 5rem;
    right: 2.6rem;
}

.about-simple-chip--ig {
    left: 4.4rem;
    bottom: 5rem;
}

.about-simple-chip--fb {
    right: 3.5rem;
    bottom: 3.6rem;
}

.about-simple-platforms {
    padding: 0.4rem 0.45rem 0.2rem;
}

.about-simple-platforms__header h2 {
    margin: 0.65rem 0 0;
    max-width: 26rem;
    font-size: clamp(2.2rem, 3.3vw, 3.15rem);
    line-height: 1;
    letter-spacing: -0.05em;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.54);
}

.about-simple-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.25rem;
}

.about-simple-card {
    display: grid;
    gap: 0.6rem;
    padding: 0.6rem 0.6rem;
    border: 1px solid rgba(255,255,255,0.62);
    border-radius: 1rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(246, 251, 255, 0.94) 100%);
    box-shadow: 0 10px 28px rgba(36, 87, 129, 0.06), 0 4px 10px rgba(78,139,185,0.04);
    backdrop-filter: blur(6px);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.about-simple-card:hover {
    transform: translateY(-3px);
    border-color: var(--about-card-border-hover);
    box-shadow: var(--about-hover-shadow);
}

.about-simple-card__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 1.6rem;
    padding: 0 0.6rem;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(239, 247, 253, 0.94) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82), 0 6px 14px rgba(80, 128, 166, 0.06);
    font-size: 0.78rem;
    font-weight: 800;
    color: #20486b;
}

.about-simple-card h3 {
    margin: 0;
    font-size: 1.06rem;
    line-height: 1.12;
    letter-spacing: -0.02em;
}

.about-simple-card p {
    margin: 0;
    color: var(--about-soft);
    line-height: 1.42;
}

.about-simple-card__media {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.about-simple-card__icon {
    width: 56px;
    height: 56px;
    display: inline-grid;
    place-items: center;
    border-radius: 12px;
    color: #fff;
    box-shadow: 0 10px 22px rgba(37, 63, 97, 0.12), inset 0 1px 0 rgba(255,255,255,0.12);
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.about-simple-card:hover .about-simple-card__icon {
    transform: translateY(-4px);
}

.about-simple-card--wa .about-simple-card__icon {
    background: linear-gradient(180deg,#25D366 0%, #128C7E 100%);
}

.about-simple-card--telegram .about-simple-card__icon {
    background: linear-gradient(180deg,#2AABEE 0%, #229ED9 100%);
}

.about-simple-card--instagram .about-simple-card__icon {
    background: linear-gradient(45deg,#f58529,#dd2a7b,#8134af,#515bd4);
}

.about-simple-card--facebook .about-simple-card__icon {
    background: linear-gradient(180deg,#1877F2 0%, #0f66d6 100%);
}

.about-simple-card__icon svg {
    width: 36px;
    height: 36px;
    display: block;
    color: #fff;
}

.about-simple-card--wa .about-simple-card__badge {
    color: #168a4b;
}

.about-simple-card--telegram .about-simple-card__badge {
    color: #216da8;
}

.about-simple-card--instagram .about-simple-card__badge {
    color: #a54185;
}

.about-simple-card--facebook .about-simple-card__badge {
    color: #2a62ba;
}
.about-simple-card--web .about-simple-card__badge {
    color: #1b6aa0;
}

@media (max-width: 980px) {
    .about-simple-topbar,
    .about-simple-hero {
        grid-template-columns: 1fr;
    }

    .about-simple-topbar {
        display: grid;
        justify-content: stretch;
    }

    .about-simple-nav {
        flex-wrap: wrap;
    }

    .about-simple-hero {
        padding-top: 0.85rem;
    }

    .about-simple-showcase {
        min-height: 24rem;
    }
}

@media (max-width: 720px) {
    .about-simple-page {
        padding: 0.45rem;
    }

    .about-simple-shell {
        padding: 0.75rem;
        border-radius: 1.45rem;
    }

    .about-simple-grid {
        grid-template-columns: 1fr;
    }

    .about-simple-highlight {
        grid-template-columns: 1fr;
    }

    .about-simple-highlight__line {
        width: 4rem;
        min-height: 0.35rem;
    }

    .about-simple-showcase {
        min-height: 21rem;
    }

    .about-simple-chip {
        min-width: 4rem;
        min-height: 2.45rem;
    }
}

/* Overrides and new layout rules for three-column platform cards and centered hero */
.about-simple-hero {
    text-align: center;
}

.about-simple-hero .about-simple-copy {
    grid-column: 1 / -1;
}

.about-simple-showcase {
    display: none;
}

.about-simple-platform-intro {
    max-width: 66rem;
    margin: 0.9rem auto 0;
    color: var(--about-soft);
    text-align: center;
}

.about-simple-grid--three {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.6rem;
    margin-top: 0.9rem;
}

.about-simple-card {
    grid-template-columns: 52px 1fr;
    gap: 0.4rem;
    padding: 0.35rem 0.45rem;
    align-items: center;
    border-radius: 0.78rem;
    min-height: 4.2rem;
}

.about-simple-card__avatar {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-simple-card__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-simple-card__icon-large {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    box-shadow: 0 8px 20px rgba(47, 143, 217, 0.05), 0 2px 8px rgba(34,56,85,0.03);
    color: #fff;
}

.about-simple-card__img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 999px;
    background: #fff;
    display: block;
    box-shadow: 0 5px 14px rgba(34,56,85,0.06), 0 0 0 4px rgba(255,255,255,0.96);
    transform: translateZ(0);
}

.about-simple-card__content h3 {
    margin: 0 0 0.18rem;
    font-size: 0.98rem;
    line-height: 1.08;
}

.about-simple-card__content p {
    margin: 0;
    color: var(--about-soft);
    font-size: 0.86rem;
    line-height: 1.28;
}

.about-simple-card--wa .about-simple-card__icon-large { background: linear-gradient(180deg,#25D366 0%, #128C7E 100%); }
.about-simple-card--telegram .about-simple-card__icon-large { background: linear-gradient(180deg,#2AABEE 0%, #229ED9 100%); }
.about-simple-card--instagram .about-simple-card__icon-large { background: linear-gradient(45deg,#f58529,#dd2a7b,#8134af,#515bd4); }
.about-simple-card--facebook .about-simple-card__icon-large { background: linear-gradient(180deg,#1877F2 0%, #0f66d6 100%); }
.about-simple-card--web .about-simple-card__icon-large { background: linear-gradient(180deg,#7ecbff 0%, #4aa3e6 100%); }

.about-simple-hero-bottom { display:flex; justify-content:center; padding: 1.5rem 0 2rem; }

@media (max-width: 980px) {
    .about-simple-grid--three { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
    .about-simple-grid--three { grid-template-columns: 1fr; }
    .about-simple-card { grid-template-columns: 72px 1fr; padding: 0.9rem; }
    .about-simple-card__icon-large { width: 64px; height: 64px; box-shadow: 0 12px 30px rgba(47, 143, 217, 0.06); }
}