/* ============================================================
   EviEdu Marketing Landing — design tokens + page styles
   Loaded only on Pages/Index.cshtml
   ============================================================ */

:root {
    /* Colors */
    --evi-primary: #6b61e8;
    --evi-primary-shade: #5e55cc;
    --evi-primary-tint: #7a71ea;
    --evi-primary-dark: #353e6c;
    --evi-secondary: #ffb02d;
    --evi-secondary-shade: #e09b28;
    --evi-secondary-alt: #ffa001;
    --evi-success: #21c0a6;
    --evi-success-shade: #1da992;
    --evi-danger: #f57885;
    --evi-warning: #ffc409;
    --evi-scaffold: #f2f2ff;
    --evi-background: #f8f8ff;
    --evi-surface: #ffffff;
    --evi-light: #f6f8fc;
    --evi-border: #e8e8e8;
    --evi-subtext: #8088b2;
    --evi-ink: #2f2f2f;

    /* Typography */
    --font-display: "Fredoka", "SVN-Poppins", "Be Vietnam Pro", sans-serif;
    --font-ui: "SVN-Poppins", "Be Vietnam Pro", sans-serif;

    /* Radii */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-pill: 999px;

    /* Shadows — system 1: soft violet card glow */
    --shadow-card: 0 0 24px 0 #d4d8ed80;
    --shadow-card-hover: 0 0 24px 0 #b0baee80;
    --shadow-soft: 0 4px 12px 0 #d4d8ed99;
    --shadow-row: 0 2px 10px 0 #c9d4f280;

    /* Shadows — system 2: chunky pressable button block */
    --btn-shadow-primary: 0 4px 0 0 #5e55cc;
    --btn-shadow-secondary: 0 4px 0 0 #e09b28;
    --btn-shadow-success: 0 4px 0 0 #138472;
    --btn-shadow-danger: 0 4px 0 0 #d86a75;
    --btn-shadow-light: 0 4px 0 0 #dde2f0;

    --evi-ease: cubic-bezier(.22, 1, .36, 1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 84px;
}

/* Hide the shared layout footer on this page only — the landing ships its own */
body > footer {
    display: none;
}

.lp {
    overflow-x: hidden;
    width: 100%;
    background: var(--evi-background);
    color: var(--evi-ink);
    font-family: var(--font-ui);
}

.lp img {
    max-width: 100%;
}

/* ---------- Animations ---------- */
@keyframes eviFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

@keyframes eviFloatSlow {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(3deg); }
}

@keyframes eviBob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes eviSparkle {
    0%, 100% { transform: scale(1); opacity: .85; }
    50% { transform: scale(1.35); opacity: 1; }
}

@keyframes eviConfetti {
    0% { transform: translateY(-30px) rotate(0); opacity: 0; }
    15% { opacity: 1; }
    100% { transform: translateY(120px) rotate(220deg); opacity: 0; }
}

@keyframes eviWave {
    0%, 100% { height: 20%; }
    50% { height: 100%; }
}

@media (prefers-reduced-motion: reduce) {
    .lp *, .lp *::before, .lp *::after {
        animation: none !important;
        transition: none !important;
    }
}

/* ---------- Buttons (pressable 3D block) ---------- */
.evi-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-display);
    font-weight: 700;
    border: none;
    border-radius: var(--radius-pill);
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    line-height: 1.2;
    min-height: 48px;
    padding: 0 24px;
    font-size: 16px;
    transition: transform .2s var(--evi-ease), box-shadow .2s var(--evi-ease), filter .2s var(--evi-ease);
}

.evi-btn:hover {
    filter: brightness(1.04);
}

.evi-btn:active {
    transform: translateY(4px);
    box-shadow: none !important;
}

.evi-btn--secondary {
    background: var(--evi-secondary);
    color: #fff;
    box-shadow: var(--btn-shadow-secondary);
}

.evi-btn--primary {
    background: var(--evi-primary);
    color: #fff;
    box-shadow: var(--btn-shadow-primary);
}

.evi-btn--light {
    background: var(--evi-light);
    color: var(--evi-primary-dark);
    box-shadow: var(--btn-shadow-light);
}

.evi-btn--nav {
    min-height: 44px;
    font-size: 15px;
    padding: 0 20px;
}

.evi-btn--hero {
    min-height: 58px;
    font-size: 20px;
    padding: 0 32px;
}

.evi-btn--md {
    min-height: 54px;
    font-size: 18px;
    padding: 0 28px;
}

.evi-btn--expand {
    width: 100%;
    min-height: 48px;
}

/* ---------- Shared section scaffolding ---------- */
.lp-section {
    padding: clamp(56px, 7vw, 100px) clamp(16px, 4vw, 32px);
}

.lp-section--scaffold {
    background: var(--evi-scaffold);
}

.lp-container {
    max-width: 1180px;
    margin: 0 auto;
}

.lp-container--md {
    max-width: 1120px;
    margin: 0 auto;
}

.lp-container--sm {
    max-width: 1000px;
    margin: 0 auto;
}

.lp-container--xs {
    max-width: 760px;
    margin: 0 auto;
}

.lp-section-head {
    text-align: center;
    margin-bottom: clamp(32px, 4vw, 52px);
}

.lp-eyebrow {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--evi-secondary);
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.lp-h2 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(28px, 4.4vw, 46px);
    color: var(--evi-primary-dark);
    margin: 0;
    line-height: 1.1;
    letter-spacing: -.5px;
    text-wrap: balance;
}

.lp-h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(24px, 3vw, 34px);
    color: var(--evi-primary-dark);
    margin: 0 0 14px;
    line-height: 1.15;
}

/* ---------- Nav ---------- */
.lp-nav {
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(255, 255, 255, .82);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--evi-border);
}

.lp-nav__inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 12px clamp(16px, 4vw, 32px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.lp-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.lp-logo img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.lp-logo__word {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 24px;
    color: var(--evi-primary);
    letter-spacing: -.5px;
}

.lp-logo__word span {
    color: var(--evi-secondary);
}

.lp-nav__links {
    display: flex;
    align-items: center;
    gap: clamp(14px, 2.2vw, 30px);
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 15px;
}

.lp-nav__links a {
    color: var(--evi-primary-dark);
    text-decoration: none;
}

.lp-nav__links a:hover {
    color: var(--evi-primary);
}

.lp-nav__login {
    display: none;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--evi-primary);
    text-decoration: none;
    font-size: 15px;
}

@media (max-width: 860px) {
    .lp-nav__links,
    .lp-nav__cta {
        display: none;
    }

    .lp-nav__login {
        display: block;
    }
}

/* ---------- Hero ---------- */
.lp-hero {
    position: relative;
    padding: clamp(40px, 6vw, 80px) clamp(16px, 4vw, 32px) clamp(56px, 7vw, 96px);
}

.lp-hero__bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.lp-hero__blob--violet {
    position: absolute;
    top: -140px;
    right: -120px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 40%, #efeaff, #f8f8ff 70%);
}

.lp-hero__blob--amber {
    position: absolute;
    top: 120px;
    left: -90px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 50%, #fff0d6, transparent 70%);
}

.lp-hero__cloud1 {
    position: absolute;
    top: 70px;
    left: 6%;
    width: 120px;
    opacity: .9;
    animation: eviFloatSlow 9s ease-in-out infinite;
}

.lp-hero__cloud2 {
    position: absolute;
    top: 180px;
    right: 10%;
    width: 150px;
    opacity: .85;
    animation: eviFloatSlow 11s ease-in-out infinite;
}

.lp-hero__grid {
    position: relative;
    z-index: 1;
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: clamp(28px, 4vw, 56px);
}

.lp-hero__copy {
    flex: 1 1 420px;
    min-width: min(100%, 340px);
}

.lp-hero__pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid #ece9ff;
    box-shadow: var(--shadow-soft);
    border-radius: var(--radius-pill);
    padding: 7px 16px;
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 14px;
    color: var(--evi-primary);
    margin-bottom: 20px;
}

.lp-hero__pill .emoji {
    font-size: 16px;
}

.lp-hero__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(36px, 6.2vw, 62px);
    line-height: 1.05;
    color: var(--evi-primary-dark);
    margin: 0 0 20px;
    letter-spacing: -1px;
    text-wrap: balance;
}

.lp-hero__title span {
    color: var(--evi-primary);
}

.lp-hero__sub {
    font-family: var(--font-ui);
    font-size: clamp(16px, 1.7vw, 19px);
    line-height: 1.6;
    color: var(--evi-subtext);
    margin: 0 0 30px;
    max-width: 560px;
}

.lp-hero__sub strong {
    color: var(--evi-primary-dark);
}

.lp-hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 20px;
}

.lp-hero__trust {
    font-family: var(--font-ui);
    font-size: 14px;
    color: var(--evi-subtext);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.lp-hero__trust .check {
    color: var(--evi-success);
    font-weight: 700;
}

.lp-hero__trust strong {
    color: var(--evi-primary);
}

.lp-hero__visual {
    flex: 1 1 360px;
    min-width: min(100%, 320px);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

.lp-hero__glow {
    position: absolute;
    width: min(78%, 340px);
    aspect-ratio: 1;
    border-radius: 46% 54% 60% 40% / 55% 48% 52% 45%;
    background: linear-gradient(135deg, #a78bfa, #6b61e8);
    opacity: .16;
    z-index: 0;
}

.lp-hero__dino--left {
    position: absolute;
    left: -4%;
    bottom: 6%;
    width: clamp(90px, 15vw, 140px);
    z-index: 3;
    filter: drop-shadow(0 14px 22px rgba(37, 99, 235, .4));
    animation: eviFloat 5s ease-in-out infinite;
}

.lp-hero__dino--right {
    position: absolute;
    right: -6%;
    top: 2%;
    width: clamp(80px, 13vw, 120px);
    z-index: 3;
    filter: drop-shadow(0 14px 22px rgba(124, 58, 237, .4));
    animation: eviFloatSlow 7s ease-in-out infinite;
}

.lp-hero__spark1 {
    position: absolute;
    top: 8%;
    left: 18%;
    font-size: 26px;
    z-index: 4;
    animation: eviSparkle 2.6s ease-in-out infinite;
}

.lp-hero__spark2 {
    position: absolute;
    bottom: 16%;
    right: 8%;
    font-size: 22px;
    z-index: 4;
    animation: eviSparkle 3.2s ease-in-out infinite .4s;
}

/* Phone mockup */
.lp-phone {
    position: relative;
    z-index: 2;
    width: min(74%, 300px);
    background: #1c1740;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 30px 60px -20px rgba(53, 62, 108, .5), 0 0 0 2px #efeaff;
}

.lp-phone__screen {
    background: var(--evi-background);
    border-radius: 30px;
    overflow: hidden;
}

.lp-phone__header {
    background: linear-gradient(135deg, #7a71ea, #6b61e8);
    padding: 18px 18px 22px;
    color: #fff;
}

.lp-phone__status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11px;
    opacity: .85;
    margin-bottom: 12px;
}

.lp-phone__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
}

.lp-phone__unit {
    font-size: 12px;
    opacity: .9;
    margin-top: 2px;
}

.lp-phone__body {
    padding: 16px;
}

.lp-phone-card {
    background: #fff;
    border-radius: 14px;
    padding: 14px;
    box-shadow: var(--shadow-card);
    margin-bottom: 14px;
}

.lp-phone-card__label {
    font-size: 11px;
    color: var(--evi-subtext);
    font-weight: 600;
    margin-bottom: 6px;
}

.lp-phone-card__sentence {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--evi-primary-dark);
    font-size: 16px;
    line-height: 1.35;
}

.lp-wave {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 26px;
    margin-top: 12px;
}

.lp-wave span {
    flex: 1;
    background: var(--evi-secondary);
    border-radius: 3px;
    animation: eviWave 1s ease-in-out infinite;
}

.lp-wave span:nth-child(2) { animation-delay: .1s; }
.lp-wave span:nth-child(3) { background: var(--evi-primary); animation-delay: .2s; }
.lp-wave span:nth-child(4) { animation-delay: .3s; }
.lp-wave span:nth-child(5) { background: var(--evi-primary); animation-delay: .15s; }
.lp-wave span:nth-child(6) { animation-delay: .25s; }
.lp-wave span:nth-child(7) { background: var(--evi-primary); animation-delay: .05s; }

.lp-phone-score {
    background: #fff;
    border-radius: 14px;
    padding: 16px;
    box-shadow: var(--shadow-card);
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 0;
}

.lp-gauge--sm {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    flex: 0 0 auto;
    background: conic-gradient(var(--evi-success) 0 92%, #eceaf7 92% 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-gauge--sm .lp-gauge__inner {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lp-gauge--sm .lp-gauge__score {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 22px;
    color: var(--evi-success);
    line-height: 1;
}

.lp-gauge--sm .lp-gauge__label {
    font-size: 9px;
    color: var(--evi-subtext);
}

.lp-phone-score__right {
    flex: 1;
}

.lp-chip-great {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #e4f8f3;
    color: var(--evi-success-shade);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    padding: 5px 12px;
    border-radius: var(--radius-pill);
}

.lp-phone-score__bars {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.lp-bar {
    height: 6px;
    background: #eceaf7;
    border-radius: 3px;
    overflow: hidden;
}

.lp-bar > span {
    display: block;
    height: 100%;
    border-radius: 3px;
    background: var(--evi-primary);
}

.lp-bar > .amber {
    background: var(--evi-secondary);
}

/* ---------- Slogan band ---------- */
.lp-slogan {
    background: linear-gradient(135deg, #6b61e8, #7c3aed);
    padding: clamp(24px, 3.5vw, 36px) clamp(16px, 4vw, 32px);
}

.lp-slogan__text {
    max-width: 1180px;
    margin: 0 auto;
    text-align: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(20px, 2.6vw, 28px);
    color: #fff;
    line-height: 1.2;
}

/* ---------- Skill cards ---------- */
.lp-skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: clamp(16px, 2vw, 24px);
}

.skill-card {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    padding: 26px 22px;
    transition: box-shadow .2s var(--evi-ease), transform .2s var(--evi-ease);
}

.skill-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
}

.skill-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 18px;
}

.skill-card__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 22px;
    margin: 0 0 8px;
}

.skill-card__text {
    font-family: var(--font-ui);
    font-size: 15px;
    line-height: 1.55;
    color: var(--evi-subtext);
    margin: 0;
}

.skill-card--blue .skill-card__icon {
    background: linear-gradient(135deg, #60a5fa, #2563eb);
    box-shadow: 0 8px 18px -6px rgba(37, 99, 235, .5);
}

.skill-card--blue .skill-card__title { color: #2563eb; }

.skill-card--purple .skill-card__icon {
    background: linear-gradient(135deg, #a78bfa, #7c3aed);
    box-shadow: 0 8px 18px -6px rgba(124, 58, 237, .5);
}

.skill-card--purple .skill-card__title { color: #7c3aed; }

.skill-card--green .skill-card__icon {
    background: linear-gradient(135deg, #34d399, #059669);
    box-shadow: 0 8px 18px -6px rgba(5, 150, 105, .5);
}

.skill-card--green .skill-card__title { color: #059669; }

.skill-card--orange .skill-card__icon {
    background: linear-gradient(135deg, #fb923c, #ea580c);
    box-shadow: 0 8px 18px -6px rgba(234, 88, 12, .5);
}

.skill-card--orange .skill-card__title { color: #ea580c; }

/* ---------- Feature showcase ---------- */
.feature-card {
    background: #fff;
    border-radius: 28px;
    box-shadow: var(--shadow-card);
    overflow: hidden;
    margin-bottom: clamp(24px, 3vw, 36px);
    display: flex;
    flex-wrap: wrap;
}

.feature-card:last-child {
    margin-bottom: 0;
}

.feature-card--reverse {
    flex-direction: row-reverse;
}

.feature-card__copy {
    flex: 1 1 360px;
    min-width: min(100%, 320px);
    padding: clamp(28px, 4vw, 52px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-card__badge {
    display: inline-flex;
    align-self: flex-start;
    align-items: center;
    gap: 6px;
    background: #f0edff;
    color: var(--evi-primary);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 13px;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    margin-bottom: 16px;
}

.feature-card__text {
    font-family: var(--font-ui);
    font-size: 16px;
    line-height: 1.65;
    color: var(--evi-subtext);
    margin: 0 0 20px;
}

.feature-card__text:last-child {
    margin-bottom: 0;
}

.feature-card__text .c-success { color: var(--evi-success); }
.feature-card__text .c-primary { color: var(--evi-primary); }
.feature-card__text .c-amber { color: var(--evi-secondary-alt); }

.feature-card__visual {
    flex: 1 1 340px;
    min-width: min(100%, 300px);
    padding: clamp(28px, 4vw, 48px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.feature-card__visual--violet { background: linear-gradient(160deg, #efeaff, #dcd4ff); }
.feature-card__visual--pink { background: linear-gradient(160deg, #ffe0e3, #ffc7cd); }
.feature-card__visual--blue { background: linear-gradient(160deg, #e5efff, #c7dbff); }

.feature-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.chip {
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 13px;
    padding: 7px 14px;
    border-radius: var(--radius-pill);
    background: var(--evi-light);
    color: var(--evi-primary-dark);
}

.chip--blue { background: #eef6ff; color: #2563eb; }
.chip--purple { background: #f3f0ff; color: #7c3aed; }
.chip--teal { background: #e4f8f3; color: var(--evi-success-shade); }
.chip--amber { background: #fff2db; color: var(--evi-secondary-shade); }

/* Speaking result card */
.speak-dino {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 76px;
    filter: drop-shadow(0 10px 16px rgba(124, 58, 237, .4));
    animation: eviFloat 5s ease-in-out infinite;
}

.speak-card {
    width: min(100%, 300px);
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 20px 40px -16px rgba(53, 62, 108, .4);
    padding: 22px;
}

.speak-card__title {
    text-align: center;
    margin-bottom: 16px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    color: var(--evi-primary-dark);
}

.speak-card__gauge-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
}

.lp-gauge--lg {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: conic-gradient(var(--evi-success) 0 92%, #eceaf7 92% 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-gauge--lg .lp-gauge__inner {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lp-gauge--lg .lp-gauge__score {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 38px;
    color: var(--evi-success);
    line-height: 1;
}

.lp-gauge--lg .lp-gauge__label {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 12px;
    color: var(--evi-success);
}

.speak-card__meters {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.meter__head {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-ui);
    font-size: 12px;
    color: var(--evi-subtext);
    margin-bottom: 4px;
}

.meter__head strong {
    font-weight: 700;
    color: var(--evi-primary-dark);
}

.meter__track {
    height: 8px;
    background: #eceaf7;
    border-radius: 4px;
    overflow: hidden;
}

.meter__fill {
    display: block;
    height: 100%;
    border-radius: 4px;
}

.meter__fill--blue { background: linear-gradient(90deg, #60a5fa, #2563eb); }
.meter__fill--purple { background: linear-gradient(90deg, #a78bfa, #7c3aed); }
.meter__fill--amber { background: linear-gradient(90deg, #fbbf24, #f59e0b); }

.speak-card__mic-wrap {
    margin-top: 18px;
    display: flex;
    justify-content: center;
}

.mic-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f57885, #dc2626);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 0 0 #b91c1c;
}

.mic-btn ion-icon {
    color: #fff;
    font-size: 26px;
}

/* Reading + Vocab two-up */
.lp-two-up {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(24px, 3vw, 36px);
    margin-bottom: clamp(24px, 3vw, 36px);
}

.mini-feature {
    background: #fff;
    border-radius: 28px;
    box-shadow: var(--shadow-card);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.mini-feature__visual {
    padding: 28px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

.mini-feature__visual--teal { background: linear-gradient(160deg, #d5f5ec, #a7ead9); }

.mini-feature__visual--amber {
    background: linear-gradient(160deg, #fff0d6, #ffe0a3);
    overflow: hidden;
}

.mini-feature__body {
    padding: 26px;
}

.mini-feature__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 24px;
    margin: 0 0 10px;
}

.mini-feature__title--teal { color: #0d9488; }
.mini-feature__title--orange { color: #ea580c; }

.mini-feature__text {
    font-family: var(--font-ui);
    font-size: 15px;
    line-height: 1.6;
    color: var(--evi-subtext);
    margin: 0;
}

.story-dino {
    position: absolute;
    bottom: -6px;
    left: 14px;
    width: 84px;
    filter: drop-shadow(0 10px 16px rgba(13, 148, 136, .4));
}

.story-card {
    width: min(100%, 220px);
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    padding: 16px;
    margin-left: 40px;
}

.story-card__text {
    font-family: var(--font-ui);
    font-size: 13px;
    line-height: 1.7;
    color: var(--evi-ink);
}

.story-card__word {
    background: #ffe8a3;
    border-radius: 4px;
    padding: 1px 4px;
    color: #b45309;
    font-weight: 600;
}

.story-card__popover {
    margin-top: 12px;
    background: #f3f0ff;
    border-radius: 10px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.story-card__popover ion-icon {
    color: var(--evi-primary);
    font-size: 16px;
}

.story-card__popover span {
    font-family: var(--font-ui);
    font-size: 12px;
    color: var(--evi-primary);
}

.vocab-spark1 { position: absolute; top: 14px; left: 20px; font-size: 20px; animation: eviSparkle 2.4s ease-in-out infinite; }
.vocab-spark2 { position: absolute; top: 26px; right: 30px; font-size: 16px; animation: eviSparkle 3s ease-in-out infinite .5s; }
.vocab-spark3 { position: absolute; bottom: 16px; right: 18px; font-size: 18px; animation: eviSparkle 2.7s ease-in-out infinite .3s; }

.vocab-card {
    width: min(100%, 180px);
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    padding: 18px;
    text-align: center;
}

.vocab-card__img {
    width: 64px;
    height: 64px;
    margin: 0 auto 10px;
    border-radius: 16px;
    background: linear-gradient(135deg, #fb7185, #e11d48);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.vocab-card__word {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 22px;
    color: var(--evi-primary-dark);
}

.vocab-card__phonetic {
    font-family: var(--font-ui);
    font-size: 13px;
    color: var(--evi-subtext);
    margin-bottom: 8px;
}

.vocab-card__listen {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--evi-primary);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 13px;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
}

/* Exam visual */
.exam-dino {
    position: absolute;
    bottom: 10px;
    left: 14px;
    width: 92px;
    filter: drop-shadow(0 10px 16px rgba(225, 29, 72, .35));
}

.exam-card {
    width: min(100%, 280px);
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 18px 36px -14px rgba(53, 62, 108, .4);
    padding: 22px;
}

.exam-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.exam-card__name {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--evi-primary-dark);
    font-size: 15px;
}

.exam-card__timer {
    font-family: var(--font-ui);
    font-size: 12px;
    color: var(--evi-danger);
    background: #ffe4e7;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    font-weight: 600;
}

.exam-card__question {
    background: var(--evi-background);
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 10px;
}

.exam-card__prompt {
    font-family: var(--font-ui);
    font-size: 13px;
    color: var(--evi-ink);
    margin-bottom: 10px;
}

.exam-card__options {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.exam-option {
    background: #fff;
    border: 1.5px solid var(--evi-border);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 13px;
    color: var(--evi-subtext);
}

.exam-option--correct {
    background: #e4f8f3;
    border-color: var(--evi-success);
    color: var(--evi-success-shade);
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.exam-card__score {
    text-align: center;
    background: linear-gradient(135deg, #6b61e8, #7c3aed);
    border-radius: 12px;
    padding: 12px;
    color: #fff;
}

.exam-card__score-label {
    font-family: var(--font-ui);
    font-size: 12px;
    opacity: .85;
}

.exam-card__score-value {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 30px;
    line-height: 1.1;
}

/* Progress visual */
.progress-dino {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 82px;
    filter: drop-shadow(0 10px 16px rgba(37, 99, 235, .35));
    animation: eviFloat 5.5s ease-in-out infinite;
}

.progress-card {
    width: min(100%, 290px);
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 18px 36px -14px rgba(53, 62, 108, .4);
    padding: 22px;
}

.progress-card__title {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--evi-primary-dark);
    font-size: 16px;
    margin-bottom: 16px;
}

.progress-card__list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.unit-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.unit-row--locked {
    opacity: .6;
}

.unit-row__ring {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.unit-row__ring--done { background: conic-gradient(var(--evi-success) 0 100%, #eceaf7 0); }
.unit-row__ring--part { background: conic-gradient(var(--evi-primary) 0 65%, #eceaf7 65% 100%); }
.unit-row__ring--locked { background: #eceaf7; }

.unit-row__ring-inner {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 11px;
    color: var(--evi-primary);
}

.unit-row__ring--done ion-icon { color: var(--evi-success); font-size: 18px; }
.unit-row__ring--locked ion-icon { color: var(--evi-subtext); font-size: 16px; }

.unit-row__info { flex: 1; }

.unit-row__name {
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 14px;
    color: var(--evi-primary-dark);
}

.unit-row--locked .unit-row__name { color: var(--evi-subtext); }

.unit-row__status {
    font-family: var(--font-ui);
    font-size: 12px;
    color: var(--evi-subtext);
}

.unit-row__status--done { color: var(--evi-success); }

.unit-row__bar {
    height: 6px;
    background: #eceaf7;
    border-radius: 3px;
    margin-top: 5px;
    overflow: hidden;
}

.unit-row__bar > span {
    display: block;
    width: 65%;
    height: 100%;
    background: var(--evi-primary);
    border-radius: 3px;
}

/* ---------- Gamification ---------- */
.lp-game {
    position: relative;
    padding: clamp(56px, 7vw, 100px) clamp(16px, 4vw, 32px);
    overflow: hidden;
    background: linear-gradient(160deg, #6b61e8, #4338ca);
}

.confetti {
    position: absolute;
}

.confetti--1 { top: 8%; left: 8%; width: 12px; height: 12px; background: #ffd98a; border-radius: 2px; animation: eviConfetti 3s linear infinite; }
.confetti--2 { top: 0; left: 24%; width: 10px; height: 10px; background: #f57885; border-radius: 50%; animation: eviConfetti 3.4s linear infinite .5s; }
.confetti--3 { top: 5%; left: 70%; width: 12px; height: 12px; background: #34d399; border-radius: 2px; animation: eviConfetti 2.8s linear infinite .2s; }
.confetti--4 { top: 0; left: 88%; width: 10px; height: 10px; background: #ffb02d; border-radius: 50%; animation: eviConfetti 3.2s linear infinite .8s; }

.lp-game__grid {
    position: relative;
    z-index: 1;
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: clamp(28px, 4vw, 56px);
}

.lp-game__copy {
    flex: 1 1 320px;
    min-width: min(100%, 300px);
    color: #fff;
}

.lp-game__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(28px, 4.2vw, 44px);
    margin: 0 0 16px;
    line-height: 1.12;
    letter-spacing: -.5px;
    color: #fff;
}

.lp-game__text {
    font-family: var(--font-ui);
    font-size: 17px;
    line-height: 1.65;
    color: #e6e2ff;
    margin: 0 0 24px;
    max-width: 520px;
}

.lp-game__stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.lp-game__stat-value {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 32px;
    color: #ffd98a;
}

.lp-game__stat-label {
    font-family: var(--font-ui);
    font-size: 13px;
    color: #e6e2ff;
}

.lb-card {
    flex: 1 1 440px;
    min-width: min(100%, 300px);
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 24px 48px -18px rgba(0, 0, 0, .4);
    padding: clamp(18px, 2.5vw, 26px);
}

.lb-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.lb-card__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 20px;
    color: var(--evi-primary-dark);
}

.lb-card__period {
    font-family: var(--font-ui);
    font-size: 12px;
    color: var(--evi-subtext);
    background: var(--evi-light);
    padding: 5px 12px;
    border-radius: var(--radius-pill);
}

.lb-card__rows {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 14px;
}

/* Leaderboard row */
.lb-row {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-row);
    padding: 10px 14px;
    min-height: 64px;
}

.lb-row__rank {
    width: 32px;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lb-row__rank img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.lb-row__rank-num {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    color: var(--evi-subtext);
}

.lb-row__avatar {
    position: relative;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    color: #fff;
}

.lb-row__crown {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
}

.lb-row--1 .lb-row__avatar { background: linear-gradient(135deg, #fbbf24, #f59e0b); }
.lb-row--2 .lb-row__avatar { background: linear-gradient(135deg, #60a5fa, #2563eb); }
.lb-row--3 .lb-row__avatar { background: linear-gradient(135deg, #34d399, #059669); }
.lb-row--other .lb-row__avatar { background: linear-gradient(135deg, #a78bfa, #7c3aed); }

.lb-row__info {
    flex: 1;
    min-width: 0;
}

.lb-row__name {
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 15px;
    color: var(--evi-primary-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lb-row__tasks {
    font-family: var(--font-ui);
    font-size: 12px;
    color: var(--evi-subtext);
}

.lb-row__points {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    color: var(--evi-secondary-alt);
    white-space: nowrap;
}

.lb-row--other .lb-row__points {
    color: var(--evi-danger);
}

.lb-row__points small {
    font-family: var(--font-ui);
    font-weight: 400;
    font-size: 11px;
    color: var(--evi-subtext);
}

/* ---------- Parent reassurance ---------- */
.parent-card {
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    border-radius: 28px;
    box-shadow: var(--shadow-card);
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.parent-card__visual {
    flex: 1 1 260px;
    min-width: min(100%, 260px);
    background: linear-gradient(160deg, #fff0d6, #ffe0a3);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 24px;
    position: relative;
    min-height: 220px;
}

.parent-card__visual img {
    width: min(70%, 180px);
    filter: drop-shadow(0 14px 22px rgba(5, 150, 105, .4));
}

.parent-card__chip {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #fff;
    border-radius: 14px;
    box-shadow: var(--shadow-soft);
    padding: 10px 14px;
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 600;
    color: var(--evi-primary-dark);
}

.parent-card__copy {
    flex: 2 1 420px;
    min-width: min(100%, 320px);
    padding: clamp(28px, 4vw, 48px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.parent-card__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(24px, 3.4vw, 36px);
    color: var(--evi-primary-dark);
    margin: 0 0 16px;
    line-height: 1.15;
}

.parent-card__text {
    font-family: var(--font-ui);
    font-size: 16px;
    line-height: 1.65;
    color: var(--evi-subtext);
    margin: 0 0 24px;
}

.parent-card__checks {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.check-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.check-row__icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #e4f8f3;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.check-row__icon ion-icon {
    color: var(--evi-success);
    font-size: 18px;
}

.check-row__label {
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 15px;
    color: var(--evi-primary-dark);
}

/* ---------- Pricing ---------- */
.lp-pricing-intro {
    font-family: var(--font-ui);
    font-size: 16px;
    line-height: 1.6;
    color: var(--evi-subtext);
    margin: 14px auto 0;
    max-width: 560px;
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(40px, 2.5vw, 28px);
    align-items: stretch;
}

.price-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: var(--shadow-card);
    padding: 30px 26px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.price-card--popular {
    border: 2px solid #ffe0a3;
}

.price-card--highlight {
    background: linear-gradient(160deg, #6b61e8, #4338ca);
    box-shadow: 0 24px 48px -18px rgba(67, 56, 202, .55);
    padding: 32px 28px;
    transform: scale(1.02);
}

.price-card__badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--evi-secondary);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 12px;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    box-shadow: 0 3px 0 0 var(--evi-secondary-shade);
    white-space: nowrap;
}

.price-card__name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 22px;
    color: var(--evi-primary-dark);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.price-card--popular .price-card__name,
.price-card--highlight .price-card__name {
    margin-top: 6px;
}

.price-card--highlight .price-card__name {
    color: #fff;
}

.price-card__save {
    background: #e4f8f3;
    color: var(--evi-success-shade);
    font-size: 12px;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
}

.price-card__desc {
    font-family: var(--font-ui);
    font-size: 14px;
    color: var(--evi-subtext);
    margin: 8px 0 18px;
    min-height: 42px;
}

.price-card--highlight .price-card__desc {
    color: #d9d4ff;
}

.price-card__price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 22px;
}

.price-card__amount {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 38px;
    color: var(--evi-primary);
}

.price-card--highlight .price-card__amount {
    font-size: 40px;
    color: #ffd98a;
}

.price-card__period {
    font-family: var(--font-ui);
    font-size: 14px;
    color: var(--evi-subtext);
}

.price-card--highlight .price-card__period {
    color: #d9d4ff;
}

.price-card__features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 26px;
}

.price-feat {
    display: flex;
    gap: 10px;
    font-family: var(--font-ui);
    font-size: 14px;
    color: var(--evi-ink);
    line-height: 1.45;
}

.price-feat ion-icon {
    color: var(--evi-success);
    font-size: 20px;
    flex: 0 0 auto;
}

.price-card--highlight .price-feat {
    color: #fff;
}

.price-card--highlight .price-feat ion-icon {
    color: #7cf0d8;
}

.price-card__action {
    margin-top: auto;
}

.lp-pricing-foot {
    text-align: center;
    margin-top: clamp(40px, 4vw, 44px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.lp-pricing-foot p {
    font-family: var(--font-ui);
    font-size: 16px;
    color: var(--evi-subtext);
    margin: 0;
}

.lp-pricing-foot strong {
    color: var(--evi-primary);
}

/* ---------- How it works ---------- */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: clamp(20px, 2.5vw, 28px);
}

.step {
    text-align: center;
    padding: 8px;
}

.step__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 18px;
    border-radius: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.step__icon ion-icon {
    color: #fff;
    font-size: 36px;
}

.step--1 .step__icon {
    background: linear-gradient(135deg, #60a5fa, #2563eb);
    box-shadow: 0 10px 22px -8px rgba(37, 99, 235, .5);
}

.step--2 .step__icon {
    background: linear-gradient(135deg, #a78bfa, #7c3aed);
    box-shadow: 0 10px 22px -8px rgba(124, 58, 237, .5);
}

.step--3 .step__icon {
    background: linear-gradient(135deg, #34d399, #059669);
    box-shadow: 0 10px 22px -8px rgba(5, 150, 105, .5);
}

.step--3 .step__icon ion-icon {
    font-size: 34px;
}

.step__num {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    color: var(--evi-primary);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
}

.step__text {
    font-family: var(--font-ui);
    font-size: 15px;
    line-height: 1.55;
    color: var(--evi-ink);
    margin: 0;
    max-width: 260px;
    margin-inline: auto;
}

.step__text strong {
    color: var(--evi-primary);
}

/* ---------- FAQ ---------- */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.faq-item__btn {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    padding: 20px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(15px, 1.8vw, 18px);
    color: var(--evi-primary-dark);
}

.faq-item__sign {
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--evi-light);
    color: var(--evi-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-family: var(--font-ui);
}

.faq-item__sign::before {
    content: "+";
}

.faq-item.open .faq-item__sign::before {
    content: "–";
}

.faq-item__body {
    display: none;
    padding: 0 22px 22px;
    font-family: var(--font-ui);
    font-size: 15px;
    line-height: 1.6;
    color: var(--evi-subtext);
}

.faq-item.open .faq-item__body {
    display: block;
}

.faq-contact {
    margin-top: clamp(24px, 3vw, 36px);
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    padding: 22px 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px 16px;
    text-align: center;
}

.faq-contact span {
    font-family: var(--font-ui);
    font-size: 15px;
    color: var(--evi-subtext);
}

.faq-contact__hotline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    color: var(--evi-primary);
    background: var(--evi-light);
    padding: 8px 16px;
    border-radius: var(--radius-pill);
}

/* ---------- Final CTA ---------- */
.lp-final {
    position: relative;
    overflow: hidden;
    padding: clamp(56px, 7vw, 100px) clamp(16px, 4vw, 32px);
    background: linear-gradient(135deg, #ffb02d, #ffa001);
}

.lp-final__cloud {
    position: absolute;
    top: 24px;
    left: 8%;
    width: 110px;
    opacity: .7;
    animation: eviFloatSlow 10s ease-in-out infinite;
}

.lp-final__dino {
    position: absolute;
    bottom: -10px;
    right: 6%;
    width: clamp(90px, 13vw, 150px);
    filter: drop-shadow(0 14px 22px rgba(0, 0, 0, .2));
    animation: eviBob 4s ease-in-out infinite;
}

.lp-final__inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.lp-final__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(30px, 5vw, 52px);
    color: #fff;
    margin: 0 0 16px;
    line-height: 1.1;
    letter-spacing: -.5px;
    text-shadow: 0 2px 0 rgba(0, 0, 0, .08);
}

.lp-final__text {
    font-family: var(--font-ui);
    font-size: clamp(16px, 2vw, 19px);
    line-height: 1.55;
    color: #fff;
    margin: 0 0 30px;
    opacity: .95;
}

.lp-final__cta {
    display: flex;
    justify-content: center;
}

/* ---------- Footer ---------- */
.lp-footer {
    background: var(--evi-primary-dark);
    color: #fff;
    padding: clamp(40px, 5vw, 64px) clamp(16px, 4vw, 32px) 28px;
}

.lp-footer__grid {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: space-between;
}

.lp-footer__brand {
    flex: 1 1 280px;
    min-width: min(100%, 260px);
}

.lp-footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.lp-footer__logo img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    background: #fff;
    border-radius: 10px;
    padding: 4px;
}

.lp-footer__logo span {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 24px;
    color: #fff;
}

.lp-footer__logo span span {
    color: var(--evi-secondary);
    font-size: inherit;
}

.lp-footer__tagline {
    font-family: var(--font-ui);
    font-size: 15px;
    color: #b9bce0;
    margin: 0;
    text-align:left;
    max-width: 300px;
}

.lp-footer__text {
    font-family: var(--font-ui);
    font-size: 15px;
    color: #b9bce0;
    margin: 0;
    text-align: left;
}

.lp-footer__col {
    flex: 1 1 200px;
    min-width: min(100%, 200px);
}

.lp-footer__heading {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
    color: #fff;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: .5px;
    text-align:left;
}

.lp-footer__links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-family: var(--font-ui);
    font-size: 15px;
}

.lp-footer__links a {
    color: #b9bce0;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lp-footer__links a:hover {
    color: #fff;
}

.lp-footer__links ion-icon {
    color: var(--evi-secondary);
}

.lp-footer__bottom {
    max-width: 1120px;
    margin: 28px auto 0;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    font-family: var(--font-ui);
    font-size: 13px;
    color: #8890c0;
    text-align: center;
}


/* ---------- Floating contact button ---------- */
.lp-contact-fab {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 90;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.lp-contact-fab__toggle {
    width: 56px;
    height: 56px;
    border: none;
    border-radius: 50%;
    background: var(--evi-primary);
    color: #fff;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--btn-shadow-primary), var(--shadow-card-hover);
    transition: transform .2s var(--evi-ease), background .2s var(--evi-ease);
}

.lp-contact-fab__toggle:hover {
    background: var(--evi-primary-tint);
    transform: translateY(-2px);
}

.lp-contact-fab__toggle:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 0 var(--evi-primary-shade);
}

.lp-contact-fab__toggle ion-icon {
    position: absolute;
    transition: opacity .2s var(--evi-ease), transform .25s var(--evi-ease);
}

.lp-contact-fab__icon--close {
    opacity: 0;
    transform: rotate(-90deg) scale(.5);
}

.lp-contact-fab.open .lp-contact-fab__icon--open {
    opacity: 0;
    transform: rotate(90deg) scale(.5);
}

.lp-contact-fab.open .lp-contact-fab__icon--close {
    opacity: 1;
    transform: rotate(0) scale(1);
}

.lp-contact-fab__actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    pointer-events: none;
}

.lp-contact-fab.open .lp-contact-fab__actions {
    pointer-events: auto;
}

.lp-contact-fab__action {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    text-decoration: none;
    position: relative;
    opacity: 0;
    transform: translateY(14px) scale(.6);
    transition: opacity .2s var(--evi-ease), transform .25s var(--evi-ease);
}

.lp-contact-fab.open .lp-contact-fab__action {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.lp-contact-fab.open .lp-contact-fab__action--phone {
    transition-delay: .05s;
}

.lp-contact-fab__action:hover {
    transform: translateY(-2px) scale(1.05);
}

.lp-contact-fab__action--zalo {
    background: #0068ff;
    box-shadow: 0 4px 0 0 #0053cc, var(--shadow-soft);
}

.lp-contact-fab__action--phone {
    background: var(--evi-success);
    box-shadow: 0 4px 0 0 var(--evi-success-shade), var(--shadow-soft);
}

.lp-contact-fab__action--phone ion-icon {
    animation: eviRing 2s ease-in-out infinite;
}

.lp-contact-fab__zalo-logo {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -.3px;
}

.lp-contact-fab__tooltip {
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
    background: var(--evi-primary-dark);
    color: #fff;
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s var(--evi-ease);
}

.lp-contact-fab__action:hover .lp-contact-fab__tooltip {
    opacity: 1;
}

@keyframes eviRing {
    0%, 100% { transform: rotate(0); }
    5% { transform: rotate(-14deg); }
    10% { transform: rotate(12deg); }
    15% { transform: rotate(-10deg); }
    20% { transform: rotate(8deg); }
    25% { transform: rotate(0); }
}


@media (max-width:575px){
    .lp-hero__ctas{
        flex-wrap:nowrap;
    }

    .lp-hero__ctas .evi-btn--hero {
        min-height: 48px;
        font-size: 16px;
    }

    .lp-hero__trust {
        display: block;
    }

    .lp-hero__trust span {
        right: 5px;
    }

    .lp-hero__trust strong {
        display: inline-block;
        margin-left: 4px;
    }

    .skill-card__icon{
        display:none;
    }

    .faq-contact {
        padding: 22px 15px;
    }
 }