/* =========================================================
   EDUQUERA ACHIEVEMENT PAGE
   FINAL CSS
========================================================= */


/* =========================================================
   GLOBAL
========================================================= */

:root {

    /* -----------------------------------------------------
       EDUQUERA BRAND COLORS
    ----------------------------------------------------- */

    --primary: #0F2B3C;
    --primary-light: #15506B;
    --primary-soft: #EAF7FC;

    --blue: #0284C7;
    --blue-light: #0EA5E9;
    --blue-soft: #E8F6FD;

    --turquoise: #57C5B6;
    --turquoise-light: #E9F8F6;

    --orange: #FF642C;
    --orange-light: #FFF0EA;


    /* -----------------------------------------------------
       BASIC COLORS
    ----------------------------------------------------- */

    --white: #FFFFFF;
    --black: #0F2B3C;

    --text: #496275;
    --muted: #718494;

    --border: #DCE8EF;

    --light-bg: #F5F8FB;
    --blue-bg: #EEF8FD;


    /* -----------------------------------------------------
       SHADOWS
    ----------------------------------------------------- */

    --shadow-sm:
        0 8px 25px rgba(15, 43, 60, 0.07);

    --shadow-md:
        0 20px 50px rgba(15, 43, 60, 0.11);

    --shadow-lg:
        0 30px 70px rgba(15, 43, 60, 0.15);


    /* -----------------------------------------------------
       COMMON
    ----------------------------------------------------- */

    --radius: 24px;

    --transition: 0.35s ease;
}


/* =========================================================
   RESET
========================================================= */

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


html {
    scroll-behavior: smooth;
}


body {
    font-family:
        "Segoe UI",
        Tahoma,
        Geneva,
        Verdana,
        sans-serif;

    color: var(--text);

    background: var(--white);

    overflow-x: hidden;
}


a {
    text-decoration: none;
}


button {
    font-family: inherit;
}


/* =========================================================
   CONTAINER
========================================================= */

.achievement-container {
    width: min(1180px, calc(100% - 40px));

    margin: 0 auto;
}


/* =========================================================
   SCROLL PROGRESS
========================================================= */

.scroll-progress {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    z-index: 9999;

    background: transparent;
}


.scroll-progress-bar {
    width: 0;
    height: 100%;

    background:
        linear-gradient(90deg,
            var(--orange),
            var(--blue-light),
            var(--blue));
}


/* =========================================================
   HERO
========================================================= */

.achievement-hero {
    position: relative;

    min-height: 720px;

    padding: 110px 0 90px;

    overflow: hidden;

    background:
        radial-gradient(circle at 85% 20%,
            rgba(2, 132, 199, 0.10),
            transparent 30%),
        radial-gradient(circle at 10% 80%,
            rgba(87, 197, 182, 0.08),
            transparent 25%),
        linear-gradient(135deg,
            #F5F8FB 0%,
            #FFFFFF 48%,
            #EEF8FD 100%);
}


/* =========================================================
   HERO GRID
========================================================= */

.hero-grid {
    position: absolute;

    inset: 0;

    opacity: 0.35;

    background-image:
        linear-gradient(rgba(2, 132, 199, 0.035) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(2, 132, 199, 0.035) 1px,
            transparent 1px);

    background-size: 45px 45px;

    mask-image:
        linear-gradient(to bottom,
            black,
            transparent 85%);
}


/* =========================================================
   HERO ORBS
========================================================= */

.hero-orb {
    position: absolute;

    border-radius: 50%;

    filter: blur(2px);

    pointer-events: none;
}


.hero-orb-one {
    width: 300px;
    height: 300px;

    right: -100px;
    top: 80px;

    background: rgba(2, 132, 199, 0.08);

    animation:
        floatOrb 8s ease-in-out infinite;
}


.hero-orb-two {
    width: 220px;
    height: 220px;

    left: -100px;
    bottom: 30px;

    background: rgba(87, 197, 182, 0.09);

    animation:
        floatOrb 10s ease-in-out infinite reverse;
}


/* =========================================================
   HERO SHAPES
========================================================= */

.hero-shape {
    position: absolute;

    border:
        1px solid rgba(2, 132, 199, 0.08);

    transform: rotate(25deg);
}


.hero-shape-one {
    width: 140px;
    height: 140px;

    right: 5%;
    bottom: 5%;
}


.hero-shape-two {
    width: 90px;
    height: 90px;

    left: 5%;
    top: 25%;
}


/* =========================================================
   HERO INNER
========================================================= */

.hero-inner {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        1.05fr 0.95fr;

    align-items: center;

    gap: 70px;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {
    max-width: 650px;
}


/* =========================================================
   HERO BADGE
========================================================= */

.hero-badge {
    width: fit-content;

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding:
        8px 14px 8px 8px;

    color: var(--blue);

    background: var(--white);

    border:
        1px solid rgba(2, 132, 199, 0.14);

    border-radius: 50px;

    font-size: 14px;

    font-weight: 700;

    box-shadow: var(--shadow-sm);

    margin-bottom: 25px;
}


.hero-badge span {
    width: 34px;
    height: 34px;

    display: grid;

    place-items: center;

    color: var(--white);

    background: var(--orange);

    border-radius: 50%;
}


/* =========================================================
   HERO HEADING
========================================================= */

.hero-content h1 {
    color: var(--primary);

    font-size:
        clamp(42px, 5vw, 70px);

    line-height: 1.04;

    letter-spacing: -2.5px;

    margin-bottom: 25px;
}


.hero-content h1 span {
    display: block;

    color: var(--blue);
}


/* =========================================================
   HERO DESCRIPTION
========================================================= */

.hero-description {
    max-width: 600px;

    color: var(--text);

    font-size: 18px;

    line-height: 1.8;

    margin-bottom: 32px;
}


/* =========================================================
   HERO ACTIONS
========================================================= */

.hero-actions {
    display: flex;

    align-items: center;

    gap: 15px;

    flex-wrap: wrap;
}


.hero-btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding:
        14px 22px;

    border-radius: 12px;

    font-size: 15px;

    font-weight: 700;

    transition: var(--transition);
}


/* =========================================================
   PRIMARY BUTTON
========================================================= */

.primary-btn {
    color: var(--white);

    background:
        linear-gradient(135deg,
            var(--blue),
            var(--blue-light));

    box-shadow:
        0 12px 25px rgba(2, 132, 199, 0.22);
}


.primary-btn:hover {
    transform: translateY(-4px);

    background: var(--orange);

    box-shadow:
        0 15px 30px rgba(255, 100, 44, 0.25);
}


/* =========================================================
   SECONDARY BUTTON
========================================================= */

.secondary-btn {
    color: var(--primary);

    background: var(--white);

    border:
        1px solid var(--border);
}


.secondary-btn:hover {
    transform: translateY(-4px);

    border-color: var(--blue);

    color: var(--blue);

    box-shadow: var(--shadow-sm);
}


/* =========================================================
   HERO MINI STATS
========================================================= */

.hero-mini-stats {
    display: flex;

    align-items: center;

    gap: 22px;

    margin-top: 45px;
}


.hero-mini-stat {
    display: flex;

    flex-direction: column;
}


.hero-mini-stat strong {
    color: var(--primary);

    font-size: 25px;
}


.hero-mini-stat span {
    color: var(--muted);

    font-size: 13px;
}


.hero-mini-divider {
    width: 1px;

    height: 38px;

    background: var(--border);
}


/* =========================================================
   HERO VISUAL
========================================================= */

.hero-visual {
    position: relative;

    min-height: 480px;

    display: flex;

    align-items: center;

    justify-content: center;
}


/* =========================================================
   HERO MAIN CARD
========================================================= */

.hero-card-main {
    position: relative;

    width: min(430px, 100%);

    background:
        rgba(255, 255, 255, 0.94);

    border:
        1px solid rgba(2, 132, 199, 0.10);

    border-radius: 30px;

    padding: 25px;

    box-shadow: var(--shadow-lg);

    backdrop-filter: blur(15px);

    animation:
        cardFloat 6s ease-in-out infinite;
}


/* =========================================================
   HERO CARD TOP
========================================================= */

.hero-card-top {
    display: flex;

    align-items: center;

    gap: 14px;

    padding-bottom: 20px;

    border-bottom:
        1px solid var(--border);

    color: var(--primary);

    font-weight: 700;
}


.hero-icon-box {
    width: 48px;
    height: 48px;

    display: grid;

    place-items: center;

    color: var(--white);

    background:
        linear-gradient(135deg,
            var(--blue),
            #075985);

    border-radius: 14px;

    font-size: 20px;
}


/* =========================================================
   HERO CARD CONTENT
========================================================= */

.hero-card-content {
    padding: 45px 15px;
}


/* =========================================================
   JOURNEY LINE
========================================================= */

.journey-line {
    display: flex;

    align-items: center;
}


.journey-point {
    width: 45px;
    height: 45px;

    display: grid;

    place-items: center;

    flex-shrink: 0;

    color: var(--blue);

    background: var(--blue-soft);

    border:
        2px solid #C9E8F7;

    border-radius: 50%;

    transition: var(--transition);
}


.journey-point.active {
    color: var(--white);

    background: var(--orange);

    border-color: var(--orange);
}


.journey-connector {
    flex: 1;

    height: 3px;

    background:
        linear-gradient(90deg,
            var(--blue),
            #C9E8F7);
}


/* =========================================================
   JOURNEY LABELS
========================================================= */

.journey-labels {
    display: flex;

    justify-content: space-between;

    margin-top: 14px;

    color: var(--muted);

    font-size: 12px;
}


/* =========================================================
   HERO CARD BOTTOM
========================================================= */

.hero-card-bottom {
    display: flex;

    align-items: center;

    gap: 12px;

    padding-top: 20px;

    border-top:
        1px solid var(--border);
}


.hero-card-bottom strong {
    display: block;

    color: var(--primary);

    font-size: 14px;
}


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


/* =========================================================
   PROFILE STACK
========================================================= */

.profile-stack {
    display: flex;
}


.profile-stack span {
    width: 34px;
    height: 34px;

    display: grid;

    place-items: center;

    margin-left: -7px;

    color: var(--white);

    background: var(--blue);

    border:
        2px solid white;

    border-radius: 50%;

    font-size: 11px;
}


.profile-stack span:first-child {
    margin-left: 0;
}


/* =========================================================
   FLOATING CARDS
========================================================= */

.floating-card {
    position: absolute;

    display: flex;

    align-items: center;

    gap: 7px;

    padding:
        10px 12px;

    background: var(--white);

    border:
        1px solid var(--border);

    border-radius: 14px;

    box-shadow: var(--shadow-md);

    animation:
        floatingCard 5s ease-in-out infinite;
}


.floating-card strong {
    display: block;

    color: var(--primary);

    font-size: 11px;
}


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

    font-size: 9px;
}


.floating-card-one {
    top: 60px;

    right: 0;
}


.floating-card-two {
    bottom: 40px;

    left: -20px;

    animation-delay: -2s;
}


/* =========================================================
   FLOATING ICON
========================================================= */

.floating-icon {
    width: 38px;
    height: 38px;

    display: grid;

    place-items: center;

    border-radius: 10px;
}


.floating-icon.orange {
    color: var(--orange);

    background: var(--orange-light);
}


.floating-icon.blue {
    color: var(--blue);

    background: var(--blue-soft);
}


/* =========================================================
   HERO SCROLL
========================================================= */

.hero-scroll {
    position: absolute;

    bottom: 22px;

    left: 50%;

    transform:
        translateX(-50%);

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 5px;

    color: var(--muted);

    font-size: 12px;

    animation:
        scrollBounce 2s infinite;
}


.hero-scroll i {
    color: var(--orange);
}


/* =========================================================
   SECTION HEADING
========================================================= */

.section-heading {
    max-width: 700px;

    margin:
        0 auto 60px;

    text-align: center;
}


.eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--blue);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.5px;

    margin-bottom: 15px;
}


.section-heading h2 {
    color: var(--primary);

    font-size:
        clamp(32px, 4vw, 48px);

    line-height: 1.15;

    letter-spacing: -1px;

    margin-bottom: 18px;
}


.section-heading h2 span {
    color: var(--blue);
}


.section-heading p {
    color: var(--muted);

    line-height: 1.8;

    font-size: 16px;
}


/* =========================================================
   INTRO / JOURNEY
========================================================= */

.journey-intro {
    padding: 110px 0;

    background: var(--white);
}


.journey-overview {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}


/* =========================================================
   OVERVIEW CARD
========================================================= */

.overview-card {
    position: relative;

    padding: 30px;

    background: var(--white);

    border:
        1px solid var(--border);

    border-radius: var(--radius);

    overflow: hidden;

    transition: var(--transition);
}


.overview-card:hover {
    transform: translateY(-8px);

    border-color:
        rgba(2, 132, 199, 0.30);

    box-shadow: var(--shadow-md);
}


.overview-number {
    position: absolute;

    right: 20px;
    top: 15px;

    color:
        rgba(2, 132, 199, 0.05);

    font-size: 70px;

    font-weight: 900;
}


.overview-icon {
    width: 55px;
    height: 55px;

    display: grid;

    place-items: center;

    margin-bottom: 22px;

    color: var(--blue);

    background: var(--blue-soft);

    border-radius: 15px;

    font-size: 20px;
}


.overview-card:nth-child(2) .overview-icon,
.overview-card:nth-child(4) .overview-icon {
    color: var(--orange);

    background: var(--orange-light);
}


.overview-card h3 {
    color: var(--primary);

    font-size: 20px;

    margin-bottom: 10px;
}


.overview-card p {
    color: var(--muted);

    line-height: 1.7;

    font-size: 14px;
}


/* =========================================================
   STORY SECTIONS
========================================================= */

.story-section {
    position: relative;

    padding: 110px 0;

    overflow: hidden;
}


.story-light {
    background: var(--white);
}


.story-blue {
    background: var(--blue-bg);
}


/* =========================================================
   STORY GRID
========================================================= */

.story-grid {
    display: grid;

    grid-template-columns:
        0.95fr 1.05fr;

    align-items: center;

    gap: 80px;
}


.story-grid.reverse {
    grid-template-columns:
        1.05fr 0.95fr;
}


.story-grid.reverse .story-image {
    order: 2;
}


.story-grid.reverse .story-content {
    order: 1;
}


/* =========================================================
   STORY IMAGE
========================================================= */

.story-image-wrapper {
    position: relative;

    min-height: 500px;

    border-radius: 30px;

    overflow: hidden;

    background-position: center;

    background-size: cover;

    box-shadow: var(--shadow-lg);

    isolation: isolate;

    transition:
        transform 0.6s ease;
}


.story-image-wrapper:hover {
    transform:
        scale(1.015) rotate(-1deg);
}


/* =========================================================
   IMAGE PATHS
========================================================= */

.image-one {
    background-image:
        url("img/college_1.webp");
}


.image-two {
    background-image:
        url("img/college_2.webp");
}


.image-three {
    background-image:
        url("img/college_3.webp");
}


.image-four {
    background-image:
        url("img/college_4.webp");
}


.image-five {
    background-image:
        url("img/college_5.jpg");
}


.image-six {
    background-image:
        url("img/college_6.webp");
}


.image-seven {
    background-image:
        url("img/college_7.webp");
}


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.image-overlay {
    position: absolute;

    inset: 0;

    z-index: -1;

    background:
        linear-gradient(180deg,
            rgba(15, 43, 60, 0.02),
            rgba(15, 43, 60, 0.78));
}


/* =========================================================
   IMAGE NUMBER
========================================================= */

.image-number {
    position: absolute;

    top: 25px;
    right: 25px;

    width: 58px;
    height: 58px;

    display: grid;

    place-items: center;

    color: var(--white);

    background:
        rgba(255, 255, 255, 0.15);

    border:
        1px solid rgba(255, 255, 255, 0.3);

    backdrop-filter: blur(10px);

    border-radius: 50%;

    font-weight: 800;
}


/* =========================================================
   IMAGE CAPTION
========================================================= */

.image-caption {
    position: absolute;

    left: 25px;
    bottom: 25px;

    display: flex;

    align-items: center;

    gap: 10px;

    padding:
        12px 17px;

    color: var(--white);

    background:
        rgba(15, 43, 60, 0.82);

    backdrop-filter: blur(10px);

    border-radius: 12px;

    font-weight: 700;
}


.image-caption i {
    color: var(--orange);
}


/* =========================================================
   STORY CONTENT
========================================================= */

.story-content {
    max-width: 600px;
}


.story-label {
    display: inline-block;

    color: var(--blue);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.5px;

    margin-bottom: 14px;
}


.story-content h2 {
    color: var(--primary);

    font-size:
        clamp(32px, 4vw, 47px);

    line-height: 1.15;

    letter-spacing: -1.2px;

    margin-bottom: 22px;
}


.story-content h2 span {
    color: var(--blue);
}


.story-content>p {
    color: var(--text);

    line-height: 1.85;

    font-size: 16px;

    margin-bottom: 18px;
}


/* =========================================================
   STORY HIGHLIGHT
========================================================= */

.story-highlight {
    display: flex;

    gap: 15px;

    padding: 20px;

    margin: 28px 0;

    background: var(--orange-light);

    border-left:
        4px solid var(--orange);

    border-radius: 12px;
}


.story-highlight>i {
    color: var(--orange);

    font-size: 22px;
}


.story-highlight strong {
    display: block;

    color: var(--primary);

    margin-bottom: 5px;
}


.story-highlight p {
    color: var(--text);

    font-size: 14px;

    line-height: 1.6;
}


/* =========================================================
   STORY POINTS
========================================================= */

.story-points {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 13px;
}


.story-points div {
    display: flex;

    align-items: center;

    gap: 10px;

    color: var(--primary);

    font-size: 14px;

    font-weight: 600;
}


.story-points i {
    width: 24px;
    height: 24px;

    display: grid;

    place-items: center;

    color: var(--white);

    background: var(--blue);

    border-radius: 50%;

    font-size: 10px;
}


/* =========================================================
   STRATEGY CARDS
========================================================= */

.strategy-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 14px;

    margin-top: 28px;
}


.strategy-card {
    padding: 20px;

    background: var(--white);

    border:
        1px solid var(--border);

    border-radius: 15px;

    transition: var(--transition);
}


.strategy-card:hover {
    transform: translateY(-5px);

    border-color:
        rgba(2, 132, 199, 0.18);

    box-shadow: var(--shadow-sm);
}


.strategy-card i {
    color: var(--blue);

    font-size: 20px;

    margin-bottom: 12px;
}


.strategy-card strong {
    display: block;

    color: var(--primary);

    margin-bottom: 5px;
}


.strategy-card span {
    color: var(--muted);

    font-size: 13px;

    line-height: 1.5;
}


/* =========================================================
   COMMUNITY
========================================================= */

.community-list {
    margin-top: 30px;
}


.community-item {
    display: flex;

    align-items: center;

    gap: 15px;

    padding: 14px 0;

    border-bottom:
        1px solid var(--border);
}


.community-item:last-child {
    border-bottom: none;
}


.community-item>span {
    width: 45px;
    height: 45px;

    display: grid;

    place-items: center;

    flex-shrink: 0;

    color: var(--blue);

    background: var(--blue-soft);

    border-radius: 12px;
}


.community-item strong {
    display: block;

    color: var(--primary);

    margin-bottom: 3px;
}


.community-item p {
    color: var(--muted);

    font-size: 13px;
}


/* =========================================================
   BALANCE
========================================================= */

.balance-meter {
    margin-top: 30px;
}


.balance-row {
    margin-bottom: 18px;
}


.balance-row>span {
    display: flex;

    align-items: center;

    gap: 8px;

    color: var(--primary);

    font-size: 14px;

    font-weight: 700;

    margin-bottom: 8px;
}


.balance-row i {
    color: var(--orange);
}


.meter {
    width: 100%;

    height: 8px;

    overflow: hidden;

    background: #DCE8EF;

    border-radius: 20px;
}


.meter span {
    display: block;

    height: 100%;

    background:
        linear-gradient(90deg,
            var(--blue),
            var(--turquoise));

    border-radius: inherit;
}


/* =========================================================
   SMALL NOTE
========================================================= */

.small-note {
    display: flex;

    align-items: flex-start;

    gap: 10px;

    margin-top: 25px;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.6;
}


.small-note i {
    color: var(--orange);

    margin-top: 3px;
}


/* =========================================================
   CAREER PATH
========================================================= */

.career-path {
    position: relative;

    margin-top: 30px;

    padding-left: 15px;
}


.career-path::before {
    content: "";

    position: absolute;

    left: 29px;

    top: 20px;

    bottom: 20px;

    width: 2px;

    background: #C9E8F7;
}


.career-step {
    position: relative;

    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 18px;
}


.career-step:last-child {
    margin-bottom: 0;
}


.career-step>span {
    position: relative;

    z-index: 2;

    width: 30px;
    height: 30px;

    display: grid;

    place-items: center;

    flex-shrink: 0;

    color: var(--white);

    background: var(--blue);

    border-radius: 50%;

    font-size: 11px;

    font-weight: 800;
}


.career-step strong {
    display: block;

    color: var(--primary);

    margin-bottom: 2px;
}


.career-step small {
    color: var(--muted);
}


/* =========================================================
   WELLNESS
========================================================= */

.wellness-cards {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 14px;

    margin-top: 28px;
}


.wellness-cards>div {
    padding: 20px;

    background: var(--white);

    border:
        1px solid var(--border);

    border-radius: 15px;
}


.wellness-cards i {
    color: var(--blue);

    font-size: 20px;

    margin-bottom: 10px;
}


.wellness-cards strong {
    display: block;

    color: var(--primary);

    margin-bottom: 5px;
}


.wellness-cards span {
    display: block;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.5;
}


/* =========================================================
   GRADUATION
========================================================= */

.graduation-checklist {
    display: grid;

    gap: 12px;

    margin-top: 28px;
}


.graduation-checklist div {
    display: flex;

    align-items: center;

    gap: 10px;

    color: var(--primary);

    font-weight: 600;

    font-size: 14px;
}


.graduation-checklist i {
    color: var(--blue);
}


/* =========================================================
   FINAL MESSAGE
========================================================= */

.final-message {
    display: flex;

    gap: 15px;

    margin-top: 30px;

    padding: 22px;

    background:
        linear-gradient(135deg,
            #075985,
            var(--blue));

    color: var(--white);

    border-radius: 15px;
}


.final-message>i {
    color: var(--orange);

    font-size: 20px;
}


.final-message p {
    line-height: 1.7;

    font-weight: 600;
}


/* =========================================================
   ACHIEVEMENT STATS
========================================================= */

.achievement-stats {
    position: relative;

    padding: 110px 0;

    background:
        radial-gradient(circle at 15% 80%,
            rgba(255, 100, 44, 0.16),
            transparent 25%),
        linear-gradient(135deg,
            #075985,
            #0284C7);
}


/* =========================================================
   LIGHT HEADING
========================================================= */

.light-heading h2,
.light-heading p {
    color: var(--white);
}


.light-heading h2 span {
    color: var(--orange);
}


/* =========================================================
   STATS GRID
========================================================= */

.stats-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}


/* =========================================================
   STAT CARD
========================================================= */

.stat-card {
    padding: 32px 20px;

    text-align: center;

    background:
        rgba(255, 255, 255, 0.10);

    border:
        1px solid rgba(255, 255, 255, 0.18);

    border-radius: 22px;

    backdrop-filter: blur(10px);

    transition: var(--transition);
}


.stat-card:hover {
    transform: translateY(-8px);

    background:
        rgba(255, 255, 255, 0.15);

    border-color:
        rgba(255, 100, 44, 0.65);
}


/* =========================================================
   STAT ICON
========================================================= */

.stat-icon {
    width: 55px;
    height: 55px;

    display: grid;

    place-items: center;

    margin:
        0 auto 18px;

    color: var(--orange);

    background:
        rgba(255, 100, 44, 0.14);

    border-radius: 15px;

    font-size: 21px;
}


.stat-card strong {
    display: block;

    color: var(--white);

    font-size: 30px;

    margin-bottom: 7px;
}


.stat-card>span {
    color:
        rgba(255, 255, 255, 0.72);

    font-size: 13px;
}


/* =========================================================
   GUIDANCE SECTION
========================================================= */

.guidance-section {
    position: relative;

    padding: 100px 0;

    background: var(--white);

    overflow: hidden;
}


/* =========================================================
   GUIDANCE PATTERN
========================================================= */

.guidance-pattern {
    position: absolute;

    inset: 0;

    opacity: 0.5;

    background-image:
        radial-gradient(rgba(2, 132, 199, 0.08) 1px,
            transparent 1px);

    background-size: 25px 25px;

    mask-image:
        linear-gradient(90deg,
            transparent,
            black,
            transparent);
}


/* =========================================================
   GUIDANCE BOX
========================================================= */

.guidance-box {
    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    gap: 55px;

    padding: 55px;

    background:
        linear-gradient(135deg,
            #EEF8FD,
            #FFFFFF);

    border:
        1px solid #D6EAF4;

    border-radius: 30px;

    box-shadow: var(--shadow-md);
}


/* =========================================================
   GUIDANCE ICON
========================================================= */

.guidance-icon {
    position: relative;

    width: 150px;
    height: 150px;

    display: grid;

    place-items: center;

    flex-shrink: 0;

    color: var(--white);

    background:
        linear-gradient(135deg,
            var(--blue),
            #075985);

    border-radius: 40px;

    font-size: 50px;

    box-shadow:
        0 20px 40px rgba(2, 132, 199, 0.22);
}


/* =========================================================
   ICON RING
========================================================= */

.icon-ring {
    position: absolute;

    width: 190px;
    height: 190px;

    border:
        2px dashed rgba(255, 100, 44, 0.45);

    border-radius: 50%;

    animation:
        spin 15s linear infinite;
}


/* =========================================================
   GUIDANCE CONTENT
========================================================= */

.guidance-content {
    max-width: 700px;
}


.guidance-content h2 {
    color: var(--primary);

    font-size:
        clamp(32px, 4vw, 48px);

    line-height: 1.15;

    margin-bottom: 18px;
}


.guidance-content h2 span {
    color: var(--blue);
}


.guidance-content p {
    color: var(--muted);

    line-height: 1.8;

    margin-bottom: 25px;
}


/* =========================================================
   GUIDANCE BUTTON
========================================================= */

.guidance-btn {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding:
        14px 22px;

    color: var(--white);

    background: var(--orange);

    border-radius: 12px;

    font-weight: 700;

    box-shadow:
        0 10px 25px rgba(255, 100, 44, 0.25);

    transition: var(--transition);
}


.guidance-btn:hover {
    transform: translateY(-4px);

    background: var(--blue);

    box-shadow:
        0 12px 25px rgba(2, 132, 199, 0.22);
}


/* =========================================================
   CONCLUSION
========================================================= */

.conclusion-section {
    padding: 100px 0;

    background: var(--light-bg);
}


/* =========================================================
   CONCLUSION CARD
========================================================= */

.conclusion-card {
    max-width: 850px;

    margin: auto;

    padding: 55px;

    text-align: center;

    background: var(--white);

    border:
        1px solid var(--border);

    border-radius: 30px;

    box-shadow: var(--shadow-md);
}


/* =========================================================
   CONCLUSION ICON
========================================================= */

.conclusion-icon {
    width: 70px;
    height: 70px;

    display: grid;

    place-items: center;

    margin:
        0 auto 25px;

    color: var(--white);

    background:
        linear-gradient(135deg,
            var(--blue),
            #075985);

    border-radius: 20px;

    font-size: 28px;

    box-shadow:
        0 15px 30px rgba(2, 132, 199, 0.18);
}


/* =========================================================
   CONCLUSION HEADING
========================================================= */

.conclusion-card h2 {
    color: var(--primary);

    font-size:
        clamp(30px, 4vw, 46px);

    line-height: 1.2;

    margin-bottom: 20px;
}


.conclusion-card h2 span {
    display: block;

    color: var(--blue);
}


/* =========================================================
   CONCLUSION PARAGRAPH
========================================================= */

.conclusion-card>p {
    max-width: 720px;

    margin:
        0 auto 15px;

    color: var(--muted);

    line-height: 1.8;
}


/* =========================================================
   CONCLUSION HIGHLIGHT
========================================================= */

.conclusion-highlight {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    margin-top: 30px;

    padding: 20px;

    color: var(--primary);

    background: var(--blue-soft);

    border-radius: 14px;
}


.conclusion-highlight i {
    color: var(--orange);
}


/* =========================================================
   BACK TO TOP
========================================================= */

.back-to-top {
    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 48px;
    height: 48px;

    display: grid;

    place-items: center;

    color: var(--white);

    background: var(--blue);

    border: none;

    border-radius: 50%;

    cursor: pointer;

    opacity: 0;

    visibility: hidden;

    transform: translateY(20px);

    transition: var(--transition);

    z-index: 999;
}


.back-to-top.show {
    opacity: 1;

    visibility: visible;

    transform: translateY(0);
}


.back-to-top:hover {
    background: var(--orange);

    transform: translateY(-4px);
}


/* =========================================================
   SCROLL REVEAL
========================================================= */

.reveal {
    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}


.reveal.active {
    opacity: 1;

    transform: translateY(0);
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes cardFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}


@keyframes floatingCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}


@keyframes floatOrb {

    0%,
    100% {
        transform:
            translate(0, 0);
    }

    50% {
        transform:
            translate(20px, -25px);
    }
}


@keyframes scrollBounce {

    0%,
    100% {
        transform:
            translate(-50%, 0);
    }

    50% {
        transform:
            translate(-50%, 8px);
    }
}


@keyframes spin {

    to {
        transform: rotate(360deg);
    }
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

    /* -----------------------------------------------------
       HERO
    ----------------------------------------------------- */

    .hero-inner {
        grid-template-columns: 1fr;

        text-align: center;

        gap: 60px;
    }


    .hero-content {
        max-width: 750px;

        margin: auto;
    }


    .hero-badge {
        margin-left: auto;

        margin-right: auto;
    }


    .hero-description {
        margin-left: auto;

        margin-right: auto;
    }


    .hero-actions,
    .hero-mini-stats {
        justify-content: center;
    }


    .hero-visual {
        max-width: 600px;

        width: 100%;

        margin: auto;
    }


    /* -----------------------------------------------------
       OVERVIEW
    ----------------------------------------------------- */

    .journey-overview {
        grid-template-columns:
            repeat(2, 1fr);
    }


    /* -----------------------------------------------------
       STORY
    ----------------------------------------------------- */

    .story-grid,
    .story-grid.reverse {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    .story-grid.reverse .story-image,
    .story-grid.reverse .story-content {
        order: initial;
    }


    .story-content {
        max-width: none;
    }


    /* -----------------------------------------------------
       STATS
    ----------------------------------------------------- */

    .stats-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    /* -----------------------------------------------------
       GUIDANCE
    ----------------------------------------------------- */

    .guidance-box {
        gap: 35px;
    }
}


/* =========================================================
   TABLET / MOBILE
========================================================= */

@media (max-width: 700px) {

    /* -----------------------------------------------------
       CONTAINER
    ----------------------------------------------------- */

    .achievement-container {
        width:
            min(calc(100% - 28px),
                1180px);
    }


    /* -----------------------------------------------------
       HERO
    ----------------------------------------------------- */

    .achievement-hero {
        min-height: auto;

        padding:
            80px 0 70px;
    }


    .hero-content h1 {
        font-size: 42px;

        letter-spacing: -1.5px;
    }


    .hero-description {
        font-size: 16px;
    }


    .hero-actions {
        flex-direction: column;
    }


    .hero-btn {
        width: 100%;
    }


    .hero-mini-stats {
        gap: 12px;
    }


    .hero-mini-divider {
        height: 30px;
    }


    .hero-visual {
        min-height: 400px;
    }


    .hero-card-main {
        padding: 18px;
    }


    .floating-card-one {
        right: -5px;

        top: 15px;
    }


    .floating-card-two {
        left: -5px;

        bottom: 15px;
    }


    /* -----------------------------------------------------
       SECTION PADDING
    ----------------------------------------------------- */

    .journey-intro,
    .story-section,
    .achievement-stats,
    .guidance-section,
    .conclusion-section {
        padding: 75px 0;
    }


    /* -----------------------------------------------------
       SECTION HEADING
    ----------------------------------------------------- */

    .section-heading {
        margin-bottom: 40px;
    }


    /* -----------------------------------------------------
       OVERVIEW
    ----------------------------------------------------- */

    .journey-overview {
        grid-template-columns: 1fr;
    }


    /* -----------------------------------------------------
       STORY IMAGE
    ----------------------------------------------------- */

    .story-image-wrapper {
        min-height: 380px;
    }


    /* -----------------------------------------------------
       STORY GRIDS
    ----------------------------------------------------- */

    .story-points,
    .strategy-grid,
    .wellness-cards {
        grid-template-columns: 1fr;
    }


    /* -----------------------------------------------------
       STATS
    ----------------------------------------------------- */

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


    /* -----------------------------------------------------
       GUIDANCE
    ----------------------------------------------------- */

    .guidance-box {
        flex-direction: column;

        text-align: center;

        padding:
            35px 25px;
    }


    .guidance-icon {
        width: 110px;
        height: 110px;

        font-size: 38px;
    }


    .icon-ring {
        width: 145px;
        height: 145px;
    }


    .guidance-content {
        width: 100%;
    }


    /* -----------------------------------------------------
       CONCLUSION
    ----------------------------------------------------- */

    .conclusion-card {
        padding:
            35px 22px;
    }


    .conclusion-highlight {
        flex-direction: column;

        text-align: center;
    }


    /* -----------------------------------------------------
       HERO SCROLL
    ----------------------------------------------------- */

    .hero-scroll {
        display: none;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 430px) {

    .hero-content h1 {
        font-size: 36px;
    }


    .hero-mini-stats {
        flex-wrap: wrap;
    }


    .hero-mini-divider {
        display: none;
    }


    .journey-point {
        width: 38px;
        height: 38px;

        font-size: 12px;
    }


    .story-image-wrapper {
        min-height: 320px;
    }


    .image-number {
        width: 48px;
        height: 48px;

        top: 15px;
        right: 15px;
    }


    .image-caption {
        left: 15px;
        bottom: 15px;

        font-size: 12px;
    }


    .back-to-top {
        right: 15px;
        bottom: 15px;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {

        scroll-behavior: auto !important;

        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            0.01ms !important;
    }
}