/* =========================================================
   ARPIVA TECHNOLOGIES
   EDUCATION INDUSTRY PAGE
   Premium Enterprise Design
========================================================= */

.arpiva-education-page {
    --edu-navy: #06183f;
    --edu-navy-dark: #03122f;
    --edu-blue: #1268d3;
    --edu-blue-light: #62aaff;
    --edu-orange: #ff9f1c;
    --edu-orange-dark: #ff8200;

    --edu-text: #12213f;
    --edu-muted: #64748b;
    --edu-light: #f5f8fc;
    --edu-border: #e4ebf4;
    --edu-white: #ffffff;

    overflow: hidden;
}

.arpiva-education-page .container {
    width: min(1180px, 92%);
    margin: 0 auto;
}


/* =========================================================
   HERO
   education-hero.png = BACKGROUND ONLY
========================================================= */

.education-hero {
    position: relative;

    height: 620px;
    min-height: 620px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background-color: var(--edu-navy);

    background-image:
        linear-gradient(
            90deg,
            rgba(3, 17, 47, .98) 0%,
            rgba(4, 24, 58, .94) 35%,
            rgba(5, 29, 67, .70) 65%,
            rgba(5, 29, 67, .28) 100%
        ),
        url("../images/education-hero.png");

    background-position:
        center,
        center center;

    background-size:
        cover,
        cover;

    background-repeat:
        no-repeat,
        no-repeat;
}


/* subtle premium background movement */

.education-hero {
    animation:
        educationHeroBackground 18s ease-in-out infinite alternate;
}

@keyframes educationHeroBackground {
    from {
        background-position:
            center,
            center center;
    }

    to {
        background-position:
            center,
            52% center;
    }
}


/* =========================================================
   HERO OVERLAY
========================================================= */

.education-hero-overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    pointer-events: none;

    background:
        radial-gradient(
            circle at 76% 35%,
            rgba(42, 137, 255, .18),
            transparent 34%
        ),
        radial-gradient(
            circle at 20% 85%,
            rgba(255, 159, 28, .08),
            transparent 28%
        );
}


.education-hero-glow {
    position: absolute;

    width: 330px;
    height: 330px;

    border-radius: 50%;

    filter: blur(90px);

    pointer-events: none;

    z-index: 1;

    opacity: .16;
}


.education-glow-one {
    background: #1681ff;

    right: 8%;
    top: 15%;

    animation:
        educationGlowMove 8s ease-in-out infinite alternate;
}


.education-glow-two {
    background: var(--edu-orange);

    left: 4%;
    bottom: 0;

    opacity: .07;

    animation:
        educationGlowMove 11s ease-in-out infinite alternate-reverse;
}


@keyframes educationGlowMove {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(25px, -18px, 0);
    }
}


/* =========================================================
   HERO CONTENT
========================================================= */

.education-hero .container {
    position: relative;

    z-index: 5;
}


.education-hero-content {
    max-width: 710px;

    padding-top: 15px;
}


.education-eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 8px 14px;

    border:
        1px solid rgba(255,255,255,.17);

    border-radius: 999px;

    background:
        rgba(255,255,255,.06);

    color: #d7e6ff;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.7px;

    backdrop-filter: blur(8px);
}


.education-eyebrow::before {
    content: "";

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #45db84;

    box-shadow:
        0 0 0 5px rgba(69,219,132,.10),
        0 0 14px rgba(69,219,132,.45);

    animation:
        educationPulse 2s ease-in-out infinite;
}


@keyframes educationPulse {
    0%,
    100% {
        opacity: .65;
        transform: scale(.9);
    }

    50% {
        opacity: 1;
        transform: scale(1.15);
    }
}


.education-kicker {
    display: block;

    margin-top: 22px;
    margin-bottom: 12px;

    color: var(--edu-orange);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 3px;
}


.education-hero h1 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(45px, 4.5vw, 68px);

    line-height: .99;

    font-weight: 800;

    letter-spacing: -2.7px;
}


.education-hero h1 span {
    display: block;

    margin-top: 7px;

    color: #69acff;
}


.education-hero-content > p {
    max-width: 640px;

    margin: 21px 0 0;

    color: #c5d5ea;

    font-size: 15px;

    line-height: 1.75;
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.education-hero-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 27px;
}


.education-primary-button,
.education-secondary-button {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 13px;

    min-height: 51px;

    padding: 0 23px;

    border-radius: 10px;

    text-decoration: none;

    font-size: 12px;

    font-weight: 700;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        background .3s ease,
        border-color .3s ease;
}


.education-primary-button {
    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #ffa51f,
            #ff8000
        );

    box-shadow:
        0 14px 30px rgba(255,128,0,.20);
}


.education-primary-button:hover {
    color: #ffffff;

    transform: translateY(-3px);

    box-shadow:
        0 18px 38px rgba(255,128,0,.32);
}


.education-secondary-button {
    color: #ffffff;

    border:
        1px solid rgba(255,255,255,.22);

    background:
        rgba(255,255,255,.055);

    backdrop-filter: blur(12px);
}


.education-secondary-button:hover {
    color: #ffffff;

    transform: translateY(-3px);

    background:
        rgba(255,255,255,.11);

    border-color:
        rgba(255,255,255,.4);
}


.education-primary-button span,
.education-secondary-button span {
    font-size: 17px;

    transition:
        transform .25s ease;
}


.education-primary-button:hover span,
.education-secondary-button:hover span {
    transform: translateX(4px);
}


/* =========================================================
   HERO TRUST
========================================================= */

.education-hero-trust {
    display: flex;

    flex-wrap: wrap;

    gap: 20px;

    margin-top: 18px;
}


.education-hero-trust span {
    position: relative;

    padding-left: 15px;

    color: #9db3d2;

    font-size: 9px;

    font-weight: 600;
}


.education-hero-trust span::before {
    content: "";

    position: absolute;

    left: 0;
    top: 50%;

    width: 5px;
    height: 5px;

    transform: translateY(-50%);

    border-radius: 50%;

    background: var(--edu-orange);
}


/* =========================================================
   SCROLL INDICATOR
========================================================= */

.education-scroll-indicator {
    position: absolute;

    left: 50%;
    bottom: 22px;

    transform: translateX(-50%);

    z-index: 5;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 7px;

    color: rgba(255,255,255,.43);

    font-size: 7px;

    font-weight: 700;

    letter-spacing: 1.7px;
}


.education-scroll-indicator i {
    width: 1px;
    height: 26px;

    display: block;

    background:
        linear-gradient(
            to bottom,
            rgba(255,255,255,.5),
            transparent
        );

    animation:
        educationScroll 1.8s ease-in-out infinite;
}


@keyframes educationScroll {
    0%,
    100% {
        opacity: .4;
        transform: translateY(0);
    }

    50% {
        opacity: 1;
        transform: translateY(7px);
    }
}


/* =========================================================
   GENERAL SECTIONS
========================================================= */

.education-intro,
.education-solutions,
.education-platform,
.education-experience,
.education-intelligence,
.education-automation,
.education-security {
    padding: 110px 0;
}


.education-section-heading {
    max-width: 790px;

    margin: 0 auto 62px;

    text-align: center;
}


.education-section-heading.light {
    color: #ffffff;
}


.education-section-badge {
    display: inline-block;

    margin-bottom: 14px;

    color: var(--edu-blue);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2.5px;
}


.education-section-heading.light .education-section-badge {
    color: var(--edu-orange);
}


.education-section-heading h2 {
    margin: 0;

    color: var(--edu-navy);

    font-size: clamp(34px, 4vw, 52px);

    line-height: 1.08;

    font-weight: 800;

    letter-spacing: -1.7px;
}


.education-section-heading.light h2 {
    color: #ffffff;
}


.education-section-heading h2 span {
    color: var(--edu-blue);
}


.education-section-heading.light h2 span {
    color: #6db0ff;
}


.education-section-heading p {
    max-width: 700px;

    margin: 20px auto 0;

    color: var(--edu-muted);

    font-size: 14px;

    line-height: 1.8;
}


.education-section-heading.light p {
    color: #aebed7;
}


/* =========================================================
   INTRO
========================================================= */

.education-intro {
    background: #ffffff;
}


.education-intro-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    gap: 70px;

    align-items: center;
}


.education-intro-content {
    max-width: 580px;
}


.education-small-label {
    color: var(--edu-orange);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;
}


.education-intro-content h3 {
    margin: 14px 0 18px;

    color: var(--edu-navy);

    font-size: clamp(30px, 3.2vw, 44px);

    line-height: 1.12;

    letter-spacing: -1.4px;
}


.education-intro-content h3 strong {
    display: block;

    color: var(--edu-blue);
}


.education-intro-content > p {
    color: var(--edu-muted);

    font-size: 14px;

    line-height: 1.8;
}


.education-intro-points {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 12px;

    margin-top: 28px;
}


.education-intro-points > div {
    padding: 17px;

    border:
        1px solid var(--edu-border);

    border-radius: 13px;

    background: #fbfcfe;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


.education-intro-points > div:hover {
    transform: translateY(-5px);

    box-shadow:
        0 16px 35px rgba(6,24,63,.08);
}


.education-intro-points span {
    display: block;

    margin-bottom: 8px;

    color: var(--edu-orange);

    font-size: 9px;

    font-weight: 800;
}


.education-intro-points strong {
    color: var(--edu-navy);

    font-size: 12px;
}


.education-intro-points p {
    margin: 6px 0 0;

    color: var(--edu-muted);

    font-size: 9px;

    line-height: 1.55;
}


/* =========================================================
   ORBIT VISUAL
========================================================= */

.education-intro-visual {
    min-height: 490px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 28px;

    background:
        radial-gradient(
            circle at center,
            #edf6ff 0%,
            #f8fbff 48%,
            #ffffff 76%
        );
}


.education-orbit {
    position: relative;

    width: 390px;
    height: 390px;
}


.education-orbit-ring {
    position: absolute;

    left: 50%;
    top: 50%;

    border-radius: 50%;

    transform:
        translate(-50%,-50%);

    animation:
        educationOrbitSpin 18s linear infinite;
}


.education-ring-one {
    width: 180px;
    height: 180px;

    border:
        1px solid rgba(18,104,211,.20);
}


.education-ring-two {
    width: 275px;
    height: 275px;

    border:
        1px solid rgba(255,159,28,.18);

    animation-duration: 24s;

    animation-direction: reverse;
}


.education-ring-three {
    width: 370px;
    height: 370px;

    border:
        1px dashed rgba(18,104,211,.14);

    animation-duration: 30s;
}


@keyframes educationOrbitSpin {
    from {
        transform:
            translate(-50%,-50%)
            rotate(0deg);
    }

    to {
        transform:
            translate(-50%,-50%)
            rotate(360deg);
    }
}


.education-orbit-core {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 135px;
    height: 135px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    transform:
        translate(-50%,-50%);

    border-radius: 50%;

    color: #ffffff;

    background:
        linear-gradient(
            145deg,
            #1268d3,
            #06183f
        );

    box-shadow:
        0 20px 55px rgba(18,104,211,.27);
}


.education-orbit-core span {
    font-size: 8px;

    font-weight: 700;

    letter-spacing: 2px;

    color: #8fc4ff;
}


.education-orbit-core strong {
    margin-top: 4px;

    font-size: 23px;

    letter-spacing: 1px;
}


.education-orbit-core small {
    margin-top: 4px;

    color: #a8bfdd;

    font-size: 6px;

    letter-spacing: 1px;
}


.education-orbit-node {
    position: absolute;

    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 5px;

    border:
        1px solid #dbe8f7;

    border-radius: 50%;

    color: var(--edu-navy);

    background: #ffffff;

    box-shadow:
        0 12px 30px rgba(6,24,63,.09);

    font-size: 7px;

    font-weight: 800;

    text-align: center;
}


.education-node-one {
    top: 38px;
    left: 40px;
}


.education-node-two {
    top: 32px;
    right: 28px;
}


.education-node-three {
    right: 10px;
    bottom: 55px;
}


.education-node-four {
    left: 24px;
    bottom: 38px;
}


/* =========================================================
   CHALLENGES
========================================================= */

.education-challenges {
    padding: 110px 0;

    background:
        linear-gradient(
            135deg,
            #03122f,
            #06183f 55%,
            #09275a
        );
}


.education-challenge-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 16px;
}


.education-challenge-card {
    min-height: 305px;

    padding: 26px;

    border:
        1px solid rgba(255,255,255,.08);

    border-radius: 17px;

    background:
        rgba(255,255,255,.045);

    backdrop-filter: blur(12px);

    transition:
        transform .35s ease,
        border-color .35s ease,
        background .35s ease;
}


.education-challenge-card:hover {
    transform: translateY(-8px);

    border-color:
        rgba(82,164,255,.38);

    background:
        rgba(255,255,255,.075);
}


.education-card-number {
    color: rgba(255,255,255,.23);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;
}


.education-card-icon {
    margin-top: 35px;

    color: var(--edu-orange);

    font-size: 25px;

    font-weight: 800;
}


.education-challenge-card h3 {
    margin: 24px 0 12px;

    color: #ffffff;

    font-size: 19px;
}


.education-challenge-card p {
    margin: 0;

    color: #9db1d0;

    font-size: 11px;

    line-height: 1.75;
}


/* =========================================================
   SOLUTIONS
========================================================= */

.education-solutions {
    background: #f7f9fc;
}


.education-solutions-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 17px;
}


.education-solution-card {
    min-height: 270px;

    padding: 27px;

    border:
        1px solid var(--edu-border);

    border-radius: 17px;

    background: #ffffff;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}


.education-solution-card:hover {
    transform: translateY(-8px);

    border-color:
        rgba(18,104,211,.22);

    box-shadow:
        0 20px 50px rgba(6,24,63,.09);
}


.education-solution-top {
    display: flex;

    align-items: center;

    justify-content: space-between;
}


.education-solution-top span {
    color: #a4b5cb;

    font-size: 9px;

    font-weight: 800;
}


.education-solution-top i {
    min-width: 42px;
    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 0 8px;

    border-radius: 10px;

    color: var(--edu-blue);

    background: #edf5ff;

    font-size: 8px;

    font-style: normal;

    font-weight: 800;
}


.education-solution-card h3 {
    margin: 27px 0 12px;

    color: var(--edu-navy);

    font-size: 18px;

    line-height: 1.3;
}


.education-solution-card p {
    margin: 0;

    color: var(--edu-muted);

    font-size: 11px;

    line-height: 1.75;
}


/* =========================================================
   PLATFORM
========================================================= */

.education-platform {
    background: #ffffff;
}


.education-platform-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(0, .92fr);

    gap: 75px;

    align-items: center;
}


.education-image-frame {
    position: relative;

    overflow: hidden;

    border-radius: 21px;

    background: #06183f;

    box-shadow:
        0 25px 65px rgba(6,24,63,.13);
}


.education-image-frame::after {
    content: "";

    position: absolute;

    inset: 0;

    border:
        1px solid rgba(18,104,211,.15);

    border-radius: inherit;

    pointer-events: none;
}


.education-image-frame img {
    display: block;

    width: 100%;
    height: auto;

    transition:
        transform .7s cubic-bezier(.2,.7,.2,1);
}


.education-image-frame:hover img {
    transform: scale(1.035);
}


.education-platform-content h2 {
    margin: 15px 0 18px;

    color: var(--edu-navy);

    font-size: clamp(34px, 4vw, 52px);

    line-height: 1.08;

    letter-spacing: -1.7px;
}


.education-platform-content h2 span {
    display: block;

    color: var(--edu-blue);
}


.education-platform-content > p {
    color: var(--edu-muted);

    font-size: 14px;

    line-height: 1.8;
}


.education-platform-list {
    margin-top: 27px;
}


.education-platform-list div {
    display: flex;

    align-items: center;

    gap: 12px;

    padding: 11px 0;

    border-bottom:
        1px solid #edf1f6;
}


.education-platform-list span {
    width: 22px;
    height: 22px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    color: #ffffff;

    background: var(--edu-blue);

    font-size: 9px;
}


.education-platform-list strong {
    color: var(--edu-navy);

    font-size: 11px;
}


/* =========================================================
   EXPERIENCE
========================================================= */

.education-experience {
    background:
        linear-gradient(
            135deg,
            #f3f7fd,
            #ffffff
        );
}


.education-experience-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(0, .95fr);

    gap: 80px;

    align-items: center;
}


.education-experience-content h2 {
    margin: 15px 0 20px;

    color: var(--edu-navy);

    font-size: clamp(34px, 4vw, 52px);

    line-height: 1.08;

    letter-spacing: -1.7px;
}


.education-experience-content h2 span {
    display: block;

    color: var(--edu-blue);
}


.education-experience-content > p {
    max-width: 620px;

    color: var(--edu-muted);

    font-size: 14px;

    line-height: 1.8;
}


.education-experience-points {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 11px;

    margin-top: 28px;
}


.education-experience-points div {
    padding: 16px;

    border:
        1px solid var(--edu-border);

    border-radius: 12px;

    background: #ffffff;
}


.education-experience-points strong {
    display: block;

    color: var(--edu-navy);

    font-size: 11px;
}


.education-experience-points span {
    display: block;

    margin-top: 6px;

    color: var(--edu-muted);

    font-size: 9px;

    line-height: 1.5;
}


.education-experience-stat {
    display: flex;

    align-items: center;

    justify-content: center;
}


.education-stat-card {
    position: relative;

    width: 370px;
    height: 370px;

    max-width: 100%;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    border-radius: 50%;

    color: #ffffff;

    background:
        radial-gradient(
            circle at 40% 30%,
            #1b78e1,
            #06183f 68%
        );

    box-shadow:
        0 25px 70px rgba(6,24,63,.20);
}


.education-stat-card::before,
.education-stat-card::after {
    content: "";

    position: absolute;

    border-radius: 50%;

    border:
        1px solid rgba(18,104,211,.25);
}


.education-stat-card::before {
    width: 420px;
    height: 420px;
}


.education-stat-card::after {
    width: 470px;
    height: 470px;

    border-color:
        rgba(255,159,28,.13);

    border-style: dashed;
}


.education-stat-card span {
    position: relative;

    z-index: 2;

    color: #82bcff;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;
}


.education-stat-card strong {
    position: relative;

    z-index: 2;

    margin-top: 17px;

    font-size: 29px;

    line-height: 1.1;

    letter-spacing: -1px;
}


.education-stat-card small {
    position: relative;

    z-index: 2;

    margin-top: 17px;

    color: #a8c1df;

    font-size: 9px;
}


/* =========================================================
   INTELLIGENCE
========================================================= */

.education-intelligence {
    background: #f7f9fc;
}


.education-intelligence-grid {
    display: grid;

    grid-template-columns:
        minmax(0, .9fr)
        minmax(0, 1.1fr);

    gap: 70px;

    align-items: center;
}


.education-intelligence-content h2 {
    margin: 15px 0 18px;

    color: var(--edu-navy);

    font-size: clamp(34px, 4vw, 52px);

    line-height: 1.08;

    letter-spacing: -1.7px;
}


.education-intelligence-content h2 span {
    display: block;

    color: var(--edu-blue);
}


.education-intelligence-content > p {
    color: var(--edu-muted);

    font-size: 14px;

    line-height: 1.8;
}


.education-intelligence-points {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 10px;

    margin-top: 27px;
}


.education-intelligence-points div {
    padding: 15px;

    border:
        1px solid var(--edu-border);

    border-radius: 11px;

    background: #ffffff;
}


.education-intelligence-points strong {
    display: block;

    color: var(--edu-navy);

    font-size: 11px;
}


.education-intelligence-points span {
    display: block;

    margin-top: 6px;

    color: var(--edu-muted);

    font-size: 9px;

    line-height: 1.5;
}


.education-dashboard-frame {
    position: relative;

    overflow: hidden;

    border-radius: 20px;

    box-shadow:
        0 25px 65px rgba(6,24,63,.13);
}


.education-dashboard-frame::after {
    content: "";

    position: absolute;

    inset: 0;

    border:
        1px solid rgba(18,104,211,.13);

    border-radius: inherit;

    pointer-events: none;
}


.education-dashboard-frame img {
    display: block;

    width: 100%;

    height: auto;

    transition:
        transform .7s cubic-bezier(.2,.7,.2,1);
}


.education-dashboard-frame:hover img {
    transform: scale(1.025);
}


/* =========================================================
   AUTOMATION
========================================================= */

.education-automation {
    background: #ffffff;
}


.education-automation-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 16px;
}


.education-automation-card {
    min-height: 250px;

    padding: 25px;

    border:
        1px solid var(--edu-border);

    border-radius: 16px;

    background: #ffffff;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}


.education-automation-card:hover {
    transform: translateY(-7px);

    border-color:
        rgba(18,104,211,.22);

    box-shadow:
        0 18px 45px rgba(6,24,63,.08);
}


.education-automation-card > span {
    color: var(--edu-orange);

    font-size: 9px;

    font-weight: 800;
}


.education-automation-card h3 {
    margin: 27px 0 12px;

    color: var(--edu-navy);

    font-size: 18px;

    line-height: 1.35;
}


.education-automation-card p {
    margin: 0;

    color: var(--edu-muted);

    font-size: 11px;

    line-height: 1.75;
}


/* =========================================================
   SECURITY
========================================================= */

.education-security {
    background:
        linear-gradient(
            135deg,
            #f1f6fd,
            #ffffff
        );
}


.education-security-grid {
    display: grid;

    grid-template-columns:
        minmax(0, .9fr)
        minmax(0, 1.1fr);

    gap: 70px;

    align-items: center;
}


.education-security-grid h2 {
    margin: 15px 0 18px;

    color: var(--edu-navy);

    font-size: clamp(34px, 4vw, 52px);

    line-height: 1.08;

    letter-spacing: -1.7px;
}


.education-security-grid h2 span {
    color: var(--edu-blue);
}


.education-security-grid > div > p {
    max-width: 550px;

    color: var(--edu-muted);

    font-size: 14px;

    line-height: 1.8;
}


.education-security-points {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 10px;
}


.education-security-points div {
    display: flex;

    align-items: center;

    gap: 11px;

    padding: 15px;

    border:
        1px solid var(--edu-border);

    border-radius: 11px;

    background: #ffffff;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.education-security-points div:hover {
    transform: translateY(-3px);

    box-shadow:
        0 12px 25px rgba(6,24,63,.07);
}


.education-security-points span {
    width: 25px;
    height: 25px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    color: #ffffff;

    background: var(--edu-blue);

    font-size: 7px;

    font-weight: 800;
}


.education-security-points strong {
    color: var(--edu-navy);

    font-size: 10px;
}


/* =========================================================
   WHY ARPIVA
========================================================= */

.education-why {
    padding: 110px 0;

    background:
        linear-gradient(
            135deg,
            #03122f,
            #06183f 60%,
            #09285d
        );
}


.education-why-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 16px;
}


.education-why-card {
    min-height: 205px;

    padding: 25px;

    border:
        1px solid rgba(255,255,255,.08);

    border-radius: 15px;

    background:
        rgba(255,255,255,.045);

    transition:
        transform .35s ease,
        background .35s ease,
        border-color .35s ease;
}


.education-why-card:hover {
    transform: translateY(-7px);

    background:
        rgba(255,255,255,.075);

    border-color:
        rgba(62,155,255,.35);
}


.education-why-card > span {
    color: var(--edu-orange);

    font-size: 9px;

    font-weight: 800;
}


.education-why-card h3 {
    margin: 24px 0 10px;

    color: #ffffff;

    font-size: 18px;
}


.education-why-card p {
    margin: 0;

    color: #9db1d0;

    font-size: 10px;

    line-height: 1.7;
}


/* =========================================================
   FINAL CTA
========================================================= */

.education-final-cta {
    position: relative;

    padding: 115px 0;

    overflow: hidden;

    text-align: center;

    background:
        linear-gradient(
            135deg,
            #03122f,
            #06183f
        );
}


.education-final-glow {
    position: absolute;

    width: 520px;
    height: 520px;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%,-50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(18,104,211,.23),
            transparent 65%
        );

    pointer-events: none;
}


.education-final-content {
    position: relative;

    z-index: 2;

    max-width: 760px;

    margin: auto;
}


.education-final-content h2 {
    margin: 15px 0 18px;

    color: #ffffff;

    font-size: clamp(38px, 5vw, 58px);

    line-height: 1.05;

    letter-spacing: -2px;
}


.education-final-content h2 span {
    display: block;

    color: #6db0ff;
}


.education-final-content > p {
    max-width: 650px;

    margin: 0 auto 30px;

    color: #a9bdd9;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   REVEAL ANIMATION
========================================================= */

.education-reveal {
    opacity: 0;

    transform:
        translateY(30px);

    transition:
        opacity .75s ease,
        transform .75s cubic-bezier(.2,.7,.2,1);
}


.education-reveal.education-visible {
    opacity: 1;

    transform:
        translateY(0);
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1050px) {

    .education-challenge-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .education-solutions-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .education-automation-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .education-why-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 767px) {

    .arpiva-education-page .container {
        width: min(92%, 600px);
    }


    .education-hero {

        height: 680px;
        min-height: 680px;

        align-items: flex-start;

        padding:
            80px 0 55px;

        background-position:
            center,
            62% center;
    }


    .education-hero-content {
        padding-top: 5px;
    }


    .education-hero h1 {
        font-size: 44px;

        letter-spacing: -2px;
    }


    .education-hero-content > p {
        font-size: 13px;

        line-height: 1.65;
    }


    .education-hero-actions {
        flex-direction: column;

        align-items: stretch;
    }


    .education-primary-button,
    .education-secondary-button {
        width: 100%;
    }


    .education-hero-trust {
        gap: 12px;
    }


    .education-scroll-indicator {
        display: none;
    }


    .education-intro,
    .education-solutions,
    .education-platform,
    .education-experience,
    .education-intelligence,
    .education-automation,
    .education-security,
    .education-why {
        padding:
            80px 0;
    }


    .education-section-heading {
        margin-bottom: 45px;
    }


    .education-section-heading h2 {
        font-size: 34px;

        letter-spacing: -1px;
    }


    .education-intro-grid,
    .education-platform-grid,
    .education-experience-grid,
    .education-intelligence-grid,
    .education-security-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    .education-intro-visual {
        min-height: 390px;
    }


    .education-orbit {
        transform:
            scale(.78);
    }


    .education-intro-points {
        grid-template-columns: 1fr;
    }


    .education-challenge-grid,
    .education-solutions-grid,
    .education-automation-grid,
    .education-why-grid {
        grid-template-columns: 1fr;
    }


    .education-challenge-card {
        min-height: 250px;
    }


    .education-experience-points,
    .education-intelligence-points,
    .education-security-points {
        grid-template-columns: 1fr;
    }


    .education-stat-card {
        width: 300px;
        height: 300px;
    }


    .education-stat-card::before {
        width: 340px;
        height: 340px;
    }


    .education-stat-card::after {
        width: 385px;
        height: 385px;
    }


    .education-final-cta {
        padding:
            90px 0;
    }


    .education-final-content h2 {
        font-size: 38px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .education-hero,
    .education-hero-glow,
    .education-orbit-ring,
    .education-eyebrow::before,
    .education-scroll-indicator i {
        animation: none !important;
    }

    .education-reveal {
        opacity: 1 !important;

        transform: none !important;

        transition: none !important;
    }

    .education-challenge-card,
    .education-solution-card,
    .education-automation-card,
    .education-why-card {
        transition: none !important;
    }

}