:root {
    --ink: #0b1235;
    --muted: #66708f;
    --blue: #1687ff;
    --cyan: #09c4d8;
    --purple: #7c2cff;
    --violet: #a855f7;
    --green: #18b66a;
    --orange: #ff9500;
    --line: #e9e8ff;
    --soft: #f7f4ff;
    --soft-blue: #f0f8ff;
    --shadow: 0 22px 60px rgba(75, 53, 190, .14);
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: Inter, Arial, sans-serif;
    background:
        radial-gradient(circle at 18% 12%, rgba(124, 44, 255, .08), transparent 27%),
        radial-gradient(circle at 86% 9%, rgba(22, 135, 255, .11), transparent 28%),
        #fff;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, .92);
    border-bottom: 1px solid #edf0fb;
    backdrop-filter: blur(16px);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 78px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex: 0 0 auto;
    color: var(--ink);
    font-size: 25px;
    font-weight: 800;
    letter-spacing: -.05em;
}

.brand strong,
.accent {
    color: var(--blue);
}

.brand-mark {
    color: var(--purple);
    font-size: 19px;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex: 1 1 auto;
    white-space: nowrap;
}

.main-nav a,
.nav-group-toggle {
    position: relative;
    padding: 31px 0 27px;
    color: #151935;
    font-size: 13px;
    font-weight: 700;
}

.nav-group-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 0;
    background: transparent;
    font-family: inherit;
    cursor: default;
    list-style: none;
}

.nav-group-toggle::-webkit-details-marker {
    display: none;
}

.nav-group-toggle::after {
    content: "⌄";
    color: var(--purple);
    font-size: 12px;
}

.main-nav a.active,
.nav-group-toggle.active {
    color: var(--purple);
}

.main-nav > a.active::after,
.nav-group-toggle.active::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--blue), var(--purple));
}

.nav-group {
    position: relative;
}

.nav-dropdown {
    position: absolute;
    top: calc(100% - 8px);
    left: 50%;
    z-index: 30;
    display: grid;
    min-width: 220px;
    padding: 10px;
    visibility: hidden;
    opacity: 0;
    border: 1px solid #e5dcff;
    border-radius: 16px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 22px 50px rgba(36, 28, 100, .14);
    transform: translate(-50%, 8px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, 0);
}

.nav-dropdown a {
    padding: 12px 14px;
    border-radius: 10px;
}

.nav-dropdown a::after {
    display: none;
}

.nav-dropdown a:hover,
.nav-dropdown a.active {
    color: var(--purple);
    background: #f4efff;
}

.mobile-menu-check,
.mobile-menu-toggle {
    display: none;
}

.mobile-nav-cta {
    display: none;
}

.main-nav .mobile-nav-cta {
    display: none;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 0 26px;
    border: 0;
    border-radius: 12px;
    color: #fff;
    font-weight: 800;
    box-shadow: 0 14px 30px rgba(124, 44, 255, .22);
    background: linear-gradient(135deg, var(--purple), #146cff);
    cursor: pointer;
}

.btn-small {
    min-height: 38px;
    padding: 0 18px;
    font-size: 12px;
}

.btn-outline {
    color: var(--purple);
    border: 2px solid #d8c8ff;
    background: #fff;
    box-shadow: none;
}

.btn-blue {
    background: linear-gradient(135deg, var(--blue), #00a8ff);
}

.btn-green {
    background: linear-gradient(135deg, #18b66a, #0fae83);
}

.btn-orange {
    background: linear-gradient(135deg, #ffae00, #ff7a00);
}

.hero {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: center;
    padding: 68px 0 48px;
}

.hero.compact {
    padding-top: 56px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 8px 14px;
    color: var(--purple);
    border: 1px solid #dccdff;
    border-radius: 999px;
    background: rgba(255, 255, 255, .75);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    margin-bottom: 22px;
    font-size: clamp(44px, 5vw, 76px);
    line-height: .98;
    letter-spacing: -.07em;
}

h2 {
    margin-bottom: 28px;
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.1;
    letter-spacing: -.04em;
}

h3 {
    margin-bottom: 12px;
    font-size: 18px;
    letter-spacing: -.03em;
}

.lead {
    max-width: 610px;
    color: #37405f;
    font-size: 18px;
    line-height: 1.8;
}

.gradient-text {
    color: transparent;
    background: linear-gradient(90deg, var(--blue), var(--purple), #d22bff);
    -webkit-background-clip: text;
    background-clip: text;
}

.section {
    padding: 34px 0;
}

.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 26px;
    text-align: center;
}

.section-title::before,
.section-title::after {
    content: "✦";
    color: var(--purple);
    font-size: 16px;
}

.card,
.panel {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .88);
    box-shadow: var(--shadow);
}

.panel {
    padding: 28px;
}

.patterned-panel {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 8% 20%, rgba(124, 44, 255, .10), transparent 20%),
        radial-gradient(circle at 92% 35%, rgba(22, 135, 255, .10), transparent 22%),
        linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(248, 245, 255, .90));
    box-shadow: var(--shadow);
}

.patterned-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .42;
    background:
        radial-gradient(circle, rgba(124, 44, 255, .24) 1.2px, transparent 1.8px) 0 0 / 28px 28px,
        radial-gradient(circle, rgba(22, 135, 255, .18) 1px, transparent 1.7px) 14px 14px / 36px 36px,
        linear-gradient(115deg, transparent 0 18%, rgba(124, 44, 255, .09) 18% 18.4%, transparent 18.4% 100%),
        linear-gradient(65deg, transparent 0 56%, rgba(22, 135, 255, .08) 56% 56.35%, transparent 56.35% 100%);
}

.patterned-panel > * {
    position: relative;
    z-index: 1;
}

.grid {
    display: grid;
    gap: 20px;
}

.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.grid-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }

.solution-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 18px;
}

.feature-card {
    min-height: 180px;
    padding: 24px;
    border: 1px solid #d6c4ff;
    border-radius: 18px;
    background: linear-gradient(160deg, rgba(244, 237, 255, .98), rgba(232, 244, 255, .88));
}

.feature-card.purple,
.module-card {
    color: #fff;
    background: linear-gradient(145deg, #a55bff, #5925dc);
}

.problem-card,
.solution-card {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    text-align: center;
    background:
        radial-gradient(circle at 22% 18%, rgba(255, 255, 255, .20), transparent 17%),
        radial-gradient(circle at 78% 28%, rgba(255, 255, 255, .16), transparent 18%),
        radial-gradient(circle, rgba(255, 255, 255, .14) 1px, transparent 1.6px) 0 0 / 18px 18px,
        linear-gradient(145deg, #ab5cff, #6727df 58%, #5431dd);
}

.solution-card {
    min-height: 225px;
    padding: 20px 14px 16px;
    background:
        radial-gradient(circle at 20% 14%, rgba(255, 255, 255, .18), transparent 18%),
        radial-gradient(circle, rgba(255, 255, 255, .12) 1px, transparent 1.6px) 0 0 / 17px 17px,
        linear-gradient(145deg, #a753ff, #5d27dd);
}

.problem-card {
    min-height: 156px;
    padding: 18px 14px 16px;
}

.problem-card h3,
.solution-card h3 {
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 1.2;
}

.problem-card p,
.solution-card p {
    margin-bottom: 0;
    font-size: 12px;
    line-height: 1.48;
}

.solution-card strong {
    display: block;
    margin-top: auto;
    padding-top: 12px;
    font-size: 16px;
    line-height: 1;
}

.home-card-icon {
    display: block;
    width: 76px;
    height: 76px;
    margin: 0 auto 12px;
    object-fit: contain;
}

.solution-card .home-card-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 10px;
}

.feature-card p,
.module-card p,
.price-card p,
.mini-card p {
    color: inherit;
    line-height: 1.55;
}

.icon {
    display: inline-grid;
    place-items: center;
    width: 58px;
    height: 58px;
    margin-bottom: 16px;
    border-radius: 18px;
    color: var(--purple);
    font-size: 29px;
    font-weight: 900;
    background: linear-gradient(145deg, #fff, #e9ddff);
    box-shadow: inset 0 0 0 1px #d7c3ff;
}

.st-icon {
    display: inline-grid;
    place-items: center;
    width: 58px;
    height: 58px;
    margin-bottom: 16px;
    border-radius: 18px;
    color: #fff;
    font-size: 25px;
    font-weight: 900;
    line-height: 1;
    background:
        radial-gradient(circle at 28% 22%, rgba(255, 255, 255, .55), transparent 30%),
        linear-gradient(145deg, #ffffff, #eee6ff 38%, #7d37ff);
    box-shadow:
        inset 0 0 0 2px rgba(255, 255, 255, .55),
        0 14px 30px rgba(53, 64, 190, .22);
}

.feature-card.purple .st-icon {
    color: #8234ff;
    background:
        radial-gradient(circle at 28% 22%, #fff, rgba(255, 255, 255, .45) 32%, transparent 34%),
        linear-gradient(145deg, #ffffff, #eadfff);
}

.st-icon::before {
    content: "✦";
}

.icon-puzzle::before { content: "⚙"; }
.icon-head::before { content: "?"; }
.icon-network::before { content: "⌘"; }
.icon-brain::before { content: "♧"; }
.icon-ear::before { content: "◖"; }
.icon-mic::before { content: "♬"; }
.icon-people::before { content: "☷"; }
.icon-ai::before { content: "AI"; font-size: 17px; letter-spacing: -.04em; }
.icon-teacher::before { content: "◉"; }
.icon-repeat::before { content: "↻"; }
.icon-eye::before { content: "◎"; }
.icon-grid::before { content: "▦"; }
.icon-level::before { content: "▴"; }
.icon-calendar::before { content: "▣"; }

.stat-row,
.badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.badge,
.tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: 1px solid var(--line);
    border-radius: 14px;
    color: #4c36d5;
    background: rgba(255, 255, 255, .86);
    font-size: 13px;
    font-weight: 800;
}

.badge img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    flex: 0 0 auto;
}

.visual {
    position: relative;
    min-height: 360px;
    overflow: hidden;
    border: 1px solid #dfe8ff;
    border-radius: 32px;
    background:
        radial-gradient(circle at 48% 46%, rgba(124, 44, 255, .34), transparent 18%),
        radial-gradient(circle at 63% 38%, rgba(22, 135, 255, .32), transparent 16%),
        linear-gradient(145deg, #f9fbff, #fff);
    box-shadow: var(--shadow);
}

.visual.dark {
    color: #fff;
    background:
        radial-gradient(circle at 55% 50%, rgba(101, 55, 255, .65), transparent 22%),
        radial-gradient(circle at 74% 24%, rgba(0, 178, 255, .4), transparent 21%),
        linear-gradient(145deg, #080c2b, #121a4a 58%, #071331);
}

.image-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.image-visual img,
.panel-asset {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 24px;
}

.card-img-icon {
    display: block;
    width: 62px;
    height: 62px;
    margin: 0 0 16px;
    object-fit: contain;
}

.qr-hero {
    max-width: 860px;
    padding: 56px 0 10px;
    text-align: center;
}

.qr-hero .eyebrow,
.qr-hero .lead {
    margin-right: auto;
    margin-left: auto;
}

.qr-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.qr-link-card {
    position: relative;
    display: grid;
    grid-template-columns: 66px minmax(0, 1fr) 32px;
    gap: 16px;
    align-items: center;
    min-height: 138px;
    padding: 22px;
    overflow: hidden;
    border: 1px solid rgba(214, 196, 255, .88);
    border-radius: 22px;
    color: #fff;
    background:
        radial-gradient(circle at 15% 18%, rgba(255, 255, 255, .18), transparent 24%),
        radial-gradient(circle at 86% 12%, rgba(22, 135, 255, .24), transparent 26%),
        linear-gradient(145deg, #7c2cff, #4118ab 58%, #15083f);
    box-shadow: 0 18px 42px rgba(60, 32, 150, .16);
    transition: transform .18s ease, box-shadow .18s ease;
}

.qr-link-card:hover {
    box-shadow: 0 24px 54px rgba(60, 32, 150, .24);
    transform: translateY(-4px);
}

.qr-link-icon {
    display: grid;
    place-items: center;
    width: 66px;
    height: 66px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 20px;
    background: rgba(255, 255, 255, .13);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .12);
    font-size: 29px;
}

.qr-link-content strong,
.qr-link-content small {
    display: block;
}

.qr-link-content strong {
    margin-bottom: 6px;
    font-size: 19px;
}

.qr-link-content small {
    color: rgba(255, 255, 255, .78);
    font-size: 12px;
    line-height: 1.45;
}

.qr-link-arrow {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .13);
    font-weight: 900;
}

.qr-link-card-whatsapp { background: linear-gradient(145deg, #25d366, #128c7e 58%, #075e54); }
.qr-link-card-mobile,
.qr-link-card-phone { background: linear-gradient(145deg, #1687ff, #5322d4 58%, #16083f); }
.qr-link-card-mail { background: linear-gradient(145deg, #ff8a3d, #8b2bd9 58%, #251050); }
.qr-link-card-instagram { background: linear-gradient(145deg, #feda75, #d62976 42%, #4f1bb2); }
.qr-link-card-facebook { background: linear-gradient(145deg, #1877f2, #2450bf 58%, #122050); }
.qr-link-card-youtube { background: linear-gradient(145deg, #ff3b30, #b00020 58%, #2b0714); }
.qr-link-card-linkedin { background: linear-gradient(145deg, #0a66c2, #17418f 58%, #081f44); }

.about-values-grid .feature-card,
.about-reason-grid .feature-card {
    position: relative;
    overflow: hidden;
}

.about-value-card {
    min-height: 245px;
    background:
        radial-gradient(circle at 86% 14%, rgba(124, 44, 255, .16), transparent 22%),
        linear-gradient(160deg, #fbf8ff, #efe6ff);
}

.about-value-icon,
.about-card-icon,
.timeline-marker {
    display: grid;
    place-items: center;
}

.about-value-icon {
    width: 66px;
    height: 66px;
    margin-bottom: 16px;
    border: 1px solid #d7c5ff;
    border-radius: 20px;
    color: #6b2cff;
    background:
        radial-gradient(circle at 30% 22%, rgba(255, 255, 255, .86), transparent 34%),
        linear-gradient(145deg, #fff, #eadfff);
    box-shadow: 0 16px 32px rgba(88, 47, 190, .15);
    font-size: 27px;
}

.about-reason-grid .feature-card.purple {
    min-height: 228px;
    border-color: rgba(219, 202, 255, .34);
    background:
        radial-gradient(circle at 18% 12%, rgba(255, 255, 255, .18), transparent 20%),
        radial-gradient(circle at 78% 10%, rgba(36, 150, 255, .22), transparent 24%),
        linear-gradient(150deg, #6f2cff 0%, #3d169f 54%, #160a46 100%);
    box-shadow: 0 22px 46px rgba(45, 20, 125, .20);
}

.about-card-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, .42);
    border-radius: 18px;
    color: #fff;
    background:
        radial-gradient(circle at 28% 22%, rgba(255, 255, 255, .42), transparent 34%),
        linear-gradient(145deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .06));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .12);
    font-size: 25px;
}

.about-team-section {
    align-items: stretch;
}

.about-team-card {
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: center;
}

.about-team-visual {
    align-self: stretch;
    height: 100%;
}

.about-team-visual img {
    height: 100%;
    min-height: 100%;
    object-fit: cover;
}

.technology-stack {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.technology-panel {
    width: 100%;
    padding: 18px;
    box-shadow: 0 18px 46px rgba(75, 53, 190, .08);
}

.technology-panel h2:first-child {
    margin-top: 0;
}

.tech-components-panel {
    overflow: hidden;
    border-color: #d9c2ff;
    background: linear-gradient(145deg, #fff, #fbf7ff);
}

.tech-component-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.tech-component-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 270px;
    padding: 28px 18px 22px;
    text-align: center;
    border: 1px solid #d7bfff;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(250, 246, 255, .90));
}

.tech-component-card h3 {
    min-height: 46px;
    margin: 18px 0 10px;
    font-size: 15px;
    line-height: 1.18;
}

.tech-component-card p {
    margin: 0;
    color: #1b254d;
    font-size: 12px;
    line-height: 1.55;
}

.tech-line-icon {
    display: grid;
    place-items: center;
    width: 62px;
    height: 62px;
    border: 3px solid #7c2cff;
    border-radius: 50%;
    color: #7c2cff;
    font-size: 30px;
    line-height: 1;
    background: #fff;
}

.icon-brain-tech::before { content: "◍"; }
.icon-feedback-tech::before { content: "◖"; }
.icon-flow-tech::before { content: "⌘"; font-size: 26px; }
.icon-data-tech::before { content: "▥"; font-size: 34px; }

.ecosystem-panel {
    overflow: hidden;
    border-color: #a9d6ff;
    background: linear-gradient(145deg, #fafdff, #eff8ff);
}

.ecosystem-panel p {
    margin-top: -2px;
    color: #1b254d;
    font-size: 13px;
}

.ecosystem-panel .panel-asset {
    margin-top: 14px;
    width: 100%;
    height: clamp(320px, 43vw, 520px);
    object-fit: fill;
    border: 1px solid #9bd0ff;
    border-radius: 14px;
    background: #fff;
}

.memocan-panel {
    overflow: hidden;
    border-color: #95e3e7;
    background: linear-gradient(145deg, #faffff, #eefdfd);
}

.memocan-row {
    display: grid;
    grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
    gap: 24px;
    align-items: center;
}

.memocan-row .visual {
    min-height: 190px;
    justify-content: start;
}

.memocan-row .visual img {
    width: min(100%, 290px);
}

.memocan-row h2 {
    margin: 0 0 10px;
}

.memocan-feature-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: 16px;
    text-align: center;
}

.memocan-feature-row span {
    display: grid;
    justify-items: center;
    gap: 8px;
    color: #1b254d;
    font-size: 12px;
    font-weight: 800;
}

.tech-mini-icon {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    color: #00a9bd;
    border: 1px solid #8de3ea;
    border-radius: 50%;
    background: #fff;
    font-style: normal;
}

.smart-infra-panel {
    overflow: hidden;
    border-color: #ffd9a8;
    background: linear-gradient(145deg, #fffdf9, #fff7ec);
}

.learning-metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.learning-metric-card,
.infra-security-card {
    border: 1px solid #ffbf78;
    border-radius: 14px;
    background: rgba(255, 255, 255, .88);
}

.learning-metric-card {
    min-height: 190px;
    padding: 18px;
}

.learning-metric-card h3 {
    margin-top: 0;
    font-size: 15px;
}

.learning-metric-card p {
    margin: 12px 0 0;
    color: #1b254d;
    font-size: 12px;
    line-height: 1.5;
}

.progress-visual,
.pronunciation-visual {
    display: flex;
    align-items: center;
    gap: 16px;
}

.progress-ring {
    display: grid;
    place-items: center;
    width: 74px;
    height: 74px;
    flex: 0 0 auto;
    border-radius: 50%;
    background:
        radial-gradient(circle closest-side, #fff 68%, transparent 70%),
        conic-gradient(#ff9500 0 85%, #ffe2ba 85% 100%);
}

.progress-ring strong {
    color: #ff9500;
    font-size: 19px;
}

.tiny-chart,
.report-chart {
    display: flex;
    align-items: end;
    gap: 7px;
    width: 100%;
    min-height: 76px;
    padding: 10px;
    border-radius: 10px;
    background:
        linear-gradient(#edf3ff 1px, transparent 1px) 0 0 / 100% 20px,
        #fff;
}

.tiny-chart span,
.report-chart span {
    width: 100%;
    border-radius: 4px 4px 0 0;
    background: linear-gradient(180deg, #6fd2ff, #178cff);
}

.tiny-chart span:nth-child(1) { height: 34%; }
.tiny-chart span:nth-child(2) { height: 50%; }
.tiny-chart span:nth-child(3) { height: 42%; }
.tiny-chart span:nth-child(4) { height: 78%; }
.tiny-chart span:nth-child(5) { height: 92%; }

.waveform {
    display: flex;
    align-items: center;
    gap: 4px;
    min-height: 62px;
    flex: 1 1 auto;
}

.waveform span {
    width: 7px;
    border-radius: 999px;
    background: linear-gradient(180deg, #66d8ff, #1687ff);
}

.waveform span:nth-child(1) { height: 22px; }
.waveform span:nth-child(2) { height: 42px; }
.waveform span:nth-child(3) { height: 30px; }
.waveform span:nth-child(4) { height: 54px; }
.waveform span:nth-child(5) { height: 34px; }
.waveform span:nth-child(6) { height: 46px; }
.waveform span:nth-child(7) { height: 24px; }

.pronunciation-visual small {
    display: block;
    color: #18234f;
    font-size: 10px;
    font-weight: 800;
}

.pronunciation-visual strong {
    display: block;
    color: #00a7e6;
    font-size: 34px;
    line-height: 1;
}

.pronunciation-visual em {
    font-size: 14px;
    font-style: normal;
}

.recommendation-list {
    display: grid;
    gap: 8px;
}

.recommendation-list span {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 7px 10px;
    border-radius: 999px;
    color: #4b3a5f;
    background: #fff0df;
    font-size: 11px;
    font-weight: 800;
}

.recommendation-list b {
    display: grid;
    place-items: center;
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    border-radius: 50%;
    color: #fff;
    background: #7c2cff;
    font-size: 10px;
}

.recommendation-list span:nth-child(2) b { background: #ff9500; }
.recommendation-list span:nth-child(3) b { background: #ffbd00; }

.report-chart {
    min-height: 94px;
}

.report-chart span:nth-child(1) { height: 28%; }
.report-chart span:nth-child(2) { height: 42%; }
.report-chart span:nth-child(3) { height: 52%; }
.report-chart span:nth-child(4) { height: 72%; }
.report-chart span:nth-child(5) { height: 62%; }
.report-chart span:nth-child(6) { height: 88%; }

.infra-security-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 14px;
}

.infra-security-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    min-height: 96px;
    padding: 16px;
}

.infra-security-card h3 {
    margin: 0 0 6px;
    font-size: 14px;
}

.infra-security-card p {
    margin: 0;
    color: #1b254d;
    font-size: 11px;
    line-height: 1.45;
}

.security-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    color: #ff7a00;
    border: 2px solid #ffb66b;
    border-radius: 12px;
    background: #fffaf3;
    font-weight: 900;
}

.compliance-row {
    display: flex;
    justify-content: center;
    gap: 38px;
    align-items: center;
    margin-top: 18px;
    color: #1b254d;
    font-weight: 900;
}

.compliance-row span {
    position: relative;
    display: grid;
    justify-items: center;
    min-width: 74px;
}

.compliance-row span + span::before {
    content: "";
    position: absolute;
    top: 8px;
    bottom: 8px;
    left: -19px;
    width: 1px;
    background: #dfe5f2;
}

.compliance-row small {
    color: #66708f;
    font-size: 11px;
}

.price-card .card-img-icon {
    margin-inline: auto;
}

.pricing-badge img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex: 0 0 auto;
}

.pricing-badge {
    gap: 7px;
    padding: 8px 12px;
    font-size: 12px;
}

.compact-card-icon {
    display: inline-block;
    width: 54px;
    height: 54px;
    margin-bottom: 14px;
    object-fit: contain;
}

.hero-art-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 28px;
}

.hero-art-row img {
    max-width: min(32vw, 260px);
    height: auto;
}

.hero-video-card {
    position: relative;
    min-height: 386px;
    padding: 12px;
    overflow: hidden;
    border: 1px solid rgba(124, 44, 255, .22);
    border-radius: 32px;
    background:
        radial-gradient(circle at 15% 18%, rgba(124, 44, 255, .18), transparent 24%),
        radial-gradient(circle at 86% 78%, rgba(22, 135, 255, .16), transparent 24%),
        linear-gradient(145deg, #fff, #f6f2ff);
    box-shadow: var(--shadow);
}

.hero-video-card iframe {
    display: block;
    width: 100%;
    height: 362px;
    border: 0;
    border-radius: 24px;
    background: #08102f;
}

.how-hero-note {
    display: flex;
    align-items: center;
    gap: 18px;
    max-width: 360px;
    margin: 28px 0 18px;
    padding: 18px 22px;
    border: 1px solid #c99fff;
    border-radius: 12px;
    background: linear-gradient(135deg, #fff, #f7ecff);
}

.how-hero-note img {
    width: 50px;
    height: 42px;
    object-fit: contain;
    flex: 0 0 auto;
}

.how-hero-note h3 {
    margin-bottom: 4px;
    font-size: 15px;
}

.how-hero-note p {
    margin: 0;
    color: #2d3150;
    font-size: 14px;
}

.how-badge-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 420px;
}

.how-badge-card {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 68px;
    padding: 12px;
    border: 1px solid #cfaeff;
    border-radius: 12px;
    background: linear-gradient(135deg, #fff, #f8efff);
}

.how-badge-card img {
    width: 42px;
    height: 34px;
    object-fit: contain;
    flex: 0 0 auto;
}

.how-badge-card strong,
.how-badge-card span {
    display: block;
}

.how-badge-card strong {
    margin-bottom: 3px;
    color: #4d25cc;
    font-size: 13px;
}

.how-badge-card span {
    color: #5f6480;
    font-size: 11px;
    line-height: 1.25;
}

.how-steps,
.how-demo-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 34px;
}

.how-step-card {
    position: relative;
    min-height: 330px;
    padding: 72px 34px 34px;
    border: 2px solid #b67cff;
    border-radius: 16px;
    text-align: center;
    background: linear-gradient(160deg, #f1dfff, #fff);
    box-shadow: 0 16px 36px rgba(110, 56, 220, .12);
}

.how-step-card:not(:last-child)::after {
    content: "→";
    position: absolute;
    right: -31px;
    top: 50%;
    color: #762cff;
    font-size: 36px;
    font-weight: 800;
    transform: translateY(-50%);
}

.how-step-no {
    position: absolute;
    top: 28px;
    left: 24px;
    display: grid;
    place-items: center;
    width: 48px;
    height: 64px;
    border: 1px solid #b98aff;
    border-radius: 50%;
    color: #6b2cff;
    font-size: 32px;
    font-weight: 500;
    background: rgba(255, 255, 255, .24);
}

.how-step-card img {
    display: block;
    width: 112px;
    height: 92px;
    margin: 0 auto 34px;
    object-fit: contain;
}

.how-step-card h3 {
    color: #4b18cf;
    font-size: 19px;
}

.how-step-card p {
    margin: 0;
    color: #1f2444;
    font-size: 15px;
    line-height: 1.9;
}

.how-demo-card {
    min-height: 198px;
    padding: 28px 26px;
    border: 1px solid #bd8cff;
    border-radius: 14px;
    background: linear-gradient(160deg, #f5e6ff, #fff);
}

.how-demo-card img {
    display: block;
    width: 76px;
    height: 62px;
    margin-bottom: 12px;
    object-fit: contain;
}

.how-demo-card h3 {
    color: #5e22db;
    font-size: 18px;
}

.how-demo-card ul {
    margin: 0;
    padding-left: 22px;
    color: #1f2444;
    line-height: 1.9;
}

.orbit {
    position: absolute;
    inset: 38px;
    border: 1px solid rgba(124, 44, 255, .24);
    border-radius: 50%;
    transform: rotate(-12deg);
}

.play {
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    place-items: center;
    width: 108px;
    height: 108px;
    color: #fff;
    border: 3px solid rgba(255, 255, 255, .72);
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    transform: translate(-50%, -50%);
    font-size: 42px;
}

.floating {
    position: absolute;
    display: grid;
    place-items: center;
    width: 92px;
    min-height: 82px;
    padding: 10px;
    border-radius: 18px;
    color: #fff;
    text-align: center;
    font-size: 11px;
    font-weight: 800;
    background: linear-gradient(145deg, var(--purple), var(--blue));
    box-shadow: 0 18px 36px rgba(28, 78, 220, .28);
}

.floating:nth-child(2) { top: 34px; left: 40px; }
.floating:nth-child(3) { top: 112px; left: 20px; background: linear-gradient(145deg, #ff9600, #7033ff); }
.floating:nth-child(4) { right: 35px; top: 45px; }
.floating:nth-child(5) { right: 18px; top: 145px; background: linear-gradient(145deg, #00c28f, #1b7dff); }
.floating:nth-child(6) { left: 90px; bottom: 34px; background: linear-gradient(145deg, #a855f7, #091d5b); }

.journey {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
}

.journey .step {
    position: relative;
    padding: 18px 12px;
    border-radius: 18px;
    background: #fff;
    text-align: center;
}

.journey-icon {
    display: block;
    width: 38px;
    height: 38px;
    margin: 0 auto 10px;
    object-fit: contain;
}

.journey .step:not(:last-child)::after {
    content: "→";
    position: absolute;
    right: -17px;
    top: 38px;
    color: #6d56ff;
    font-weight: 900;
}

.academy-exam-grid {
    align-items: stretch;
}

.academy-exam-card {
    display: flex;
    flex-direction: column;
    min-height: 330px;
    padding: 26px 22px 22px;
    overflow: visible;
    border-color: #c9a9ff;
    background:
        radial-gradient(circle at 18% 14%, rgba(255, 255, 255, .72), transparent 18%),
        linear-gradient(160deg, #f2dcff, #fff 72%);
    box-shadow: 0 18px 42px rgba(94, 49, 196, .12);
}

.academy-exam-icon {
    display: grid;
    place-items: center;
    width: 86px;
    height: 92px;
    margin-bottom: 16px;
    overflow: visible;
    border: 1px solid #dac7ff;
    border-radius: 22px;
    background: rgba(255, 255, 255, .74);
}

.academy-exam-icon img {
    display: block;
    width: 66px;
    height: 88px;
    object-fit: contain;
}

.academy-exam-card h3 {
    margin-bottom: 8px;
    color: #4f20d5;
    font-size: 21px;
}

.academy-exam-card p {
    color: #232847;
    font-size: 14px;
}

.academy-exam-card .exam-focus {
    margin-bottom: 12px;
    color: #6a3fe0;
    font-weight: 900;
}

.exam-progress {
    margin-top: auto;
    padding-top: 18px;
}

.exam-progress-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
    color: #4422ce;
    font-size: 13px;
}

.exam-progress-head strong {
    font-size: 16px;
}

.exam-progress-head span {
    color: #727693;
    font-weight: 800;
}

.exam-progress-track {
    display: block;
    height: 12px;
    overflow: hidden;
    border-radius: 999px;
    background: #e9defd;
    box-shadow: inset 0 0 0 1px rgba(112, 64, 214, .10);
}

.exam-progress-track span {
    display: block;
    width: var(--progress);
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--blue), var(--purple), #d22bff);
    box-shadow: 0 8px 18px rgba(124, 44, 255, .26);
}

.academy-info-stack {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.academy-offer-grid .mini-card {
    min-height: 210px;
}

.academy-offer-grid .compact-card-icon {
    display: block;
    width: 62px;
    height: 62px;
    margin-bottom: 14px;
    object-fit: contain;
}

.academy-certificate-panel {
    overflow: hidden;
}

.academy-certificate-content {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(240px, 1fr);
    gap: 28px;
    align-items: center;
}

.academy-certificate-list {
    display: grid;
    gap: 14px;
}

.certificate-item {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    min-height: 78px;
}

.certificate-item img {
    display: block;
    width: 54px;
    height: 54px;
    object-fit: contain;
}

.certificate-item h3 {
    margin: 0;
}

.certificate-asset {
    display: block;
    width: min(100%, 330px);
    height: auto;
    justify-self: center;
}

.academy-process {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
}

.academy-process-card {
    position: relative;
    min-height: 190px;
    padding: 16px 12px 18px;
    border: 1px solid #ccb2ff;
    border-radius: 16px;
    text-align: center;
    background:
        radial-gradient(circle at 22% 16%, rgba(255, 255, 255, .72), transparent 18%),
        linear-gradient(160deg, #f1dfff, #fff);
    box-shadow: 0 16px 36px rgba(110, 56, 220, .12);
}

.academy-process-card:not(:last-child)::after {
    content: "→";
    position: absolute;
    top: 50%;
    right: -25px;
    z-index: 2;
    color: #762cff;
    font-size: 31px;
    font-weight: 900;
    transform: translateY(-50%);
}

.process-no {
    display: inline-grid;
    place-items: center;
    width: 36px;
    height: 36px;
    margin-bottom: 10px;
    border: 1px solid #b98aff;
    border-radius: 50%;
    color: #6b2cff;
    font-size: 18px;
    font-weight: 900;
    background: rgba(255, 255, 255, .62);
}

.academy-process-card img {
    display: block;
    width: 72px;
    height: 72px;
    margin: 0 auto 12px;
    object-fit: contain;
}

.academy-process-card h3 {
    margin-bottom: 8px;
    color: #4b18cf;
    font-size: 15px;
}

.academy-process-card p {
    margin: 0;
    color: #1f2444;
    font-size: 12px;
    line-height: 1.55;
}

.cta.academy-cta {
    grid-template-columns: minmax(180px, 240px) minmax(0, 1fr) minmax(180px, 240px);
    justify-items: center;
    place-items: center;
    gap: 26px;
    text-align: center;
}

.cta.academy-cta > div {
    max-width: 760px;
    margin-inline: auto;
}

.cta.academy-cta h2,
.cta.academy-cta p {
    margin-right: auto;
    margin-left: auto;
}

.cta.academy-cta .cta-actions {
    justify-content: center;
}

.academy-cta-art {
    display: block;
    width: min(100%, 230px);
    height: auto;
}

.compare {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 18px;
    align-items: center;
}

.compare-list {
    padding: 22px;
    border-radius: 18px;
    background: linear-gradient(135deg, #8e48ff, #6844ed);
    color: #fff;
}

.compare-list.alt {
    background: #fff;
    color: var(--ink);
    border: 1px solid var(--line);
}

.compare-list li {
    margin: 12px 0;
}

.compare-panel {
    padding-right: 28px;
    padding-left: 28px;
}

.home-compare {
    grid-template-columns: minmax(0, 1fr) 62px minmax(0, 1fr);
    align-items: stretch;
}

.home-compare .vs {
    align-self: center;
    justify-self: center;
}

.compare-card {
    padding: 28px 34px;
    border-radius: 18px;
    box-shadow: 0 16px 38px rgba(71, 49, 150, .12);
}

.compare-card h3 {
    margin-bottom: 18px;
    color: #fff;
    text-align: center;
    font-size: 18px;
}

.compare-card ul {
    display: grid;
    gap: 13px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.compare-card li {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 12px;
    align-items: start;
    color: rgba(255, 255, 255, .96);
    line-height: 1.55;
}

.compare-bad {
    background: linear-gradient(135deg, #8e48ff, #6844ed);
}

.compare-good {
    background: linear-gradient(135deg, #8550ff, #5227cf);
}

.compare-icon {
    display: inline-grid;
    place-items: center;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
}

.compare-icon.cross {
    background: #ff5a5f;
}

.compare-icon.check {
    background: #29c96f;
}

.vs {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    color: #fff;
    border-radius: 50%;
    background: #081446;
    font-weight: 900;
}

.module-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.module-hero-badges {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    max-width: 520px;
    margin-top: 34px;
}

.module-hero-badges article {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 14px;
    align-items: center;
}

.module-hero-badges img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.module-hero-badges strong,
.module-hero-badges span {
    display: block;
}

.module-hero-badges strong {
    margin-bottom: 6px;
    color: #171b35;
    font-size: 16px;
}

.module-hero-badges span {
    color: #6c708c;
    font-size: 13px;
}

.module-hero-visual {
    display: grid;
    place-items: center;
}

.module-hero-visual img {
    display: block;
    width: 100%;
    max-width: 540px;
    height: auto;
}

.module-panel {
    padding: 26px 22px 34px;
    border: 1px solid #e7dcff;
    border-radius: 20px;
    background: rgba(255, 255, 255, .78);
}

.module-panel h2,
.module-benefit-grid + h2 {
    color: #171b35;
}

.module-card {
    min-height: 210px;
    padding: 16px 14px 18px;
    border-radius: 16px;
    color: #161b4f;
    text-align: center;
    background: linear-gradient(160deg, #f0e0ff, #fff);
    box-shadow: inset 0 0 0 1px #d0b4ff;
}

.module-card .num {
    display: block;
    margin-bottom: 2px;
    text-align: left;
    color: #2c31d8;
    font-weight: 900;
}

.module-card-icon {
    display: block;
    width: 74px;
    height: 74px;
    margin: 0 auto 12px;
    object-fit: contain;
}

.module-card h3 {
    margin-bottom: 12px;
    color: #2125bf;
    font-size: 15px;
}

.module-card-green h3 {
    color: #078546;
}

.module-card-orange h3 {
    color: #f36b00;
}

.module-card p {
    min-height: 48px;
    margin-bottom: 14px;
    color: #202642;
    font-size: 12px;
    line-height: 1.55;
}

.module-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
}

.module-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 8px;
    border: 1px solid #d8c7ff;
    border-radius: 7px;
    color: #3d2ac8;
    background: rgba(255, 255, 255, .86);
    font-size: 10px;
    font-weight: 800;
}

.module-card-green .module-tags span {
    color: #07783f;
    border-color: #bde9ce;
    background: #f4fff8;
}

.module-note {
    margin: 24px 0 0;
    padding-top: 18px;
    border-top: 1px solid #eee7ff;
    color: #777c92;
    text-align: center;
    font-size: 13px;
}

.module-note::before {
    content: "✦";
    margin-right: 8px;
    color: #ff9b00;
}

.module-benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.module-benefit-card {
    min-height: 246px;
    padding: 24px;
    border: 1px solid #ccb2ff;
    border-radius: 18px;
    background: linear-gradient(160deg, #f0ddff, #fff);
}

.benefit-head {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 14px;
    align-items: start;
    margin-bottom: 20px;
}

.benefit-head img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.benefit-head h3 {
    margin-bottom: 6px;
    color: #261ec2;
    font-size: 16px;
}

.module-benefit-green .benefit-head h3 {
    color: #078546;
}

.benefit-head p {
    margin: 0;
    color: #343a58;
    font-size: 12px;
    line-height: 1.5;
}

.module-benefit-card ul {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.module-benefit-card li {
    display: grid;
    grid-template-columns: 30px 1fr 12px;
    gap: 8px;
    align-items: center;
    min-height: 34px;
    padding: 0 10px;
    border: 1px solid #eee5ff;
    border-radius: 8px;
    color: #251fc1;
    background: rgba(255, 255, 255, .76);
    font-size: 12px;
    font-weight: 800;
}

.module-benefit-green li {
    color: #087742;
    border-color: #d8f3df;
}

.module-benefit-card li span {
    color: #8a75d7;
}

.module-benefit-green li span {
    color: #54b875;
}

.module-benefit-card li em {
    color: currentColor;
    font-style: normal;
    font-size: 20px;
    line-height: 1;
}

.module-fusion-panel {
    display: grid;
    grid-template-columns: 70px minmax(360px, 1fr) minmax(350px, .82fr) 18px 82px;
    gap: 14px;
    align-items: center;
    margin-bottom: 44px;
    padding: 18px 22px;
    border: 1px solid #cdaeff;
    border-radius: 18px;
    background: rgba(255, 255, 255, .78);
}

.fusion-network {
    width: 66px;
    height: 66px;
    object-fit: contain;
}

.module-fusion-panel h2 {
    margin-bottom: 10px;
    color: #161b43;
    font-size: 18px;
    line-height: 1.18;
}

.module-fusion-panel p {
    margin: 0;
    color: #4e536f;
    font-size: 11.5px;
    line-height: 1.5;
}

.fusion-formula {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    min-height: 64px;
    min-width: 0;
    padding: 8px 10px;
    border: 1px solid #ece5ff;
    border-radius: 12px;
    background: rgba(255, 255, 255, .7);
}

.fusion-formula span,
.fusion-result {
    display: grid;
    justify-items: center;
    gap: 4px;
    color: #2f2bc4;
    font-size: 8px;
    font-weight: 900;
    line-height: 1.1;
    text-align: center;
    white-space: nowrap;
}

.fusion-formula img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.fusion-formula b,
.fusion-equals {
    color: #2316c8;
    font-size: 18px;
    line-height: 1;
}

.fusion-result img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

@media (max-width: 1280px) {
    .module-fusion-panel {
        grid-template-columns: 58px minmax(340px, 1fr) minmax(300px, .72fr) 14px 68px;
        gap: 10px;
        padding: 16px 18px;
    }

    .fusion-network {
        width: 54px;
        height: 54px;
    }

    .module-fusion-panel h2 {
        font-size: 15px;
    }

    .module-fusion-panel p {
        font-size: 10px;
    }

    .fusion-formula {
        gap: 4px;
        min-height: 56px;
        padding: 7px 8px;
    }

    .fusion-formula span,
    .fusion-result {
        font-size: 7px;
    }

    .fusion-formula img {
        width: 20px;
        height: 20px;
    }

    .fusion-formula b,
    .fusion-equals {
        font-size: 15px;
    }

    .fusion-result img {
        width: 30px;
        height: 30px;
    }
}

.price-card {
    padding: 32px 24px;
    border: 1px solid #d9c6ff;
    border-radius: 20px;
    background: linear-gradient(180deg, #f2eaff, #fff);
    text-align: center;
}

.price {
    display: block;
    margin: 24px 0;
    color: var(--purple);
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -.06em;
}

.price.blue { color: var(--blue); }
.price.green { color: var(--green); }
.price.orange { color: var(--orange); }

.compare-package-head {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: currentColor;
}

.compare-package-head img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    flex: 0 0 auto;
}

.pricing-actions {
    align-items: stretch;
}

.pricing-action-card {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    min-height: 112px;
}

.pricing-action-card .card-img-icon {
    width: 64px;
    height: 64px;
    margin: 0;
}

.pricing-action-card h3 {
    margin-bottom: 6px;
}

.pricing-action-card p {
    margin: 0;
    font-size: 13px;
}

.pricing-compare-section {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow);
}

.table th,
.table td {
    padding: 20px;
    border: 1px solid #eeecfb;
    text-align: center;
    vertical-align: middle;
}

.table th:first-child,
.table td:first-child {
    text-align: left;
    font-weight: 800;
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(280px, .85fr);
    gap: 34px;
}

.faq-item {
    margin-bottom: 14px;
    border-radius: 10px;
    background: linear-gradient(135deg, #8c38ff, #672bdc);
    color: #fff;
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 21px 24px;
    font-size: 18px;
    font-weight: 900;
    cursor: pointer;
}

.faq-item summary::after {
    content: "⌄";
}

.faq-item p {
    margin: 0;
    padding: 0 24px 22px;
    color: #f4ecff;
}

.faq-help-btn {
    width: 100%;
}

.faq-help-btn + .faq-help-btn {
    margin-top: 10px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

input,
select,
textarea {
    width: 100%;
    min-height: 58px;
    padding: 0 18px;
    border: 1px solid #e2e5f2;
    border-radius: 12px;
    color: var(--ink);
    font: inherit;
    background: #fff;
}

textarea {
    min-height: 150px;
    padding-top: 18px;
    resize: vertical;
}

.contact-main {
    grid-template-columns: minmax(0, 570px) minmax(350px, 480px);
    justify-content: space-between;
    align-items: center;
    gap: 48px;
}

.contact-info-panel {
    align-self: center;
    color: #3e3f66;
}

.contact-question-icon {
    display: grid;
    place-items: center;
    width: 78px;
    height: 78px;
    border-radius: 50%;
    color: #6a49f2;
    background: #ede9fe;
    font-size: 34px;
}

.contact-section-title {
    margin-top: 15px;
    text-align: left;
}

.contact-section-title h2 {
    margin-bottom: 12px;
    color: #32236f;
    font-weight: 600;
}

.contact-section-title h2 span,
.contact-section-title p a {
    color: #6a49f2;
}

.contact-section-title p {
    max-width: 470px;
    margin-bottom: 0;
    color: #3e3f66;
    line-height: 1.7;
}

.contact-section-title p a {
    text-decoration: underline;
}

.contact-faq-btn {
    width: 180px;
    min-height: 48px;
    margin: 10px 0 50px;
    border-radius: 50px;
    background: #6a49f2;
    box-shadow: none;
    font-size: 14px;
    font-weight: 600;
}

.contact-info-list {
    display: grid;
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.contact-info-list li {
    display: flex;
    align-items: center;
}

.contact-info-icon {
    display: grid;
    place-items: center;
    flex: 0 0 65px;
    width: 65px;
    height: 65px;
    margin-right: 20px;
    border-radius: 18px;
    color: #6a49f2;
    background: #ede9fe;
    font-size: 25px;
}

.contact-info-text {
    width: calc(100% - 85px);
}

.contact-info-text span {
    display: block;
    color: #32236f;
    font-size: 20px;
    font-weight: 600;
}

.contact-info-text p,
.contact-info-text a {
    display: block;
    margin: 0;
    color: #3e3f66;
    line-height: 1.55;
}

.contact-info-text a:hover {
    color: #32236f;
}

.full {
    grid-column: 1 / -1;
}

.timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 10px;
    align-items: start;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 28px;
    right: 5.5%;
    left: 5.5%;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(124, 44, 255, .28), rgba(22, 135, 255, .70), rgba(124, 44, 255, .28));
}

.timeline-item {
    position: relative;
    z-index: 1;
    text-align: center;
}

.timeline-marker {
    width: 56px;
    height: 56px;
    margin: 0 auto 9px;
    border: 3px solid #fff;
    border-radius: 50%;
    color: #fff;
    background:
        radial-gradient(circle at 30% 22%, rgba(255, 255, 255, .45), transparent 32%),
        linear-gradient(135deg, #7c2cff, #146cff);
    box-shadow: 0 14px 28px rgba(68, 36, 170, .18);
    font-size: 19px;
}

.timeline-year {
    display: block;
    margin-bottom: 5px;
    color: #5c2ce0;
    font-size: 12px;
    line-height: 1;
    letter-spacing: -.02em;
}

.timeline-item h3 {
    margin-bottom: 5px;
    color: #1a2148;
    font-size: 12px;
    line-height: 1.18;
}

.timeline-item p {
    margin-bottom: 0;
    color: #5f6682;
    font-size: 10.5px;
    line-height: 1.45;
}

.about-timeline-panel {
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 16%, rgba(124, 44, 255, .10), transparent 22%),
        radial-gradient(circle at 92% 12%, rgba(22, 135, 255, .12), transparent 24%),
        linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(247, 242, 255, .92));
}

.philosophy-core-panel {
    background: linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(244, 252, 255, .92));
}

.philosophy-core-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 14px;
}

.philosophy-core-grid .feature-card {
    min-height: 205px;
    padding: 18px 12px;
    text-align: center;
    border-color: #d8ecff;
    background: linear-gradient(180deg, #eaf8ff, #f4fbff);
}

.philosophy-core-grid .compact-card-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 12px;
}

.philosophy-core-grid h3 {
    font-size: 14px;
    line-height: 1.25;
}

.philosophy-core-grid p {
    margin-bottom: 0;
    font-size: 11px;
    line-height: 1.55;
}

.philosophy-compare-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 255px;
    gap: 18px;
    align-items: stretch;
}

.philosophy-compare-intro {
    display: grid;
    align-content: center;
    gap: 14px;
    background: linear-gradient(145deg, #fff, #f7fbff);
}

.philosophy-compare-intro h2 {
    font-size: 24px;
    line-height: 1.2;
}

.philosophy-compare-intro p {
    margin: 0;
}

.philosophy-approach-card {
    height: 100%;
    overflow: hidden;
    border: 1px solid #e0dbff;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 16px 38px rgba(71, 49, 150, .10);
}

.philosophy-approach-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 58px;
    padding: 0 18px;
    color: #fff;
    background: linear-gradient(135deg, #7d2cff, #4f1ec9);
    font-size: 18px;
    font-weight: 900;
}

.philosophy-approach-head img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.philosophy-approach-card ul {
    display: grid;
    gap: 7px;
    margin: 0;
    padding: 12px 16px 14px;
    list-style: none;
}

.philosophy-approach-card li {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 10px;
    align-items: start;
    color: #151935;
    font-size: 14px;
    line-height: 1.42;
}

.philosophy-approach-card li img {
    width: 17px;
    height: 17px;
    margin-top: 2px;
    object-fit: contain;
}

.philosophy-approach-good .philosophy-approach-head {
    background: linear-gradient(135deg, #6f2cff, #2d80ff);
}

.philosophy-compare-photo {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 16px 38px rgba(18, 34, 90, .12);
}

.philosophy-stack {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.philosophy-journey-panel {
    background: linear-gradient(135deg, #e7f8ff, #f5fcff);
}

.philosophy-journey-panel .journey {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.philosophy-journey-panel .step {
    background: transparent;
}

.philosophy-journey-panel .journey-icon {
    width: 74px;
    height: 74px;
}

.philosophy-support-panel {
    background: linear-gradient(135deg, #f6f1ff, #fff8ff);
}

.philosophy-support-panel .mini-card {
    text-align: center;
    border-color: #d9cbff;
    background: linear-gradient(180deg, #f6edff, #fff);
}

.philosophy-support-panel .compact-card-icon {
    width: 58px;
    height: 58px;
    margin-inline: auto;
}

.philosophy-habit-panel {
    display: grid;
    grid-template-columns: 1.1fr 1.45fr 1fr;
    gap: 18px;
    align-items: center;
}

.philosophy-habit-quote {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 16px;
    align-items: start;
}

.philosophy-habit-quote > img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.philosophy-habit-quote p,
.philosophy-habit-items p,
.philosophy-testimonial p {
    margin: 0;
    font-size: 12px;
    line-height: 1.55;
}

.philosophy-habit-items {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.philosophy-habit-items article {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 10px;
    align-items: start;
    min-height: 112px;
    padding: 0 12px;
    border-left: 1px solid #eef0fb;
}

.philosophy-habit-items img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.philosophy-habit-items h3 {
    margin-bottom: 6px;
    font-size: 13px;
    line-height: 1.25;
}

.philosophy-testimonial {
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 14px;
    align-items: center;
}

.philosophy-testimonial > img {
    width: 76px;
    height: 96px;
    object-fit: cover;
    border-radius: 18px;
}

.philosophy-testimonial strong {
    display: block;
    margin-bottom: 8px;
    color: #ff9f1a;
    letter-spacing: .08em;
}

.philosophy-testimonial h3 {
    margin: 8px 0 0;
    font-size: 12px;
}

.cta.philosophy-final-cta {
    grid-template-columns: 74px minmax(0, 1fr) auto;
    gap: 24px;
    color: #fff;
    background:
        radial-gradient(circle at 12% 40%, rgba(20, 165, 255, .28), transparent 24%),
        linear-gradient(135deg, #061d42, #03102d);
}

.philosophy-final-cta > img {
    width: 62px;
    height: 62px;
    object-fit: contain;
}

.philosophy-final-cta p {
    color: #35c8e2;
}

.philosophy-final-cta .btn {
    background: linear-gradient(135deg, #00a6bf, #00879d);
    box-shadow: 0 14px 26px rgba(0, 135, 157, .22);
}

.method-stack {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.method-cycle-panel .journey {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.method-cycle-panel .step,
.method-learn-panel .mini-card {
    border: 1px solid #d8c7ff;
    background: linear-gradient(160deg, rgba(246, 239, 255, .96), rgba(255, 255, 255, .92));
}

.method-cycle-panel .journey-icon {
    width: 52px;
    height: 52px;
}

.method-learn-panel .compact-card-icon {
    width: 66px;
    height: 66px;
}

.flow .compact-card-icon {
    width: 48px;
    height: 48px;
}

.cta.method-cta {
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    justify-content: start;
}

.method-cta-photo {
    display: block;
    width: min(100%, 190px);
    border-radius: 18px;
}

.method-cta-content {
    display: grid;
    max-width: 820px;
    gap: 16px;
    justify-items: start;
}

.method-cta-content p {
    margin: 0;
}

.method-cta-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.method-cta-points .badge {
    padding: 8px 12px;
}

.method-cta-points img {
    display: block;
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.method-cta-btn {
    min-height: 48px;
    padding: 0 22px;
    border-radius: 10px;
    background: linear-gradient(135deg, #00a6bf, #00879d);
    box-shadow: 0 14px 26px rgba(0, 135, 157, .22);
}

.method-cta-btn span {
    font-size: 18px;
    line-height: 1;
}

.dark-section {
    padding: 32px;
    border-radius: 22px;
    color: #fff;
    background: linear-gradient(145deg, #07133b, #132066);
}

.flow {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.flow .mini-card {
    padding: 20px;
    border-radius: 16px;
    background: #fff;
    color: var(--ink);
}

.mini-card {
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
}

.cta {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 26px;
    align-items: center;
    margin: 34px auto;
    padding: 34px;
    border-radius: 24px;
    background:
        radial-gradient(circle at 70% 50%, rgba(124, 44, 255, .18), transparent 30%),
        linear-gradient(135deg, #fff, #f5f1ff);
    box-shadow: var(--shadow);
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.home-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 250px;
    min-height: 72px;
    padding: 13px 20px;
    border-radius: 14px;
    font-weight: 800;
}

.home-cta-button.primary {
    color: #fff;
    background: linear-gradient(135deg, #7d2cff, #5d25dc);
    box-shadow: 0 18px 34px rgba(105, 45, 220, .25);
}

.home-cta-button.secondary {
    color: #20295a;
    border: 1px solid #d9ddf1;
    background: #fff;
    box-shadow: 0 14px 30px rgba(72, 64, 142, .08);
}

.home-cta-button small {
    display: block;
    margin-top: 4px;
    color: inherit;
    font-size: 11px;
    font-weight: 600;
    opacity: .82;
}

.button-icon {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    border-radius: 8px;
    color: currentColor;
    font-size: 20px;
}

.home-cta-button.primary .button-icon {
    color: #fff;
}

.purchase-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: center;
    padding: 22px;
    visibility: hidden;
    opacity: 0;
    transition: opacity .18s ease, visibility .18s ease;
}

.purchase-modal.is-open {
    visibility: visible;
    opacity: 1;
}

.purchase-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 11, 36, .62);
    backdrop-filter: blur(10px);
}

.purchase-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 560px);
    padding: 34px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 28px;
    color: #fff;
    background:
        radial-gradient(circle at 18% 16%, rgba(255, 255, 255, .22), transparent 25%),
        radial-gradient(circle at 86% 22%, rgba(37, 163, 255, .30), transparent 28%),
        linear-gradient(145deg, #7c2cff, #4217ae 52%, #15083f);
    box-shadow: 0 32px 80px rgba(18, 10, 68, .42);
    transform: translateY(14px) scale(.98);
    transition: transform .18s ease;
}

.purchase-modal.is-open .purchase-modal__dialog {
    transform: translateY(0) scale(1);
}

.purchase-modal__dialog .eyebrow {
    color: #fff;
    border-color: rgba(255, 255, 255, .26);
    background: rgba(255, 255, 255, .12);
}

.purchase-modal__dialog h2 {
    max-width: 470px;
    margin-bottom: 14px;
}

.purchase-modal__dialog p {
    margin-bottom: 24px;
    color: #f0e9ff;
    line-height: 1.7;
}

.purchase-modal__icon {
    display: grid;
    place-items: center;
    width: 70px;
    height: 70px;
    margin-bottom: 18px;
    border-radius: 22px;
    color: #fff;
    background: rgba(255, 255, 255, .14);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .18);
    font-size: 28px;
}

.purchase-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 50%;
    color: #fff;
    background: rgba(255, 255, 255, .12);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.purchase-modal .btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, .50);
    background: rgba(255, 255, 255, .10);
}

.about-final-cta {
    grid-template-columns: minmax(0, 1fr) auto;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .16);
    background:
        radial-gradient(circle at 14% 18%, rgba(255, 255, 255, .20), transparent 24%),
        radial-gradient(circle at 86% 32%, rgba(50, 171, 255, .26), transparent 28%),
        linear-gradient(135deg, #7c2cff 0%, #4817b8 48%, #16073f 100%);
}

.about-final-cta h2,
.about-final-cta p {
    margin-bottom: 0;
}

.about-final-cta p {
    color: #efe8ff;
}

.about-final-cta .cta-actions {
    justify-content: flex-end;
}

.about-final-cta .btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, .48);
    background: rgba(255, 255, 255, .10);
}

.footer-feature-strip {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    margin: 22px auto 8px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 16px 42px rgba(75, 53, 190, .10);
}

.footer-feature-strip article {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 86px;
    padding: 18px 20px;
}

.footer-feature-strip article + article {
    border-left: 1px solid #eeeafd;
}

.footer-feature-strip .st-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    margin: 0;
    border-radius: 12px;
    color: var(--purple);
    font-size: 18px;
}

.strip-line-icon {
    display: inline-grid;
    place-items: center;
    width: 32px;
    min-width: 32px;
    height: 32px;
    color: var(--purple);
    font-size: 23px;
    font-weight: 900;
    line-height: 1;
}

.strip-line-icon.green {
    color: #18b66a;
}

.strip-img-icon {
    display: block;
    width: 42px;
    height: 42px;
    object-fit: contain;
    flex: 0 0 auto;
}

.footer-feature-strip h3 {
    margin-bottom: 3px;
    font-size: 14px;
}

.footer-feature-strip p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
}

.site-footer {
    margin-top: 40px;
    padding: 50px 0 24px;
    border-top: 1px solid #eceffc;
    background: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(4, 1fr);
    gap: 34px;
}

.footer-grid h3 {
    font-size: 15px;
}

.footer-grid p,
.footer-grid a {
    display: block;
    margin: 0 0 12px;
    color: #66708f;
    font-size: 14px;
    line-height: 1.6;
}

.footer-brand {
    margin-bottom: 16px;
    font-size: 18px;
}

.socials {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
}

.socials a {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: #4c36d5;
    background: #f3f5fb;
    font-size: 15px;
    font-weight: 900;
    transition: color .18s ease, background .18s ease, transform .18s ease;
}

.socials a:hover {
    color: #fff;
    background: linear-gradient(135deg, var(--purple), var(--blue));
    transform: translateY(-2px);
}

.footer-contact {
    display: grid;
    gap: 10px;
}

.footer-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.footer-contact i {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    border-radius: 9px;
    color: var(--purple);
    background: #f3f5fb;
    font-size: 13px;
}

.footer-contact a:hover {
    color: var(--purple);
}

.newsletter {
    display: flex;
    gap: 8px;
}

.newsletter input {
    min-height: 44px;
}

.newsletter button {
    width: 48px;
    border: 0;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(135deg, var(--purple), var(--blue));
}

.copyright {
    margin: 30px 0 0;
    color: #7a839d;
    text-align: center;
    font-size: 13px;
}

@media (max-width: 1080px) {
    .header-inner {
        gap: 12px;
    }

    .main-nav {
        gap: 10px;
    }

    .main-nav a,
    .nav-group-toggle {
        font-size: 12px;
    }

    .header-inner > .btn {
        padding-inline: 14px;
    }

    .hero,
    .cta,
    .faq-layout,
    .module-fusion-panel {
        grid-template-columns: 1fr;
    }

    .tech-component-grid,
    .learning-metrics-grid,
    .infra-security-grid,
    .memocan-feature-row,
    .qr-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-compare {
        grid-template-columns: 1fr;
    }

    .how-badge-grid,
    .how-steps,
    .how-demo-grid,
    .module-benefit-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .module-fusion-panel {
        justify-items: start;
    }

    .how-step-card:not(:last-child)::after {
        display: none;
    }

    .grid-4,
    .grid-5,
    .grid-6,
    .academy-process,
    .solution-grid,
    .module-grid,
    .timeline,
    .flow,
    .journey,
    .footer-feature-strip,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .timeline::before {
        display: none;
    }

    .timeline-item {
        padding: 16px;
        border: 1px solid #e3d8ff;
        border-radius: 16px;
        background: rgba(255, 255, 255, .72);
    }

    .about-final-cta .cta-actions {
        justify-content: flex-start;
    }

    .academy-process-card:not(:last-child)::after {
        display: none;
    }

    .academy-certificate-content {
        grid-template-columns: 1fr;
    }

    .cta.academy-cta {
        grid-template-columns: 1fr;
    }

    .cta.method-cta {
        grid-template-columns: 1fr;
    }

    .philosophy-core-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .philosophy-journey-panel .journey {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .philosophy-habit-panel,
    .cta.philosophy-final-cta {
        grid-template-columns: 1fr;
    }

    .philosophy-habit-items {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .contact-main {
        grid-template-columns: 1fr;
    }

    .contact-info-panel {
        margin-top: 22px;
    }

    .certificate-asset {
        justify-self: center;
    }

    .footer-feature-strip article + article {
        border-left: 0;
        border-top: 1px solid #eeeafd;
    }
}

@media (max-width: 900px) {
    body {
        overflow-x: hidden;
    }

    .pricing-compare-section {
        width: 100%;
        margin-inline: 0;
        padding-bottom: 8px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .pricing-compare-section .table {
        min-width: 860px;
    }

    .site-header {
        position: sticky;
    }

    .header-inner {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px;
        min-height: 68px;
        padding: 10px 0;
    }

    .brand {
        font-size: 22px;
    }

    .mobile-menu-toggle {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        width: 38px;
        height: 38px;
        padding: 0;
        border: 1px solid #d9c9ff;
        border-radius: 12px;
        background: #fff;
        box-shadow: 0 10px 24px rgba(83, 50, 190, .12);
        cursor: pointer;
    }

    .mobile-menu-toggle span {
        display: block;
        width: 18px;
        height: 2px;
        flex: 0 0 2px;
        border-radius: 999px;
        background: linear-gradient(90deg, var(--purple), var(--blue));
        transition: transform .18s ease, opacity .18s ease;
    }

    .mobile-menu-check:checked + .mobile-menu-toggle span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .mobile-menu-check:checked + .mobile-menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-check:checked + .mobile-menu-toggle span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .main-nav {
        position: fixed;
        top: 76px;
        right: 12px;
        left: 12px;
        z-index: 50;
        display: none;
        width: auto;
        max-height: calc(100vh - 92px);
        overflow-y: auto;
        white-space: normal;
        border: 1px solid #e8defe;
        border-radius: 20px;
        padding: 10px;
        background:
            radial-gradient(circle at 12% 15%, rgba(124, 44, 255, .10), transparent 24%),
            linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(247, 243, 255, .96));
        box-shadow: 0 22px 50px rgba(45, 32, 130, .12);
    }

    .mobile-menu-check:checked ~ .main-nav {
        display: grid;
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .main-nav > a,
    .nav-group-toggle,
    .nav-dropdown a {
        display: flex;
        align-items: center;
        min-height: 44px;
        padding: 12px 14px;
        border-radius: 12px;
        font-size: 14px;
    }

    .main-nav > a.active,
    .nav-dropdown a.active {
        color: var(--purple);
        background: #f0e8ff;
    }

    .main-nav > a.active::after,
    .nav-group-toggle.active::before {
        display: none;
    }

    .nav-group {
        display: grid;
    }

    .nav-group-toggle {
        width: 100%;
        justify-content: space-between;
        color: var(--purple);
        background: #fff;
        cursor: pointer;
    }

    .nav-dropdown {
        position: static;
        display: grid;
        visibility: hidden;
        min-width: 0;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        opacity: 0;
        border: 0;
        background: transparent;
        box-shadow: none;
        transform: none;
        transition: max-height .18s ease, opacity .18s ease, visibility .18s ease;
    }

    .nav-group[open] .nav-dropdown {
        visibility: visible;
        max-height: 180px;
        padding: 4px 0 4px 10px;
        opacity: 1;
        transform: none;
    }

    .nav-group:hover .nav-dropdown {
        visibility: hidden;
        max-height: 0;
        padding: 0;
        opacity: 0;
        transform: none;
    }

    .nav-group[open]:hover .nav-dropdown {
        visibility: visible;
        max-height: 180px;
        padding: 4px 0 4px 10px;
        opacity: 1;
    }

    .header-cta {
        display: none;
    }

    .main-nav .mobile-nav-cta {
        display: inline-flex;
        width: 100%;
        margin-top: 6px;
    }

    .contact-section-title {
        text-align: center;
    }

    .contact-section-title p {
        max-width: none;
    }

    .contact-question-icon,
    .contact-faq-btn {
        margin-right: auto;
        margin-left: auto;
    }

    .contact-faq-btn {
        margin-bottom: 30px;
    }

    .contact-info-list li {
        flex-direction: column;
        text-align: center;
    }

    .contact-info-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .contact-info-text {
        width: 100%;
    }
}

@media (max-width: 700px) {
    .container {
        width: min(100% - 24px, 1180px);
    }

    h1 {
        font-size: 42px;
    }

    .grid-2,
    .grid-3,
    .grid-4,
    .grid-5,
    .grid-6,
    .academy-process,
    .solution-grid,
    .module-grid,
    .timeline,
    .flow,
    .journey,
    .footer-feature-strip,
    .footer-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .memocan-row,
    .tech-component-grid,
    .learning-metrics-grid,
    .infra-security-grid,
    .memocan-feature-row,
    .qr-card-grid {
        grid-template-columns: 1fr;
    }

    .qr-hero {
        padding-top: 36px;
    }

    .qr-link-card {
        grid-template-columns: 56px minmax(0, 1fr) 28px;
        min-height: 122px;
        padding: 18px;
    }

    .qr-link-icon {
        width: 56px;
        height: 56px;
        font-size: 25px;
    }

    .technology-panel {
        padding: 16px;
    }

    .memocan-row .visual {
        justify-content: center;
    }

    .compare {
        grid-template-columns: 1fr;
    }

    .philosophy-core-grid,
    .philosophy-compare-grid,
    .philosophy-journey-panel .journey,
    .philosophy-habit-items {
        grid-template-columns: 1fr;
    }

    .philosophy-compare-grid {
        grid-auto-rows: auto;
    }

    .philosophy-habit-items article {
        min-height: 0;
        padding: 0;
        border-left: 0;
    }

    .how-badge-grid,
    .how-steps,
    .how-demo-grid,
    .module-hero-badges,
    .module-benefit-grid {
        grid-template-columns: 1fr;
    }

    .fusion-formula {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .vs {
        margin: 0 auto;
    }

}
