*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --purple: #6236ff;
    --purple-hover: #4f28e0;
    --purple-soft: #f3eefc;
    --purple-navy: #2b1b62;
    --lime: #c1ff52;
    --lime-text: #b6e62a;
    --lime-hover: #b3f24a;
    --gold: #c1ff52;
    --text: #1a1230;
    --muted: #6b6580;
    --bg: #ffffff;
    --white: #ffffff;
    --border: #ece8f5;
    --shadow: 0 10px 28px rgba(43, 27, 98, 0.07);
    --shadow-hover: 0 18px 40px rgba(98, 54, 255, 0.14);
    --font: "Poppins", "Segoe UI", Tahoma, sans-serif;
}

html {
    scroll-behavior: smooth;
}

::selection {
    background: rgba(98, 54, 255, 0.16);
    color: var(--purple-navy);
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--purple);
    text-decoration: none;
}

button,
input {
    font-family: inherit;
}

input[type="search"] {
    appearance: none;
}

.container {
    width: min(1180px, 92%);
    margin: 0 auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    border-radius: 999px;
    padding: 0.62rem 1.15rem;
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1;
    border: 1.5px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    transition: 0.2s ease;
}

.btn:hover {
    text-decoration: none;
}

.btn-primary {
    background: var(--purple);
    color: var(--white);
    box-shadow: 0 8px 18px rgba(98, 54, 255, 0.22);
}

.btn-primary:hover {
    background: var(--purple-hover);
    box-shadow: 0 10px 22px rgba(98, 54, 255, 0.3);
}

.btn-outline {
    background: var(--white);
    color: var(--purple);
    border-color: var(--purple);
}

.btn-outline:hover {
    background: var(--purple-soft);
}

.btn-lime {
    background: var(--lime);
    color: var(--purple-navy);
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
    transition: transform 0.25s ease, background 0.2s ease, box-shadow 0.25s ease;
}

.btn-lime:hover {
    background: var(--lime-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(193, 255, 82, 0.35);
}

.icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--purple);
    display: grid;
    place-items: center;
    cursor: pointer;
}

.icon-btn svg {
    width: 18px;
    height: 18px;
}

.icon-btn:hover {
    border-color: var(--purple);
    background: var(--purple-soft);
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.86);
    border-bottom: 1px solid rgba(236, 232, 245, 0.9);
    backdrop-filter: blur(18px);
    box-shadow: 0 8px 24px rgba(43, 27, 98, 0.04);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-height: 72px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    flex-shrink: 0;
    color: var(--text);
}

.brand:hover {
    text-decoration: none;
}

.brand img {
    display: block;
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.brand-word {
    font-size: 1.28rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
    color: var(--purple);
}

.brand-word span {
    color: #8fd400;
}

.nav-toggle {
    display: none;
    margin-left: auto;
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 18px;
    height: 2px;
    background: var(--text);
}

.header-menus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    min-width: 0;
    gap: 1rem;
}

.main-nav > ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.15rem;
    list-style: none;
}

.main-nav a,
.drop-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.45rem 0.7rem;
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    background: none;
    border: 0;
    cursor: pointer;
    font-family: inherit;
}

.main-nav a svg,
.drop-toggle svg {
    width: 10px;
    height: 8px;
    transition: transform 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active,
.drop-toggle:hover,
.drop-toggle.active,
.has-dropdown.open .drop-toggle {
    color: var(--purple);
    text-decoration: none;
}

.main-nav > ul > li > a.active::after {
    content: "";
    position: absolute;
    left: 0.7rem;
    right: 0.7rem;
    bottom: 0.08rem;
    height: 2px;
    background: var(--purple);
    border-radius: 2px;
}

.has-dropdown {
    position: relative;
}

.has-dropdown.open .drop-toggle svg {
    transform: rotate(180deg);
}

.main-nav .dropdown {
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 0;
    min-width: 180px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 0.45rem;
    display: none;
    list-style: none;
    z-index: 20;
}

.has-dropdown.open > .dropdown {
    display: block;
}

.dropdown a {
    display: block;
    padding: 0.5rem 0.7rem;
    border-radius: 8px;
    font-size: 0.86rem;
}

.dropdown a:hover {
    background: var(--purple-soft);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    flex-shrink: 0;
}

.header-search {
    position: relative;
}

.search-popover {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 0.55rem);
    width: 260px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 0.5rem;
    gap: 0.4rem;
    z-index: 20;
}

.search-popover.open,
.header-search:focus-within .search-popover {
    display: flex;
}

.search-popover input {
    flex: 1;
    min-width: 0;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.5rem 0.65rem;
    font-size: 0.85rem;
    outline: none;
}

.search-popover button {
    border: 0;
    background: var(--purple);
    color: var(--white);
    border-radius: 8px;
    padding: 0.5rem 0.7rem;
    font-weight: 600;
    cursor: pointer;
}

.site-main {
    flex: 1;
}

.home-page .site-main {
    padding: 0;
}

.page-section {
    width: min(1180px, 92%);
    margin: 0 auto;
    padding: 3rem 0;
}

.page-section h1 {
    margin-bottom: 0.75rem;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.page-section p {
    color: var(--muted);
    max-width: 65ch;
}

/* Hero */
.hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 88% 12%, rgba(98, 54, 255, 0.1), transparent 32%),
        radial-gradient(circle at 8% 80%, rgba(193, 255, 82, 0.12), transparent 28%),
        #ffffff;
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 1.2rem 2rem;
    align-items: center;
    padding: 1.4rem 0 1.6rem;
}

.hero-copy h1 {
    font-size: clamp(1.75rem, 3.4vw, 2.7rem);
    line-height: 1.18;
    letter-spacing: -0.03em;
    color: var(--purple-navy);
    margin-bottom: 0.55rem;
    animation: fadeUp 0.7s ease both;
}

.hero-copy h1 span {
    color: var(--lime-text);
    display: inline-block;
    animation: popIn 0.7s 0.25s ease both;
}

.hero-copy > p {
    color: var(--muted);
    max-width: 44ch;
    margin-bottom: 0.9rem;
    animation: fadeUp 0.7s 0.12s ease both;
}

.hero-search {
    display: flex;
    align-items: center;
    width: min(100%, 520px);
    background: var(--white);
    border-radius: 999px;
    padding: 0.28rem 0.28rem 0.28rem 1.1rem;
    box-shadow: 0 10px 30px rgba(28, 11, 74, 0.1);
    border: 1px solid transparent;
    transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
    animation: fadeUp 0.7s 0.22s ease both;
}

.hero-search:focus-within {
    border-color: rgba(98, 54, 255, 0.35);
    box-shadow: 0 12px 32px rgba(98, 54, 255, 0.18);
    transform: translateY(-1px);
}

.hero-search input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: none;
    background: transparent;
    font-size: 0.95rem;
    color: var(--text);
}

.hero-search button {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border: 0;
    border-radius: 50%;
    background: var(--purple);
    color: var(--white);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: transform 0.25s ease, background 0.2s ease;
}

.hero-search button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.25s ease;
}

.hero-search button:hover {
    background: var(--purple-hover);
    transform: scale(1.08);
}

.hero-search button:hover svg {
    transform: rotate(-12deg) scale(1.05);
}

.hero-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 1.2rem;
    list-style: none;
    margin-top: 1rem;
    width: min(100%, 480px);
}

.hero-points li {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    min-width: 0;
    animation: fadeUp 0.6s ease both;
}

.hero-points li:nth-child(1) { animation-delay: 0.32s; }
.hero-points li:nth-child(2) { animation-delay: 0.4s; }
.hero-points li:nth-child(3) { animation-delay: 0.48s; }
.hero-points li:nth-child(4) { animation-delay: 0.56s; }

.point-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--purple);
    color: var(--white);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-points li:hover .point-icon {
    transform: translateY(-2px) scale(1.08);
    box-shadow: 0 8px 16px rgba(98, 54, 255, 0.28);
}

.point-icon svg {
    width: 16px;
    height: 16px;
}

.hero-points strong {
    display: block;
    font-size: 0.8rem;
    line-height: 1.2;
}

.hero-points small {
    color: var(--muted);
    font-size: 0.7rem;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.8s 0.2s ease both;
}

.hero-visual::after {
    content: "";
    position: absolute;
    width: 62%;
    height: 62%;
    right: 8%;
    bottom: 6%;
    background: radial-gradient(circle, rgba(98, 54, 255, 0.22), transparent 70%);
    filter: blur(18px);
    z-index: 0;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.hero-visual:hover::after {
    opacity: 1;
    transform: scale(1.06);
}

.hero-visual img {
    position: relative;
    z-index: 1;
    display: block;
    width: 118%;
    max-width: 760px;
    max-height: 390px;
    height: auto;
    object-fit: contain;
    cursor: pointer;
    transform-origin: center;
    transition: transform 0.35s ease;
}

.hero-visual img:hover {
    transform: translateY(-8px) scale(1.03);
}

.hero-visual img.is-bounce {
    animation: imgBounce 0.7s ease;
}

/* Categories */
.categories {
    padding: 3.2rem 0 2.2rem;
    background: var(--white);
}

.section-head h2,
.how-card h2,
.about-copy h2 {
    font-size: 1.65rem;
    color: var(--purple-navy);
    display: inline-block;
}

.section-head h2::after,
.how-card h2::after,
.about-copy h2::after {
    content: "";
    display: block;
    width: 52px;
    height: 4px;
    background: var(--lime);
    border-radius: 4px;
    margin-top: 0.35rem;
}

.cat-wrap {
    position: relative;
    margin-top: 1.5rem;
}

.cat-track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 0.5rem 3rem 1rem 0.15rem;
}

.cat-track::-webkit-scrollbar {
    display: none;
}

.cat-card {
    flex: 0 0 230px;
    scroll-snap-align: start;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 1rem 1.1rem;
    box-shadow: var(--shadow);
    color: var(--text);
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.cat-card:hover {
    text-decoration: none;
    transform: translateY(-5px);
    border-color: #d9cff8;
    box-shadow: 0 16px 32px rgba(98, 54, 255, 0.14);
}

.cat-card:hover .cat-icon {
    transform: scale(1.08);
}

.cat-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--purple-soft);
    color: var(--purple);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.cat-icon svg {
    width: 22px;
    height: 22px;
}

.cat-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.cat-card strong {
    display: block;
    font-size: 0.95rem;
    line-height: 1.25;
}

.cat-card small {
    color: var(--muted);
}

.cat-next {
    position: absolute;
    right: 0;
    top: 38%;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: var(--purple);
    color: var(--white);
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(91, 53, 229, 0.28);
    transition: transform 0.25s ease, background 0.2s ease;
}

.cat-next svg {
    width: 20px;
    height: 20px;
}

.cat-next:hover {
    background: var(--purple-hover);
    transform: scale(1.08);
}

/* Why + How */
.info-split {
    padding: 1rem 0 3.2rem;
    background: var(--white);
}

.info-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 2rem;
    align-items: stretch;
}

.why-card {
    background: linear-gradient(180deg, #4c1d95 0%, #2b1b62 100%);
    color: var(--white);
    border-radius: 28px;
    padding: 1.8rem;
}

.why-card h2 {
    font-size: 1.4rem;
    margin-bottom: 1.3rem;
}

.why-card ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem 0.9rem;
    list-style: none;
}

.why-card li {
    display: flex;
    gap: 0.7rem;
    align-items: flex-start;
    min-width: 0;
}

.why-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    color: var(--gold);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.why-icon svg {
    width: 17px;
    height: 17px;
}

.why-card strong {
    display: block;
    font-size: 0.9rem;
}

.why-card p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
}

.how-card {
    min-width: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 28px;
    box-shadow: var(--shadow);
    padding: 1.8rem 1.4rem;
}

.how-card h2 {
    margin-bottom: 1.5rem;
}

.how-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.4rem;
    list-style: none;
}

.how-steps li {
    position: relative;
    text-align: center;
    padding: 0 0.2rem;
}

.how-steps li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 30px;
    left: 68%;
    width: 64%;
    border-top: 2px dashed #d5ccec;
}

.step-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 0.65rem;
    border-radius: 50%;
    background: var(--purple-soft);
    color: var(--purple);
    display: grid;
    place-items: center;
}

.step-icon svg {
    width: 24px;
    height: 24px;
}

.step-num {
    position: absolute;
    top: 42px;
    left: calc(50% - 34px);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--lime);
    color: var(--purple-navy);
    font-size: 0.7rem;
    font-weight: 700;
    display: grid;
    place-items: center;
}

.how-steps strong {
    display: block;
    font-size: 0.82rem;
    margin-bottom: 0.15rem;
}

.how-steps p {
    color: var(--muted);
    font-size: 0.74rem;
}

/* About */
.about {
    padding: 1rem 0 3.2rem;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 2.2rem;
    align-items: center;
}

.about-copy h2 {
    margin-bottom: 1rem;
}

.about-copy p {
    color: var(--muted);
    max-width: 52ch;
    margin-bottom: 0.85rem;
}

.about-copy .btn {
    margin-top: 0.6rem;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    list-style: none;
}

.about-stats li {
    background: var(--purple-soft);
    border-radius: 18px;
    padding: 1.2rem 1rem;
    text-align: center;
}

.about-stats strong {
    display: block;
    font-size: 1.55rem;
    color: var(--purple);
    line-height: 1.15;
}

.about-stats span {
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 500;
}

/* CTA */
.cta {
    padding: 0 0 3.2rem;
    background: var(--white);
}

.cta-banner {
    display: flex;
    align-items: center;
    gap: 1.3rem;
    background: linear-gradient(90deg, #2b1b62, #6236ff);
    border-radius: 28px;
    padding: 1.3rem 1.5rem;
    color: var(--white);
}

.cta-rocket {
    width: 68px;
    height: 68px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--lime);
    color: var(--purple-navy);
    display: grid;
    place-items: center;
}

.cta-rocket svg {
    width: 32px;
    height: 32px;
}

.cta-copy {
    flex: 1;
    min-width: 0;
}

.cta-copy h2 {
    font-size: 1.35rem;
    margin-bottom: 0.15rem;
}

.cta-copy p {
    color: rgba(255, 255, 255, 0.82);
}

.cta-banner .btn-lime {
    flex-shrink: 0;
}

/* Footer */
.site-footer {
    margin-top: auto;
    background: linear-gradient(180deg, #2b1b62 0%, #1c0b4a 100%);
    color: rgba(255, 255, 255, 0.78);
    padding: 2.6rem 0 1.2rem;
}

.site-footer .brand {
    color: var(--white);
}

.site-footer .brand-word {
    color: var(--white);
}

.site-footer .brand-word span {
    color: var(--lime);
}

.footer-top {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 0.7fr));
    gap: 2rem 1.5rem;
    padding-bottom: 1.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand p {
    margin-top: 0.85rem;
    max-width: 34ch;
    font-size: 0.92rem;
    line-height: 1.6;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.footer-col h3 {
    margin-bottom: 0.35rem;
    color: var(--white);
    font-size: 0.95rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-col a:hover {
    color: var(--lime);
    text-decoration: none;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.15rem;
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.58);
}

/* About page */
.page-hero {
    padding: 2.4rem 0 2.2rem;
    background:
        radial-gradient(circle at 88% 12%, rgba(98, 54, 255, 0.12), transparent 34%),
        radial-gradient(circle at 8% 88%, rgba(193, 255, 82, 0.14), transparent 30%),
        #ffffff;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.85rem;
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 500;
}

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

.page-hero h1 {
    font-size: clamp(2rem, 4vw, 2.7rem);
    line-height: 1.15;
    color: var(--purple-navy);
    margin-bottom: 0.7rem;
}

.page-hero h1 span {
    color: var(--purple);
}

.page-hero p {
    max-width: 54ch;
    color: var(--muted);
    font-size: 1.02rem;
}

.about-page .page-hero p {
    max-width: 72ch;
}

.about-story {
    padding: 1.2rem 0 3rem;
}

.about-mission,
.about-values,
.about-offer,
.about-block,
.why-choose,
.explore-tools,
.faq {
    padding: 0 0 3.2rem;
}

.about-block p {
    color: var(--muted);
    max-width: 72ch;
    margin-top: 1rem;
}

.about-block p + p {
    margin-top: 0.85rem;
}

.about-suggest {
    background: var(--purple-soft);
    border-radius: 24px;
    padding: 1.6rem 1.5rem 1.7rem;
}

.about-suggest h2 {
    color: var(--purple-navy);
    font-size: 1.45rem;
    margin-bottom: 0.7rem;
}

.about-suggest p {
    margin-top: 0;
    margin-bottom: 1rem;
}

.value-grid.about-diff {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.value-grid.about-diff li {
    flex: 1 1 260px;
    max-width: 340px;
}

.mission-grid,
.value-grid,
.offer-grid {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

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

.mission-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 1.4rem 1.25rem;
    box-shadow: var(--shadow);
}

.mission-icon,
.value-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--purple-soft);
    color: var(--purple);
    display: grid;
    place-items: center;
    margin-bottom: 0.9rem;
}

.mission-icon svg,
.value-icon svg {
    width: 20px;
    height: 20px;
}

.mission-card h3 {
    font-size: 1.05rem;
    color: var(--purple-navy);
    margin-bottom: 0.4rem;
}

.mission-card p,
.value-grid p {
    color: var(--muted);
    font-size: 0.9rem;
}

.value-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    list-style: none;
}

.value-grid li {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 1.3rem 1.15rem;
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.value-grid li:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(98, 54, 255, 0.12);
}

.value-grid strong {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--purple-navy);
}

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

.offer-grid .cat-card {
    min-width: 0;
}

.explore-intro,
.explore-note {
    color: var(--muted);
    max-width: 72ch;
    margin-top: 1rem;
}

.explore-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.4rem;
}

.explore-grid article {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 1.3rem 1.2rem;
    box-shadow: var(--shadow);
}

.explore-grid h3 {
    color: var(--purple-navy);
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.explore-grid p {
    color: var(--muted);
    font-size: 0.9rem;
}

.explore-note {
    margin-top: 1.3rem;
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
    list-style: none;
}

.choose-grid li {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 1.35rem 1.2rem;
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.choose-grid li:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(98, 54, 255, 0.12);
}

.choose-grid strong {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--purple-navy);
}

.choose-grid p {
    color: var(--muted);
    font-size: 0.9rem;
}

.faq-list {
    display: grid;
    gap: 0.75rem;
    max-width: 820px;
    margin: 1.5rem auto 0;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.05rem 1.2rem;
    cursor: pointer;
    list-style: none;
    font-weight: 600;
    color: var(--purple-navy);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary:hover {
    color: var(--purple);
}

.faq-toggle {
    position: relative;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--purple-soft);
}

.faq-toggle::before,
.faq-toggle::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--purple);
    border-radius: 2px;
    transform: translate(-50%, -50%);
}

.faq-toggle::before {
    width: 10px;
    height: 2px;
}

.faq-toggle::after {
    width: 2px;
    height: 10px;
}

.faq-item[open] {
    border-color: #d9cff8;
}

.faq-item[open] .faq-toggle::after {
    opacity: 0;
}

.faq-item p {
    padding: 0 1.2rem 1.1rem;
    color: var(--muted);
    font-size: 0.92rem;
}

/* Blog */
.blog-search {
    display: flex;
    align-items: center;
    max-width: 460px;
    margin-top: 1.2rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 0.28rem 0.28rem 0.28rem 1rem;
    box-shadow: var(--shadow);
}

.blog-search:focus-within {
    border-color: #d9cff8;
}

.blog-search input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: none;
    background: transparent;
    font-size: 0.92rem;
    color: var(--text);
}

.blog-search button {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: var(--purple);
    color: var(--white);
    display: grid;
    place-items: center;
    cursor: pointer;
}

.blog-search button svg {
    width: 18px;
    height: 18px;
}

.blog-listing,
.blog-related,
.article-body {
    padding: 0.4rem 0 3.2rem;
}

.blog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-bottom: 1.4rem;
}

.blog-filter {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--text);
    font-size: 0.86rem;
    font-weight: 600;
}

.blog-filter:hover,
.blog-filter.is-active {
    text-decoration: none;
    background: var(--purple);
    border-color: var(--purple);
    color: var(--white);
}

.blog-featured,
.blog-card {
    display: grid;
    color: var(--text);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-featured {
    grid-template-columns: 1.05fr 0.95fr;
    margin-bottom: 1.2rem;
}

.blog-featured:hover,
.blog-card:hover {
    text-decoration: none;
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(98, 54, 255, 0.12);
}

.blog-cover,
.article-cover {
    min-height: 210px;
    display: grid;
    place-items: center;
    color: var(--white);
}

.cover-pdf { background: linear-gradient(145deg, #6236ff, #2b1b62); }
.cover-image { background: linear-gradient(145deg, #7a4dff, #4c1d95); }
.cover-text { background: linear-gradient(145deg, #2b1b62, #6236ff); }
.cover-tips { background: linear-gradient(145deg, #4c1d95, #1c0b4a); }

.blog-cover-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.14);
    color: var(--lime);
    display: grid;
    place-items: center;
}

.blog-cover-icon svg {
    width: 34px;
    height: 34px;
}

.blog-featured-copy,
.blog-card-copy {
    padding: 1.35rem 1.3rem 1.4rem;
}

.blog-tag {
    display: inline-flex;
    margin-bottom: 0.7rem;
    padding: 0.22rem 0.65rem;
    border-radius: 999px;
    background: var(--purple-soft);
    color: var(--purple);
    font-size: 0.75rem;
    font-weight: 700;
}

.blog-featured-copy h2,
.blog-card-copy h3,
.article-hero h1 {
    color: var(--purple-navy);
    line-height: 1.25;
    margin-bottom: 0.55rem;
}

.blog-featured-copy h2 {
    font-size: clamp(1.35rem, 2.4vw, 1.8rem);
}

.blog-card-copy h3 {
    font-size: 1.05rem;
}

.blog-featured-copy p,
.blog-card-copy p,
.blog-empty p {
    color: var(--muted);
    font-size: 0.92rem;
    margin-bottom: 0.9rem;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 500;
}

.blog-more {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 1rem;
    color: var(--purple);
    font-size: 0.9rem;
    font-weight: 700;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.blog-card .blog-cover {
    min-height: 150px;
}

.blog-empty {
    text-align: center;
    padding: 3rem 1rem;
    border: 1px dashed var(--border);
    border-radius: 22px;
}

.blog-empty h2 {
    color: var(--purple-navy);
    margin-bottom: 0.4rem;
}

.article-hero {
    max-width: 760px;
}

.article-hero .blog-tag {
    margin-bottom: 0.85rem;
}

.article-hero h1 {
    font-size: clamp(1.8rem, 3.4vw, 2.5rem);
}

.article-layout {
    display: grid;
    gap: 1.4rem;
    max-width: 760px;
}

.article-cover {
    border-radius: 24px;
    min-height: 220px;
}

.article-copy p {
    color: var(--muted);
    margin-bottom: 1rem;
    font-size: 1.02rem;
}

.article-copy .btn {
    margin-top: 0.6rem;
}

@media (max-width: 1100px) {
    .nav-toggle {
        display: flex;
    }

    .header-menus {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        background: var(--white);
        border-bottom: 1px solid var(--border);
        padding: 0.75rem 4% 1.1rem;
        box-shadow: var(--shadow);
    }

    .header-menus.open {
        display: flex;
    }

    .main-nav > ul {
        flex-direction: column;
        align-items: stretch;
    }

    .drop-toggle {
        width: 100%;
        justify-content: space-between;
    }

    .main-nav .dropdown {
        position: static;
        display: none;
        box-shadow: none;
        border: 0;
        padding-left: 0.8rem;
    }

    .has-dropdown.open > .dropdown {
        display: block;
    }

    .header-actions {
        flex-wrap: wrap;
        padding-top: 0.6rem;
    }

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

    .about-grid {
        grid-template-columns: 1fr;
        gap: 1.4rem;
    }

    .mission-grid,
    .value-grid,
    .choose-grid,
    .explore-grid {
        grid-template-columns: 1fr 1fr;
    }

    .blog-featured {
        grid-template-columns: 1fr;
    }

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

    .how-steps li:not(:last-child)::after {
        width: 50%;
        left: 72%;
    }
}

@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        padding: 1.2rem 0 1.4rem;
        gap: 1rem;
    }

    .hero-visual {
        justify-content: center;
    }

    .hero-visual img {
        width: 100%;
        max-width: 560px;
        margin: 0 auto;
    }

    .hero-copy h1 span,
    .page-hero h1 span {
        color: var(--lime-text);
    }

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

    .how-steps {
        grid-template-columns: 1fr 1fr;
        gap: 1.3rem 0.6rem;
    }

    .how-steps li:not(:last-child)::after {
        display: none;
    }

    .cta-banner {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .cta-copy {
        flex: 1 1 220px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .why-card ul {
        grid-template-columns: 1fr;
    }

    .mission-grid,
    .value-grid,
    .offer-grid,
    .choose-grid,
    .explore-grid {
        grid-template-columns: 1fr;
    }

    .blog-search {
        max-width: 100%;
    }

    .blog-grid,
    .blog-featured {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .brand-word {
        font-size: 1.1rem;
    }

    .search-popover {
        position: static;
        width: 100%;
        box-shadow: none;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
}

/* Homepage premium polish */
.home-page {
    background:
        radial-gradient(circle at 0% 8%, rgba(98, 54, 255, 0.05), transparent 28%),
        radial-gradient(circle at 100% 40%, rgba(193, 255, 82, 0.08), transparent 24%),
        #fcfbff;
}

.home-page .hero {
    background:
        radial-gradient(circle at 92% 8%, rgba(98, 54, 255, 0.14), transparent 34%),
        radial-gradient(circle at 6% 86%, rgba(193, 255, 82, 0.16), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #faf8ff 100%);
}

.home-page .hero-inner {
    padding: 2.1rem 0 2.4rem;
    gap: 1.4rem 2.4rem;
}

.home-page .hero-copy .hero-kicker {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0.85rem;
    padding: 0.32rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(98, 54, 255, 0.12);
    color: var(--purple);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    max-width: none;
    box-shadow: 0 8px 20px rgba(98, 54, 255, 0.08);
    animation: fadeUp 0.6s ease both;
}

.home-page .hero-copy h1 {
    font-size: clamp(2rem, 4vw, 3.15rem);
    letter-spacing: -0.045em;
    font-weight: 800;
}

.home-page .hero-copy > p:not(.hero-kicker) {
    max-width: 48ch;
    font-size: 1.02rem;
    line-height: 1.7;
}

.home-page .hero-search {
    box-shadow: 0 14px 40px rgba(43, 27, 98, 0.1);
    border: 1px solid rgba(98, 54, 255, 0.08);
}

.home-page .hero-search button {
    box-shadow: 0 8px 16px rgba(98, 54, 255, 0.28);
}

.home-page .point-icon {
    box-shadow: 0 8px 16px rgba(98, 54, 255, 0.2);
}

.home-page .categories,
.home-page .why-choose,
.home-page .faq {
    background: transparent;
}

.home-page .about,
.home-page .info-split,
.home-page .explore-tools,
.home-page .cta {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.9));
}

.home-page .section-head h2,
.home-page .how-card h2,
.home-page .about-copy h2 {
    font-size: clamp(1.55rem, 2.4vw, 1.9rem);
    letter-spacing: -0.03em;
    font-weight: 800;
}

.home-page .section-head h2::after,
.home-page .how-card h2::after,
.home-page .about-copy h2::after {
    width: 44px;
    height: 3px;
    background: linear-gradient(90deg, var(--lime), #8fd400);
}

.home-page .cat-card,
.home-page .choose-grid li,
.home-page .explore-grid article,
.home-page .faq-item,
.home-page .how-card {
    border: 1px solid rgba(236, 232, 245, 0.9);
    background: linear-gradient(180deg, #ffffff 0%, #fcfbff 100%);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.8) inset,
        0 12px 30px rgba(43, 27, 98, 0.06);
}

.home-page .cat-card:hover,
.home-page .choose-grid li:hover,
.home-page .explore-grid article:hover,
.home-page .faq-item:hover {
    transform: translateY(-6px);
    border-color: rgba(98, 54, 255, 0.22);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        var(--shadow-hover);
}

.home-page .explore-grid article {
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.home-page .cat-icon,
.home-page .value-icon {
    background: linear-gradient(180deg, #f7f3ff, #efe8ff);
    box-shadow: 0 8px 16px rgba(98, 54, 255, 0.08);
}

.home-page .how-card {
    padding: 2rem 1.6rem 1.8rem;
    border-radius: 30px;
}

.home-page .step-icon {
    background: linear-gradient(180deg, #f7f3ff, #ece4ff);
    box-shadow: 0 10px 18px rgba(98, 54, 255, 0.1);
}

.home-page .about-stats li {
    background: linear-gradient(180deg, #ffffff, #f6f2ff);
    border: 1px solid rgba(98, 54, 255, 0.08);
    box-shadow: 0 10px 24px rgba(98, 54, 255, 0.07);
    border-radius: 20px;
    padding: 1.35rem 1rem;
}

.home-page .about-stats strong {
    font-size: 1.8rem;
    letter-spacing: -0.04em;
}

.home-page .cta-banner {
    position: relative;
    overflow: hidden;
    padding: 1.6rem 1.8rem;
    border-radius: 32px;
    background:
        radial-gradient(circle at 92% 18%, rgba(193, 255, 82, 0.18), transparent 28%),
        linear-gradient(105deg, #1c0b4a 0%, #2b1b62 42%, #6236ff 100%);
    box-shadow: 0 22px 48px rgba(43, 27, 98, 0.28);
}

.home-page .cta-rocket {
    box-shadow: 0 10px 24px rgba(193, 255, 82, 0.35);
}

.home-page .faq-item[open] {
    border-color: rgba(98, 54, 255, 0.22);
    box-shadow: 0 16px 36px rgba(98, 54, 255, 0.12);
}

.home-page .faq-item summary {
    font-size: 0.98rem;
}

.home-page .site-footer {
    box-shadow: 0 -18px 40px rgba(28, 11, 74, 0.08);
}

.home-page .section-kicker {
    display: inline-block;
    margin-bottom: 0.5rem;
    color: var(--purple);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.home-page .hero-frame {
    position: relative;
    z-index: 1;
    padding: 0.7rem;
    border-radius: 32px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.45));
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow:
        0 24px 60px rgba(43, 27, 98, 0.14),
        0 0 0 1px rgba(98, 54, 255, 0.06);
    backdrop-filter: blur(10px);
}

.home-page .hero-frame img {
    width: 100%;
    max-width: none;
    max-height: 420px;
    border-radius: 22px;
}

.home-page .hero-points {
    width: min(100%, 520px);
    gap: 0.7rem;
}

.home-page .hero-points li {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(98, 54, 255, 0.08);
    border-radius: 16px;
    padding: 0.55rem 0.7rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 18px rgba(43, 27, 98, 0.05);
}

.home-page .choose-grid {
    counter-reset: choose;
}

.home-page .choose-grid li {
    position: relative;
    padding-top: 1.55rem;
    overflow: hidden;
}

.home-page .choose-grid li::before {
    counter-increment: choose;
    content: counter(choose, decimal-leading-zero);
    position: absolute;
    top: 0.85rem;
    right: 1rem;
    color: rgba(98, 54, 255, 0.18);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.home-page .explore-grid article {
    position: relative;
    overflow: hidden;
    padding-top: 1.5rem;
}

.home-page .explore-grid article::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--purple), var(--lime));
}

.home-page .how-card .section-kicker {
    display: block;
}

.home-page .how-steps li {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(236, 232, 245, 0.95);
    border-radius: 20px;
    padding: 1rem 0.55rem 0.95rem;
    box-shadow: 0 10px 22px rgba(43, 27, 98, 0.05);
}

.home-page .how-steps li:not(:last-child)::after {
    top: 38px;
    opacity: 0.7;
}

.home-page .cta-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.1) 46%, transparent 68%);
    pointer-events: none;
}

.home-page .btn-lime {
    box-shadow: 0 10px 22px rgba(193, 255, 82, 0.28);
}

.home-page .faq-list {
    max-width: 860px;
}

.home-page .faq-item summary {
    padding: 1.15rem 1.3rem;
}

.home-page .faq-toggle {
    width: 26px;
    height: 26px;
    background: linear-gradient(180deg, #f7f3ff, #ece4ff);
}

.home-page .categories,
.home-page .why-choose,
.home-page .about,
.home-page .explore-tools,
.home-page .info-split,
.home-page .faq {
    padding-top: 3.4rem;
    padding-bottom: 3.4rem;
}

.reveal.is-visible {
    animation: fadeUp 0.7s ease forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(0.92);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes imgBounce {
    0% { transform: translateY(0) scale(1); }
    35% { transform: translateY(-14px) scale(1.04); }
    70% { transform: translateY(-4px) scale(1.015); }
    100% { transform: translateY(0) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
