/* ===================================================================
   EduMarket.ae stylesheet
   =================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --blue-700: #FFE8D4;
    --blue-600: #FFF5ED;
    --blue-50: #fff8f3;
    --blue-500: #f47b20;
    --blue-400: #e65a1f;
    --blue-100: #e8f5fb;
    --orange-600: #e65a1f;
    --orange-500: #f47b20;
    --orange-400: #fb9332;
    --black: #222;
    --ink-700: #33424f;
    --ink-500: #363a3d;
    --ink-300: #888888;
    --line: #dfe7ec;
    --bg-grey: #fbf8f6;
    --bg-pink: #fdf4f1;
    --white: #ffffff;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-pill: 999px;
    --shadow-sm: 0 2px 10px rgba(15, 40, 60, .06);
    --shadow-md: 0 10px 30px rgba(15, 40, 60, .10);
    --container: 1240px;
    --header-h: 84px;

    /* Font */
    --primary-font: "Raleway", Arial, sans-serif;
    --secondary-font: "Raleway", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--primary-font);
    color: var(--black);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img,
svg {
    display: block;
}

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

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
p {
    margin: 0;
}

button {
    font-family: inherit;
    cursor: pointer;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* -------- icons -------- */
.icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.icon-sm {
    width: 14px;
    height: 14px;
}

.icon-star {
    width: 16px;
    height: 16px;
    color: #ffb423;
}

.icon-quote {
    width: 34px;
    height: 34px;
    color: var(--blue-400);
    opacity: .5;
}

/* -------- placeholder image blocks -------- */
.ph-img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border-radius: var(--radius-md);
    color: #8295a3;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .01em;
    text-align: center;
    padding: 10px;
    line-height: 1.3;
}

.ph-img::before {
    content: attr(data-label);
}

.ph-logo-main {
    width: 300px;
    height: auto;
    border-radius: 10px;
    font-size: .7rem;
}

.ph-logo-sm {
    width: 170px;
    height: auto;
    padding: 0;
}

.ph-icon-round {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: .65rem;
    min-height: 0;
}

.ph-icon-sm {
    width: 30px;
    height: 30px;
    font-size: .55rem;
}

.ph-icon-store {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    font-size: .5rem;
    min-height: 0;
    padding: 0;
}

.ph-logo {
    width: 120px;
    height: auto;
    border-radius: 10px;
    font-size: .68rem;
    min-height: 0;
}

.ph-award {
    width: 100px;
    height: 100px;
    font-size: .62rem;
    min-height: 0;
    margin: 0 auto 16px;
}

.ph-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    font-size: .55rem;
    min-height: 0;
    margin: 0 auto 12px;
}

.ph-license-logo {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    font-size: .55rem;
    min-height: 0;
    flex-shrink: 0;
}

/* ===================================================================
   HEADER / NAV
   =================================================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: var(--white);
    box-shadow: 0 1px 0 var(--line);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    height: var(--header-h);
}

.logo {
    flex-shrink: 0;
}

.main-nav {
    flex: 1;
    display: none;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    padding: 10px 14px;
    font-size: .95rem;
    font-weight: 600;
    color: var(--ink-700);
    border-radius: 8px;
    white-space: nowrap;
}

.nav-link:hover {
    background: var(--blue-50);
    color: var(--orange-600);
}

.has-dropdown {
    position: relative;
}

.has-dropdown .icon-sm {
    transition: transform .2s;
    transform: rotate(90deg);
}

.has-dropdown.open .icon-sm {
    transform: rotate(-90deg);
}

.dropdown-panel {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--line);
    padding: 18px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .18s, transform .18s, visibility .18s;
    z-index: 50;
}

.has-dropdown.open .dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    width: 520px;
}

.dropdown-panel-sm {
    width: 220px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: .85rem;
    font-weight: 600;
    color: var(--ink-700);
    white-space: nowrap;
}

.dropdown-item:hover {
    background: var(--blue-50);
    color: var(--orange-600);
}

.dropdown-item .icon {
    color: var(--blue-500);
    width: 20px;
    height: 20px;
}

.dropdown-item-list {
    font-weight: 500;
}

.call-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
    color: var(--white);
    padding: 8px 18px 8px 8px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: .85rem;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(230, 90, 31, .3);
}

.call-btn .ph-icon-round {
    background: rgba(255, 255, 255, .25);
    border: none;
    padding: 2px;
    color: #fff;
}

.call-btn-text {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--secondary-font);
    font-weight: 500;
}

.call-btn-text .icon {
    width: 16px;
    height: 16px;
}

.call-btn-mobile {
    display: flex;
    justify-content: center;
    margin: 18px;
}

.hamburger {
    background: none;
    border: none;
    color: var(--black);
    padding: 8px;
    flex-shrink: 0;
}

/* mobile nav drawer */
.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: min(340px, 86vw);
    background: var(--white);
    z-index: 300;
    transform: translateX(100%);
    transition: transform .28s ease;
    overflow-y: auto;
    box-shadow: -8px 0 30px rgba(0, 0, 0, .15);
}

.mobile-nav.open {
    transform: translateX(0);
}

.mobile-nav-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px;
    border-bottom: 1px solid var(--line);
}

.mobile-nav-list {
    padding: 8px 0;
}

.mobile-nav-list>li>a {
    display: block;
    padding: 16px 18px;
    font-weight: 600;
    border-bottom: 1px solid var(--line);
    color: var(--ink-700);
}

.mobile-accordion-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    padding: 16px 18px;
    font-weight: 600;
    font-size: 1rem;
    color: var(--ink-700);
    border-bottom: 1px solid var(--line);
}

.mobile-accordion-btn .icon-sm {
    transition: transform .2s;
    transform: rotate(90deg);
}

.mobile-accordion.open .mobile-accordion-btn .icon-sm {
    transform: rotate(-90deg);
}

.mobile-accordion-panel {
    max-height: 0;
    overflow: hidden;
    background: var(--bg-grey);
    transition: max-height .25s ease;
}

.mobile-accordion.open .mobile-accordion-panel {
    max-height: 600px;
}

.mobile-accordion-panel a {
    display: block;
    padding: 12px 18px 12px 36px;
    font-size: .92rem;
    color: var(--ink-700);
    border-bottom: 1px solid var(--line);
}

.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 20, 30, .45);
    z-index: 250;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s, visibility .25s;
}

.mobile-nav-overlay.open {
    opacity: 1;
    visibility: visible;
}

@media (min-width:1024px) {
    .main-nav {
        display: block;
    }

    .hamburger {
        display: none;
    }

    .mobile-nav,
    .mobile-nav-overlay {
        display: none !important;
    }
}

/* ===================================================================
   BUTTONS / GENERIC
   =================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: .95rem;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
    color: var(--white);
    box-shadow: 0 8px 20px rgba(230, 90, 31, .28);
    font-family: var(--secondary-font);
    font-weight: 500;
}

.btn-primary:hover {
    filter: brightness(1.05);
}

.btn-outline {
    background: var(--white);
    color: var(--black);
    border: 2px solid var(--blue-500);
}

.btn-outline:hover {
    background: var(--blue-50);
}

.btn-sm {
    padding: 9px 18px;
    font-size: .85rem;
}

.section {
    padding: 60px 0;
}

#process.section {
    padding: 0px 0 70px;
}

.section-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--black);
    line-height: 1.25;
    margin-bottom: 14px;
}

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

.section-lead {
    color: var(--ink-500);
    font-size: 1.02rem;
    max-width: 760px;
    line-height: 1.6;
    margin-bottom: 36px;
}

.section-lead.center {
    margin: 0 auto 36px;
    text-align: center;
}

.text-link {
    color: var(--blue-500);
    font-weight: 700;
    text-decoration: underline;
}

.card-link {
    color: var(--blue-500);
    font-weight: 700;
    text-decoration: underline;
    font-size: .9rem;
    display: inline-block;
    margin: 6px 0 14px;
}

/* ===================================================================
   HERO
   =================================================================== */
.hero {
    background: linear-gradient(180deg, var(--blue-50) 0%, #fff 100%);
    padding: 48px 0 36px;
    position: relative;
    overflow: hidden;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: center;
    position: relative;
}

.hero-copy {
    min-width: 0;
    z-index: 1;
}

.hero-copy h1 {
    font-size: clamp(2rem, 5vw, 4.1rem);
    font-weight: 800;
    color: var(--black);
    line-height: 1.15;
    max-width: 560px;
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--ink-500);
    margin-top: 14px;
    max-width: 480px;
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
    flex-wrap: wrap;
    font-size: .92rem;
    color: var(--ink-700);
}

.rating-stars {
    display: flex;
    gap: 2px;
}

.rating-stars-sm .icon-star {
    width: 12px;
    height: 12px;
}

.hero-cta {
    margin-top: 26px;
}

/* Right Hero Image */
.hero-visual {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-illustration {
    width: 100%;
    max-width: 620px;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    border-radius: 24px;
}

/* Character Boxes */
.hero-quicklinks {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 22px 12px;
    margin-top: 30px;
}

.quicklink {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 70px;
    padding: 12px 10px 11px 74px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    color: var(--ink-700);
    text-decoration: none;
    box-shadow: var(--shadow-sm);
    overflow: visible;
    transition: all .25s ease;
}

.quicklink:hover {
    transform: translateY(-3px);
    border-color: var(--orange-600);
    color: var(--orange-600);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.11);
}

.quicklink-img {
    position: absolute;
    left: 8px;
    top: -15px;
    width: 60px;
    height: 98px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
}

.quicklink-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .25s ease;
}

.quicklink:hover .quicklink-img img {
    transform: translateY(-4px) scale(1.06);
}

.quicklink-content {
    min-width: 0;
    padding-right: 6px;
}

.quicklink-content span {
    display: block;
    font-size: .76rem;
    line-height: 1.22;
    font-weight: 800;
    color: inherit;
}

.quicklink-content small {
    display: block;
    margin-top: 2px;
    font-size: .62rem;
    line-height: 1.25;
    font-weight: 600;
    color: var(--ink-400);
}

.quicklink-arrow {
    margin-left: auto;
    width: 23px;
    height: 23px;
    flex: 0 0 23px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.08);
    color: var(--blue-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    line-height: 1;
    transition: all .25s ease;
}

.quicklink:hover .quicklink-arrow {
    background: var(--orange-600);
    color: #fff;
    transform: translateX(3px);
}

@media (min-width: 768px) {
    .hero-quicklinks {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hero-inner {
        grid-template-columns: minmax(0, 65%) minmax(0, 35%);
        gap: 24px;
    }

    .hero-visual {
        justify-content: flex-end;
    }

    .hero-illustration {
        width: 112%;
        max-width: 720px;
        margin-right: -45px;
    }

    .hero-quicklinks {
        grid-template-columns: repeat(3, 1fr);
        gap: 21px 10px;
        margin-top: 30px;
    }
}

@media (min-width: 1280px) {
    .hero-illustration {
        width: 118%;
        max-width: 780px;
        margin-right: -70px;
    }
}

@media (max-width: 575px) {
    .hero {
        padding: 36px 0 28px;
    }

    .hero-inner {
        gap: 22px;
    }

    .hero-quicklinks {
        gap: 21px;
        margin-top: 28px;
    }

    .quicklink {
        min-height: 72px;
        padding: 12px 10px 11px 76px;
        border-radius: 12px;
    }

    .quicklink-img {
        left: 9px;
        top: -14px;
        width: 61px;
        height: 76px;
    }

    .quicklink-content span {
        font-size: .82rem;
    }

    .quicklink-content small {
        font-size: .66rem;
    }

    .hero-illustration {
        max-width: 390px;
    }
}

/* ===================================================================
   METRO BANNER
   =================================================================== */
.metro-banner {
    background: var(--white);
    padding: 30px 0;
}

.metro-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    text-align: center;
}

.metro-img {
    max-width: 760px;
    /* aspect-ratio: 5/1; */
}

.metro-inner p {
    max-width: 760px;
    color: var(--ink-500);
    font-size: .92rem;
    line-height: 1.6;
}

/* ===================================================================
   TRUST STATS
   =================================================================== */
.trust-stats {
    background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
    padding: 26px 0;
}

.trust-stats-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.trust-stat {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: center;
    color: #fff;
}

.trust-stat .icon {
    color: var(--orange-400);
    width: 28px;
    height: 28px;
}

.trust-stat p {
    font-size: .95rem;
    color: var(--ink-700);
}

.trust-stat strong {
    color: var(--orange-400);
    font-size: 1.15rem;
}

@media (min-width:768px) {
    .trust-stats-inner {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===================================================================
   MIRA INTRO SECTION
   =================================================================== */
.miraapp-section {
    background: #fff;
}

.miraapp-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.miraapp-visual .ph-img {
    aspect-ratio: 1/1;
    max-width: 420px;
    margin: 0 auto;
}

.miraapp-copy h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--black);
    line-height: 1.3;
}

.brand-miraapp {
    color: var(--orange-600);
}

.miraapp-copy p {
    color: var(--ink-300);
    margin-top: 14px;
    line-height: 1.6;
}

.partner-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.partner-logos .ph-logo {
    width: 100px;
    height: auto;
    padding: 0;
}

.partner-count {
    font-size: .85rem;
    font-weight: 600;
    color: var(--ink-300);
    margin-top: 10px;
}

.store-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.store-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--black);
    color: #fff;
    padding: 8px 16px;
    border-radius: 10px;
    font-size: .72rem;
}

.store-badge strong {
    display: block;
    font-size: .95rem;
}

.store-badges-dark .store-badge {
    background: rgba(255, 255, 255, .12);
}

.miraapp-foot {
    font-size: .88rem;
    margin-top: 18px;
}

@media (min-width:900px) {
    .miraapp-inner {
        grid-template-columns: .5fr 1.15fr;
    }
}

/* ===================================================================
   AMBASSADOR QUOTE
   =================================================================== */
.ambassador-banner {
    background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
    padding: 48px 0;
}

.ambassador-inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    text-align: center;
}

.ambassador-img {
    width: 300px;
    height: auto;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    border-color: rgba(255, 255, 255, .4);
    color: #fff;
}

.ambassador-quote {
    color: var(--black);
    max-width: 680px;
}

.ambassador-quote p {
    font-size: 1.15rem;
    line-height: 1.6;
    font-style: italic;
    margin-top: 8px;
}

.ambassador-quote strong {
    display: block;
    margin-top: 16px;
    font-size: .95rem;
}

.ambassador-quote strong span {
    display: block;
    font-weight: 400;
    opacity: .8;
    font-size: .85rem;
}

@media (min-width:768px) {
    .ambassador-inner {
        flex-direction: row;
        text-align: left;
    }
}

/* ===================================================================
   AWARDS
   =================================================================== */
.awards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 36px;
}

.award-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform .2s, box-shadow .2s;
}

.award-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.award-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 8px;
}

.award-card p {
    font-size: .86rem;
    color: var(--ink-500);
    line-height: 1.55;
}

@media (min-width:640px) {
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width:1024px) {
    .awards-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* ===================================================================
   PARTNERS / PROVIDERS
   =================================================================== */
.partners-section {
    background: var(--bg-grey);
}

.provider-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 10px;
}

.provider-logo .ph-logo {
    width: 100%;
}

.provider-hide {
    display: none;
}

.provider-grid.show-all .provider-hide {
    display: block;
}

.see-more-btn {
    display: flex;
    margin: 30px auto 0;
}

@media (min-width:640px) {
    .provider-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width:1024px) {
    .provider-grid {
        grid-template-columns: repeat(8, 1fr);
    }
}

/* ===================================================================
   4 STEPS
   =================================================================== */
.steps-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.step-item {
    display: flex;
    gap: 18px;
    margin-top: 28px;
}

.step-num {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--blue-500);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
}

.step-item h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 4px;
}

.step-item p {
    color: var(--ink-500);
    font-size: .92rem;
    line-height: 1.55;
}

.steps-side-card {
    background: var(--blue-50);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
}

.steps-side-card .ph-img {
    max-width: 200px;
    margin: 0 auto 18px;
}

.steps-side-card h4 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 8px;
}

.steps-side-card p {
    color: var(--ink-500);
    font-size: .88rem;
}

@media (min-width:900px) {
    .steps-inner {
        grid-template-columns: 1.4fr .8fr;
    }
}

/* ===================================================================
   WHY CHOOSE US
   =================================================================== */
.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.why-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.why-card .ph-img {
    width: 180px;
    margin-bottom: 18px;
    justify-self: center;
    height: 200px;
    object-fit: contain;
}

.why-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 10px;
}

.why-card p {
    color: var(--ink-500);
    font-size: .9rem;
    line-height: 1.55;
    margin-bottom: 8px;
}

@media (min-width:900px) {
    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===================================================================
   QUOTE WIDGET
   =================================================================== */
.quote-widget-section {
    padding: 0;
    background: var(--blue-600);
}

.quote-widget {
    background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
}

.quote-widget h2 {
    color: #fff;
    font-size: clamp(1.3rem, 2.6vw, 1.7rem);
    margin-bottom: 22px;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 560px;
    margin: 0 auto;
}

.quote-form select {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    border: none;
    font-size: .95rem;
    color: var(--black);
}

.quote-form .btn {
    width: 100%;
    background: #fff;
    color: #222;
}

@media (min-width:600px) {
    .quote-form {
        flex-direction: row;
    }

    .quote-form select {
        flex: 1;
    }

    .quote-form .btn {
        width: auto;
        flex-shrink: 0;
        padding-left: 32px;
        padding-right: 32px;
    }
}

/* ===================================================================
   TESTIMONIALS
   =================================================================== */
.testimonials-section {
    background: var(--white);
}

.center-rating {
    justify-content: center;
    margin: 0 auto 36px;
}

.testimonial-carousel-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-carousel {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 6px 4px 16px;
    scrollbar-width: none;
}

.testimonial-carousel::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    background: var(--bg-grey);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 26px 22px;
    text-align: center;
    transition: all .2s ease-in-out;
}

.testimonial-card p {
    transition: all .2s ease-in-out;
}

.testimonial-card:hover p {
    color: var(--orange-600);
    transition: all .2s ease-in-out;
}

.testimonial-card:hover {
    border: 1px solid var(--orange-600);
}

.testimonial-card h3 {
    font-size: .98rem;
    font-weight: 800;
    color: var(--black);
    margin: 6px 0 6px;
}

.testimonial-card .rating-stars {
    justify-content: center;
    margin-bottom: 10px;
}

.testimonial-card p {
    font-size: .85rem;
    color: var(--ink-500);
    line-height: 1.6;
}

.carousel-btn {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.carousel-btn:hover {
    background: var(--blue-50);
    color: var(--orange-600);
}

/* ===================================================================
   MIRA GUIDANCE FEATURE
   =================================================================== */
.miraapp-exclusive {
    background: var(--blue-700);
    color: #fff;
}

.miraapp-exclusive-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    align-items: center;
}

.miraapp-exclusive .section-title,
.miraapp-exclusive-copy h3 {
    color: var(--black);
}

.miraapp-exclusive-copy h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin: 10px 0;
}

.miraapp-exclusive-copy p {
    color: var(--ink-500);
    line-height: 1.65;
    margin-bottom: 10px;
}

.check-list {
    margin: 18px 0;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: .95rem;
    color: var(--ink-500);
    line-height: 1.4;
}

.check-list .icon {
    color: var(--orange-400);
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    margin-top: 1px;
}

.miraapp-exclusive-visual .ph-img {
    aspect-ratio: 1/1;
    max-width: 420px;
    margin: 0 auto;
    background: rgba(255, 255, 255, .06);
    border-color: rgba(255, 255, 255, .25);
    color: #cfe1ee;
}

@media (min-width:900px) {
    .miraapp-exclusive-inner {
        grid-template-columns: 1.1fr .9fr;
    }
}

/* ===================================================================
   MIRA'S GUIDANCE
   =================================================================== */
.back-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
}

.back-visual .ph-img {
    /* aspect-ratio: 3/4; */
    max-width: 340px;
    margin: 0 auto;
}

.back-points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    margin: 26px 0;
}

.back-point h4 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 6px;
}

.back-point p {
    font-size: .9rem;
    color: var(--ink-500);
    line-height: 1.6;
}

.back-closer {
    font-size: .95rem;
    color: var(--ink-700);
    line-height: 1.65;
    font-weight: 600;
}

@media (min-width:640px) {
    .back-points {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width:1024px) {
    .back-inner {
        grid-template-columns: .6fr 1.4fr;
    }
}

/* ===================================================================
   PRESS RELEASES
   =================================================================== */
.press-section {
    background: var(--bg-pink);
}

.press-carousel {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 6px 4px 16px;
    scrollbar-width: none;
}

.press-carousel::-webkit-scrollbar {
    display: none;
}

.press-card {
    flex: 0 0 230px;
    scroll-snap-align: start;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.press-card .ph-img {
    /* aspect-ratio: 4/3; */
    border-radius: 0;
    border: none;
}

.social-row .ph-icon-sm {
    padding: 0;
}

.press-card p {
    font-size: .85rem;
    font-weight: 700;
    color: var(--black);
    padding: 14px 16px 4px;
    line-height: 1.4;
}

.press-source {
    display: block;
    font-size: .78rem;
    color: var(--blue-500);
    font-weight: 700;
    padding: 0 16px 16px;
}

.press-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 6px;
}

.press-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--line);
}

.press-dots span.active {
    background: var(--blue-500);
}

/* ===================================================================
   AS HEARD ON
   =================================================================== */
.heard-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.heard-grid .ph-logo {
    width: 100%;
}

@media (min-width:640px) {
    .heard-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width:1024px) {
    .heard-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

/* ===================================================================
   GUIDANCE TODAY
   =================================================================== */
.guidance-today-section {
    background: var(--blue-50);
}

.guidance-today-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.guidance-today-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 20px 10px;
    font-size: .82rem;
    font-weight: 700;
    color: var(--ink-700);
    text-align: center;
}

.guidance-today-item .icon {
    color: var(--blue-500);
    width: 26px;
    height: 26px;
}

.guidance-today-item:hover {
    border-color: var(--blue-400);
    background: var(--blue-50);
}

@media (min-width:640px) {
    .guidance-today-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (min-width:1024px) {
    .guidance-today-grid {
        grid-template-columns: repeat(7, 1fr);
    }
}

/* ===================================================================
   FOOTER
   =================================================================== */
.site-footer {
    background: var(--bg-grey);
    padding-top: 56px;
    color: var(--ink-700);
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 36px;
}

.footer-col h4 {
    font-size: .92rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: .03em;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: .88rem;
    color: var(--ink-500);
}

.footer-col ul li a:hover {
    color: var(--blue-600);
}

.footer-col-reach p {
    font-size: .85rem;
    color: var(--ink-500);
    line-height: 1.6;
    margin-bottom: 14px;
}

.footer-col-reach a {
    color: var(--blue-500);
}

.footer-google {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}

.footer-google span:not(.ph-img) {
    font-size: .85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-row {
    display: flex;
    gap: 10px;
}

@media (min-width:700px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width:1100px) {
    .footer-top {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-links-row {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    padding: 22px 24px;
    border-top: 1px solid var(--line);
    font-size: .85rem;
    justify-content: center;
}

.footer-links-row a {
    color: var(--ink-500);
}

.footer-links-row a:hover {
    color: var(--blue-600);
}

.footer-brand-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 24px;
    border-top: 1px solid var(--line);
}

.footer-metro-img {
    max-width: 900px;
    /* aspect-ratio: 6/1; */
}

.d-flex {
    display: flex;
}

.footer-note {
    border-top: 1px solid var(--line);
    padding: 24px;
    text-align: center;
}

.footer-note p {
    font-size: .8rem;
    color: var(--ink-300);
    line-height: 1.6;
    max-width: 820px;
    margin: 0 auto 10px;
}

.footer-bottom-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 14px;
}

.mira-holdings-link {
    font-size: .85rem;
    font-weight: 700;
    color: var(--ink-700);
    text-align: center;
}

.mira-holdings-link span {
    display: block;
    font-weight: 400;
    color: var(--ink-300);
    font-size: .75rem;
}

@media (min-width:700px) {
    .footer-bottom-row {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-licensing {
    border-top: 1px solid var(--line);
    padding: 30px 24px 50px;
}

.footer-licensing h4 {
    font-size: .95rem;
    font-weight: 800;
    color: var(--black);
    text-align: center;
    margin-bottom: 26px;
    text-transform: uppercase;
    letter-spacing: .03em;
}

.license-block {
    display: flex;
    gap: 16px;
    margin-bottom: 26px;
    align-items: flex-start;
    width: 100%;
    max-width: 400px;
}

.license-block h5 {
    font-size: .85rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 8px;
}

.license-block p {
    font-size: .78rem;
    color: var(--ink-300);
    line-height: 1.6;
    margin-bottom: 6px;
}

.license-block p a {
    color: var(--blue-500);
}

/* ===================================================================
   FLOATING CALL BUTTON
   =================================================================== */
.float-call-btn {
    position: fixed;
    bottom: 22px;
    right: 22px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 26px rgba(230, 90, 31, .4);
    z-index: 150;
    animation: pulse 2.4s infinite;
}

.float-call-btn .icon {
    width: 24px;
    height: 24px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 10px 26px rgba(230, 90, 31, .4), 0 0 0 0 rgba(230, 90, 31, .4);
    }

    70% {
        box-shadow: 0 10px 26px rgba(230, 90, 31, .4), 0 0 0 14px rgba(230, 90, 31, 0);
    }

    100% {
        box-shadow: 0 10px 26px rgba(230, 90, 31, .4), 0 0 0 0 rgba(230, 90, 31, 0);
    }
}

@media (min-width:1024px) {
    .float-call-btn {
        display: none;
    }
}

/* ===================================================================
   REDUCED MOTION
   =================================================================== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
        scroll-behavior: auto !important;
    }
}

/* ===================================================================
   FOCUS VISIBILITY
   =================================================================== */
a:focus-visible,
button:focus-visible,
select:focus-visible {
    outline: 3px solid var(--blue-400);
    outline-offset: 2px;
}


/* ===== HEADER – sticky show/hide ===== */
.site-header {
    position: sticky;
    top: 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.site-header.hide-header {
    transform: translateY(-100%);
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    /* above any floating call button */
    right: 20px;
    z-index: 998;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #f5f5f5;
}

.back-to-top svg {
    position: absolute;
}

.back-to-top .progress-bg {
    fill: none;
    stroke: #eee;
    stroke-width: 3;
}

.back-to-top .progress-ring {
    fill: none;
    stroke: var(--color-primary, var(--orange-600));
    stroke-width: 3;
    stroke-dasharray: 119.38;
    /* circumference 2π × 19 ≈ 119.38 */
    stroke-dashoffset: 119.38;
    transform: rotate(-90deg);
    transform-origin: center;
    transition: stroke-dashoffset 0.15s linear;
}

.back-to-top .arrow-icon {
    color: var(--color-primary, var(--orange-600));
    width: 18px;
    height: 18px;
    z-index: 1;
}

@media screen and (max-width: 768px) {
    .header-inner .call-btn {
        display: none;
    }

    .sm-d-flex-none {
        flex-direction: column;
    }

    .header-inner {
        justify-content: space-between;
        padding: 0 20px;
    }

    .ph-logo-main {
        width: 240px !important;
        padding: 0 !important;
    }
}

.start-mira-visual .hero-illustration {
    animation: animate-y 1s infinite alternate;
}

@keyframes animate-y {
    0% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(10px);
    }
}

/* ===================================================================
   EDUMARKET SHEET ADAPTATION ON ORIGINAL START DESIGN
   =================================================================== */

.book-nav-list {
    align-items: flex-end;
    gap: 2px;
}

.book-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 96px;
    min-height: 44px;
    padding: 9px 12px;
    border-radius: 8px 8px 4px 4px;
    background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
    color: var(--white) !important;
    font-family: var(--secondary-font);
    font-size: .74rem;
    font-weight: 800;
    line-height: 1.15;
    text-align: center;
    box-shadow: 0 10px 20px rgba(15, 40, 60, .12), inset -5px 0 0 rgba(0, 0, 0, .08);
    transform: rotate(-2deg);
    transition: transform .2s ease, box-shadow .2s ease;
}

.book-nav-list li:nth-child(even) .book-link,
.mobile-book-list li:nth-child(even) .book-link {
    transform: rotate(2deg);
    background: linear-gradient(135deg, #33424f, #222);
}

.book-link:hover {
    transform: translateY(-5px) rotate(0deg);
    color: var(--white);
    box-shadow: 0 16px 28px rgba(15, 40, 60, .18), inset -5px 0 0 rgba(0, 0, 0, .08);
}

.call-icon-fallback {
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, .18);
    color: var(--white);
    display: inline-grid;
    place-items: center;
    flex: 0 0 34px;
    padding: 4px;
    overflow: hidden;
}

.call-favicon-img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: contain;
}

.call-btn small {
    font-size: .7rem;
    font-weight: 700;
}

.mobile-book-list .book-link {
    width: calc(100% - 28px);
    margin: 8px 14px;
    min-height: 54px;
}

.start-design-hero .hero-inner {
    align-items: center;
}

.start-hero-copy {
    max-width: 850px;
    margin: 14px 0 0;
    color: var(--ink-500);
    font-size: 1rem;
    line-height: 1.7;
}

.start-hero-rating {
    margin-top: 18px;
}

.start-mira-visual {
    flex-direction: column;
    gap: 12px;
}

.start-mira-call {
    margin-top: 0;
    text-align: center;
}

.start-mira-call small {
    color: rgba(255, 255, 255, .9);
    font-weight: 700;
}

.hero-trust-in-section {
    display: grid;
    gap: 14px;
    margin-top: 26px;
    padding-bottom: 18px;
}

.hero-trust-in-section .trust-stat {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.hero-trust-in-section .trust-stat p {
    font-size: .88rem;
    line-height: 1.55;
}

.animated-stats small {
    display: block;
    margin-top: 2px;
    color: var(--ink-300);
    font-size: .72rem;
}

.mira-whatsapp-widget {
    position: fixed;
    right: 18px;
    bottom: 20px;
    z-index: 1002;
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.mira-whatsapp-link {
    position: relative;
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    border: 4px solid #25d366;
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 18px 38px rgba(15, 40, 60, .18);
    animation: miraPulse 2.4s ease-in-out infinite;
}

.mira-whatsapp-link img {
    width: 58px;
    height: 58px;
    object-fit: cover;
    border-radius: 50%;
}

.mira-whatsapp-mark {
    position: absolute;
    right: -3px;
    bottom: -2px;
    width: 25px;
    height: 25px;
    display: grid;
    place-items: center;
    border: 2px solid var(--white);
    border-radius: 50%;
    background: #25d366;
    color: var(--white);
    font-size: .7rem;
    font-weight: 600;
}

.mira-unread-badge {
    position: absolute;
    top: -7px;
    right: -2px;
    min-width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    border: 2px solid var(--white);
    border-radius: 999px;
    background: #ee2d2d;
    color: var(--white);
    font-size: .72rem;
    font-weight: 700;
    padding-bottom: 5px;
}

.mira-whatsapp-bubble {
    position: relative;
    width: min(290px, calc(100vw - 120px));
    padding: 14px 36px 14px 16px;
    border-radius: 18px 18px 4px 18px;
    background: var(--white);
    color: var(--ink-700);
    box-shadow: 0 18px 42px rgba(15, 40, 60, .15);
}

.mira-whatsapp-bubble p {
    margin: 0;
    font-size: .88rem;
    font-weight: 800;
    line-height: 1.45;
}

.mira-whatsapp-bubble button {
    position: absolute;
    top: 7px;
    right: 9px;
    width: 22px;
    height: 22px;
    border: 0;
    border-radius: 50%;
    background: var(--blue-50);
}

.mira-whatsapp-bubble.is-hidden {
    display: none;
}

.provider-placeholder-logo {
    display: inline-grid;
    place-items: center;
    min-width: 118px;
    min-height: 58px;
    border: 1px dashed rgba(230, 90, 31, .35);
    border-radius: 14px;
    color: var(--orange-600);
    font-size: .76rem;
    font-weight: 800;
    text-align: center;
}

.four-card-grid {
    margin-top: 30px;
}

.four-card-grid .why-card .ph-img {
    width: 92px;
    height: 102px;
}

.cta-under-grid {
    max-width: 840px;
    margin: 32px auto 0;
}

.cta-under-grid p {
    margin-bottom: 18px;
    color: var(--ink-500);
    line-height: 1.65;
}

.form-split {
    display: grid;
    gap: 28px;
    align-items: start;
}

.guidance-form {
    display: grid;
    gap: 14px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.form-row {
    display: grid;
    gap: 14px;
}

.guidance-form label {
    display: grid;
    gap: 7px;
    color: var(--ink-700);
    font-size: .86rem;
    font-weight: 800;
}

.guidance-form input,
.guidance-form select,
.guidance-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
    color: var(--black);
    font: inherit;
    outline: none;
}

.guidance-form input,
.guidance-form select {
    min-height: 46px;
    padding: 0 12px;
}

.guidance-form textarea {
    padding: 12px;
    resize: vertical;
}

.guidance-form input:focus,
.guidance-form select:focus,
.guidance-form textarea:focus {
    border-color: var(--orange-500);
    box-shadow: 0 0 0 4px rgba(244, 123, 32, .12);
}

.consent-row {
    grid-template-columns: auto 1fr !important;
    align-items: start;
}

.consent-row input {
    width: 18px;
    min-height: 18px;
    margin-top: 2px;
}

.em-error {
    min-height: 16px;
    color: #c52d2d;
    font-size: .76rem;
    font-weight: 800;
}

.form-success {
    padding: 13px 15px;
    border-radius: 12px;
    background: var(--blue-50);
    color: var(--orange-600);
    font-weight: 600;
}

.hp-field {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.testimonial-initial {
    width: 54px;
    height: 54px;
    margin: 0 auto 10px;
    border-radius: 50%;
    background: var(--blue-50);
    color: var(--orange-600);
    font-size: 1.2rem;
    font-weight: 900;
}

.story-quote {
    margin: 14px 0 18px;
    padding: 16px;
    border-left: 4px solid var(--orange-500);
    border-radius: 12px;
    background: var(--blue-50);
    color: var(--black);
    font-weight: 800;
}

.help-grid-start {
    grid-template-columns: 1fr;
}

.help-grid-start .award-card .icon {
    color: var(--orange-600);
    margin-bottom: 12px;
}

.detailed-guidance-grid {
    display: grid;
    gap: 18px;
    margin-top: 34px;
}

.detailed-guidance-card {
    display: grid;
    justify-items: center;
    gap: 12px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.detailed-guidance-card .ph-img {
    width: 138px;
    height: 146px;
    object-fit: contain;
}

.detailed-guidance-card h3 {
    font-size: 1rem;
    font-weight: 800;
}

.detailed-guidance-card p {
    color: var(--ink-500);
    font-size: .88rem;
    line-height: 1.55;
}

.simple-social-row a {
    width: 30px;
    height: 30px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background: var(--white);
    color: var(--orange-600);
    font-size: .7rem;
    font-weight: 900;
    text-transform: uppercase;
}

.footer-brand-row p,
.footer-note p {
    color: var(--ink-500);
    line-height: 1.6;
}

@media (min-width: 640px) {

    .hero-trust-in-section,
    .form-row,
    .detailed-guidance-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .form-split {
        grid-template-columns: .8fr 1.2fr;
    }

    .four-card-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .help-grid-start {
        grid-template-columns: repeat(4, 1fr);
    }

    .detailed-guidance-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .hero-trust-in-section {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1280px) {
    .detailed-guidance-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .mira-whatsapp-widget {
        right: 12px;
        bottom: 14px;
    }

    .mira-whatsapp-link {
        width: 62px;
        height: 62px;
    }

    .mira-whatsapp-link img {
        width: 50px;
        height: 50px;
    }

    .mira-whatsapp-bubble {
        display: none;
    }
}

@keyframes miraPulse {

    0%,
    100% {
        box-shadow: 0 18px 38px rgba(15, 40, 60, .18), 0 0 0 0 rgba(37, 211, 102, .34);
    }

    50% {
        box-shadow: 0 18px 38px rgba(15, 40, 60, .18), 0 0 0 12px rgba(37, 211, 102, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .mira-whatsapp-link {
        animation: none !important;
    }
}

/* ===================================================================
   EDUMARKET START DESIGN SPACING + ALIGNMENT POLISH
   =================================================================== */

.start-design-hero {
    padding: 62px 0 38px;
}

.start-design-hero .hero-inner {
    gap: 34px;
}

.start-design-hero .hero-copy h1 {
    max-width: 720px;
    margin-bottom: 10px;
}

.start-design-hero .hero-sub {
    max-width: 700px;
    margin-top: 0;
}

.start-hero-copy {
    max-width: 760px;
}

.start-hero-rating {
    width: fit-content;
    max-width: 100%;
    padding: 10px 14px;
    border: 1px solid rgba(47, 146, 206, .16);
    border-radius: 999px;
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 10px 24px rgba(15, 40, 60, .06);
}

.start-design-hero .hero-quicklinks {
    align-items: stretch;
    gap: 24px 14px;
    margin-top: 34px;
}

.start-design-hero .quicklink {
    height: 100%;
    min-height: 84px;
    padding-top: 13px;
    padding-bottom: 13px;
}

.start-design-hero .quicklink-content span,
.start-design-hero .quicklink-content small {
    overflow-wrap: anywhere;
}

.start-design-hero .quicklink-content small {
    line-height: 1.35;
}

.start-mira-visual {
    align-self: stretch;
    justify-content: center;
}

.start-mira-visual .hero-illustration {
    width: min(100%, 500px);
    max-height: 520px;
    margin: 0;
    object-fit: contain;
}


.start-mira-call {
    width: min(100%, 345px);
    justify-content: center;
    padding-inline: 18px;
}

.hero-trust-in-section {
    align-items: stretch;
    margin-top: 30px;
}

.hero-trust-in-section .trust-stat {
    height: 100%;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 20px;
}

.hero-trust-in-section .trust-stat .icon {
    flex: 0 0 30px;
}

.animated-stats .trust-stats-inner,
.placeholder-logo-row,
.four-card-grid,
.help-grid-start,
.detailed-guidance-grid {
    align-items: stretch;
}

.animated-stats .trust-stat {
    min-height: 98px;
    padding: 16px 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .21);
}

.miraapp-section .miraapp-inner,
.steps-section .steps-inner,
.back-section .back-inner,
.form-split {
    gap: 46px;
}

.miraapp-copy,
.back-copy {
    max-width: 760px;
}

.miraapp-visual .ph-img,
.back-visual .ph-img {
    display: block;
}

.provider-placeholder-logo {
    min-height: 64px;
    padding: 11px 14px;
}

.steps-section .step-item {
    align-items: flex-start;
    margin-top: 24px;
}

.steps-side-card {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.steps-side-card .btn {
    align-self: center;
    margin-top: 18px;
}

.four-card-grid .why-card,
.help-grid-start .award-card,
.detailed-guidance-card,
.testimonial-card {
    height: 100%;
}

.four-card-grid .why-card {
    display: grid;
    align-content: start;
}

.four-card-grid .why-card .ph-img {
    margin-inline: auto;
}

.cta-under-grid {
    padding-inline: 14px;
}

.guidance-form-section .section-title,
.guidance-form-section .section-lead {
    max-width: 520px;
}

.guidance-form {
    gap: 16px;
    padding: 28px;
}

.guidance-form .btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
}

.testimonial-carousel-wrap,
.testimonial-carousel {
    align-items: stretch;
}

.testimonial-card {
    min-height: 300px;
}

.back-section .back-inner {
    align-items: center;
}

.back-copy p {
    line-height: 1.7;
}

.help-grid-start .award-card {
    display: grid;
    align-content: start;
}

.detailed-guidance-card {
    align-content: start;
}

.detailed-guidance-card .btn {
    align-self: end;
    justify-content: center;
    width: 100%;
}

.site-footer .footer-top {
    align-items: start;
}

.quote-widget {
    max-width: 980px;
    margin-inline: auto;
}

@media (min-width: 1024px) {
    .start-design-hero .hero-inner {
        grid-template-columns: minmax(0, 61%) minmax(320px, 39%);
        gap: 44px;
    }

    .start-design-hero .hero-quicklinks {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .start-mira-visual {
        padding-top: 8px;
    }
}

@media (min-width: 1200px) {
    .start-design-hero .hero-inner {
        gap: 54px;
    }

    .start-mira-visual .hero-illustration {
        width: min(100%, 530px);
    }
}

@media (max-width: 1023px) {
    .start-design-hero {
        padding-top: 46px;
    }

    .start-design-hero .hero-inner {
        gap: 30px;
    }

    .start-design-hero .hero-copy {
        text-align: center;
    }

    .start-design-hero .hero-copy h1,
    .start-design-hero .hero-sub,
    .start-hero-copy,
    .start-hero-rating {
        margin-inline: auto;
    }

    .start-mira-visual {
        align-self: auto;
    }

    .hero-trust-in-section {
        margin-top: 22px;
    }

    .miraapp-section .miraapp-inner,
    .steps-section .steps-inner,
    .back-section .back-inner,
    .form-split {
        gap: 34px;
    }
}

@media (max-width: 767px) {
    .start-hero-rating {
        justify-content: center;
        border-radius: 18px;
    }

    .start-design-hero .hero-quicklinks {
        gap: 22px;
    }

    .testimonial-carousel-wrap {
        gap: 8px;
    }

    .carousel-btn {
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 575px) {
    .start-design-hero {
        padding: 36px 0 28px;
    }

    .start-design-hero .hero-quicklinks {
        gap: 18px;
        margin-top: 26px;
    }

    .start-design-hero .quicklink {
        min-height: 78px;
    }

    .start-mira-call {
        width: 100%;
    }

    .hero-trust-in-section .trust-stat {
        padding: 16px;
    }

    .miraapp-section .miraapp-inner,
    .steps-section .steps-inner,
    .back-section .back-inner,
    .form-split {
        gap: 28px;
    }

    .guidance-form {
        padding: 18px;
    }

    .detailed-guidance-card {
        padding: 20px;
    }
}

/* ===================================================================
   EDUMARKET PREMIUM FRONT-END REFINEMENT
   =================================================================== */

body {
    background:
        linear-gradient(180deg, #fff3e9 0, #fff 520px),
        var(--white);
}

.section {
    position: relative;
}

.section:nth-of-type(odd):not(.start-design-hero) {
    background: #fff;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: var(--orange-600);
    font-family: var(--secondary-font);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.section-eyebrow::before {
    content: "";
    width: 26px;
    height: 2px;
    border-radius: 999px;
    background: var(--orange-500);
}

.book-nav-list {
    gap: 8px;
}

.book-link {
    min-width: 106px;
    font-weight: 600;
    transform-origin: center bottom;
}

.book-nav-list li .book-link:hover,
.book-nav-list li:nth-child(even) .book-link:hover,
.mobile-book-list li .book-link:hover,
.mobile-book-list li:nth-child(even) .book-link:hover {
    background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
    transform: translateY(-7px) rotate(0deg) scale(1.03);
    box-shadow: 0 18px 34px rgba(230, 90, 31, .24), inset -5px 0 0 rgba(0, 0, 0, .08);
}

.call-btn {
    gap: 10px;
    padding: 7px 20px 7px 7px;
    align-items: center;
}

.call-btn:hover,
.btn:hover,
.quicklink:hover,
.provider-icon-card:hover,
.why-card:hover,
.mira-help-card:hover,
.detailed-guidance-card:hover {
    transform: translateY(-4px);
}

.call-icon-fallback {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
    padding: 3px;
    background: var(--white);
}

.call-favicon-img {
    width: 38px;
    height: 38px;
}

.call-btn-text span {
    display: block;
    font-size: .76rem;
    line-height: 1.12;
}

.call-btn-text small,
.call-btn-mobile small {
    display: block;
    margin-top: 2px;
    color: var(--white);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: .01em;
}

.start-design-hero {
    overflow: visible;
    background: #fff3e9;
    padding-top: 70px;
}

.start-design-hero .hero-inner {
    align-items: center;
}

.hero-proof-line {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 18px;
    color: var(--ink-700);
    font-size: .93rem;
    font-weight: 600;
}

.hero-proof-stars {
    display: inline-flex;
    gap: 2px;
}

.hero-proof-name {
    color: var(--black);
    font-family: var(--secondary-font);
    font-weight: 700;
}

.hero-proof-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--orange-500);
}

.start-mira-visual {
    position: relative;
    min-height: 560px;
    isolation: isolate;
    align-self: stretch;
    justify-content: flex-start;
    padding-top: 0;
}

.start-mira-visual::before {
    content: "";
    position: absolute;
    inset: 42px 0 8px 28px;
    z-index: -2;
    border-radius: 44px;
    background-color: #ffe3ca;
    background-image: url("../img/university.png");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 90%;
    box-shadow: 0 32px 70px rgba(230, 90, 31, .16);
}

.start-mira-visual::after {
    content: "";
    position: absolute;
    right: 22px;
    bottom: 36px;
    z-index: -1;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .48);
    filter: blur(2px);
}

.start-mira-visual .hero-illustration {
    width: min(122%, 690px);
    max-width: none;
    max-height: none;
    margin-top: -74px;
    margin-left: -22px;
    padding: 0;
    object-fit: contain;
    filter: drop-shadow(0 24px 42px rgba(15, 40, 60, .18));
}

.hero-trust-in-section {
    margin-top: 12px;
}

.hero-trust-in-section .trust-stat,
.animated-stats .trust-stat {
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.hero-trust-in-section .trust-stat:hover,
.animated-stats .trust-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 36px rgba(15, 40, 60, .1);
}

.animated-stats .trust-stats-inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.animated-stats .trust-stat {
    justify-content: flex-start;
    color: var(--white);
}

.animated-stats .trust-stat p {
    color: var(--white);
}

.animated-stats .trust-stat strong {
    color: var(--white);
}

.miraapp-section {
    background: linear-gradient(180deg, #fff 0%, #fff8f3 100%);
}

.miraapp-visual .ph-img {
    width: min(100%, 500px);
    max-width: 500px;
    object-fit: contain;
    padding: 0;
}

.provider-icon-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 24px;
}

.provider-icon-card {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 70px;
    padding: 14px;
    border: 1px solid rgba(230, 90, 31, .18);
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    color: var(--ink-700);
    font-weight: 800;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    cursor: default;
}

.provider-icon-card .icon {
    width: 24px;
    height: 24px;
    color: var(--orange-600);
}

.provider-icon-card img {
    width: 100%;
}

.provider-icon-card:hover {
    border-color: var(--orange-500);
    box-shadow: 0 18px 36px rgba(230, 90, 31, .12);
    color: var(--orange-600);
}

.why-section {
    background: linear-gradient(180deg, #fff6ee 0%, #fff 100%);
}

.four-card-grid .why-card {
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.four-card-grid .why-card:hover {
    border-color: rgba(230, 90, 31, .35);
    box-shadow: 0 22px 44px rgba(15, 40, 60, .11);
}

.four-card-grid .why-card .ph-img {
    width: 148px;
    height: 160px;
    padding: 0;
    object-fit: contain;
}

.cta-under-grid {
    display: grid;
    justify-items: center;
    text-align: center;
}

.guidance-form-section {
    background: linear-gradient(180deg, #fff 0%, #fff3e9 100%);
}

.guidance-left-panel {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(244, 123, 32, .15), transparent 36%),
        var(--white);
    border: 1px solid rgba(230, 90, 31, .16);
    box-shadow: var(--shadow-sm);
}

.guidance-left-panel .section-lead {
    max-width: none;
}

.guidance-mini-cards {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

.guidance-mini-cards div {
    display: grid;
    gap: 4px;
    padding: 14px 16px;
    border-radius: 16px;
    background: #fff8f3;
    border: 1px solid rgba(230, 90, 31, .12);
}

.guidance-mini-cards strong {
    color: var(--black);
    font-weight: 800;
}

.guidance-mini-cards span {
    color: var(--ink-500);
    font-size: .88rem;
    line-height: 1.55;
}

.guidance-form {
    border-color: rgba(230, 90, 31, .18);
}

.testimonial-carousel-wrap {
    align-items: center;
}

.testimonial-carousel {
    cursor: grab;
    user-select: none;
    scroll-behavior: smooth;
}

.testimonial-carousel.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
}

.carousel-btn {
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(230, 90, 31, .18);
    background: var(--white);
    color: var(--orange-600);
    box-shadow: var(--shadow-sm);
    transition: transform .25s ease, background .25s ease, color .25s ease;
}

.carousel-btn:hover {
    transform: translateY(-3px) scale(1.06);
    background: var(--orange-600);
    color: var(--white);
}

.testimonial-card {
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.mira-story-redesign {
    background:
        linear-gradient(135deg, rgba(255, 243, 233, .95), rgba(255, 255, 255, .95)),
        var(--white);
}

.mira-story-shell {
    display: grid;
    gap: 38px;
    align-items: center;
}

.mira-story-card {
    padding: clamp(26px, 5vw, 48px);
    border-radius: 34px;
    background: var(--white);
    border: 1px solid rgba(230, 90, 31, .16);
    box-shadow: 0 28px 70px rgba(15, 40, 60, .1);
}

.mira-story-card p {
    color: var(--ink-500);
    line-height: 1.72;
}

.story-points {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.story-points span {
    display: grid;
    gap: 3px;
    padding: 15px 16px;
    border-left: 4px solid var(--orange-500);
    border-radius: 16px;
    background: #fff8f3;
    color: var(--ink-500);
}

.story-points strong {
    color: var(--black);
}

.mira-story-visual {
    position: relative;
    min-height: 440px;
    display: grid;
    place-items: center;
}

.mira-story-visual::before {
    content: "";
    position: absolute;
    inset: 30px 24px 18px;
    border-radius: 42px;
    background: #ffe4cd;
    box-shadow: 0 26px 64px rgba(230, 90, 31, .14);
}

.mira-story-visual .ph-img {
    position: relative;
    z-index: 1;
    width: min(100%, 360px);
    height: auto;
    padding: 0;
    object-fit: contain;
}

.story-floating-note {
    position: absolute;
    z-index: 2;
    right: -100px;
    top: -40px;
    max-width: 230px;
    padding: 14px 16px;
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow-md);
    color: var(--black);
    font-weight: 600;
    line-height: 1.35;
}

.mira-help-redesign {
    background: linear-gradient(180deg, #fff 0%, #fff8f3 100%);
}

.mira-help-grid {
    display: grid;
    gap: 18px;
    margin-top: 34px;
}

.mira-help-card {
    display: grid;
    align-content: start;
    gap: 12px;
    padding: 26px;
    border-radius: 24px;
    border: 1px solid rgba(230, 90, 31, .15);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.mira-help-card>span {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: #fff3e9;
    color: var(--orange-600);
}

.mira-help-card h3 {
    font-size: 1.05rem;
    color: var(--black);
}

.mira-help-card p {
    color: var(--ink-500);
    line-height: 1.6;
    font-size: .92rem;
}

.mira-help-card:hover {
    border-color: rgba(230, 90, 31, .38);
    box-shadow: 0 22px 44px rgba(15, 40, 60, .1);
}

.detailed-guidance-card {
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.detailed-guidance-card:hover {
    border-color: rgba(230, 90, 31, .35);
    box-shadow: 0 24px 48px rgba(15, 40, 60, .1);
}

.footer-col ul li a,
.footer-links-row a,
.footer-col-reach a {
    transition: color .2s ease, transform .2s ease;
}

.footer-col ul li a:hover,
.footer-links-row a:hover,
.footer-col-reach a:hover {
    color: var(--orange-600);
}

.footer-copyright {
    text-align: center;
    padding: 16px 0;
}

.footer-copyright p {
    margin: 0;
}

.footer-copyright a {
    color: var(--orange-600);
    font-weight: 700;
}

.standard-page-hero {
    background: linear-gradient(180deg, #fff3e9 0%, #fff 100%);
    padding-top: 72px;
}

.standard-page-grid {
    display: grid;
    gap: 34px;
    align-items: center;
}

.standard-page-grid h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1.12;
    margin-bottom: 16px;
}

.standard-page-grid p {
    max-width: 720px;
    color: var(--ink-500);
    line-height: 1.7;
    margin-bottom: 22px;
}

.standard-page-card {
    display: grid;
    justify-items: center;
    gap: 14px;
    padding: 34px;
    border-radius: 30px;
    background: var(--white);
    border: 1px solid rgba(230, 90, 31, .16);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.standard-page-card .ph-img {
    width: 130px;
    height: 130px;
    object-fit: contain;
}

@media (min-width: 640px) {
    .mira-help-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 900px) {
    .provider-icon-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .mira-story-shell,
    .standard-page-grid {
        grid-template-columns: 1.05fr .95fr;
    }

    .mira-help-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 1100px) {
    .animated-stats .trust-stats-inner {
        grid-template-columns: 1fr;
    }

    .start-mira-visual {
        min-height: 480px;
    }

    .start-mira-visual .hero-illustration {
        width: min(100%, 520px);
        margin: -34px auto 0;
    }

    .start-mira-visual::before {
        inset: 44px 8% 10px;
    }
}

@media (max-width: 768px) {
    .book-link {
        font-weight: 600;
    }

    .call-btn-mobile {
        align-items: center;
    }

    .call-btn-mobile>span:last-child {
        display: grid;
        gap: 2px;
    }

    .hero-proof-line {
        justify-content: center;
    }

    .start-mira-visual {
        min-height: 420px;
    }

    .provider-icon-grid {
        grid-template-columns: 2fr 2fr;
    }

    .guidance-left-panel {
        padding: 24px;
    }

    .carousel-btn:hover {
        transform: translateY(-2px) scale(1.04);
    }
    
    .footer-brand-row{
        padding: 30px 20px !important;
    }

    .footer-links-row{
        padding: 20px 10px !important;
        margin-top: 20px;
    }

    .footer-note{
        padding-top: 20px !important;
    }
    .footer-copyright{
        padding-bottom: 60px !important;
        padding-top: 20px !important;
    }
}

@media (max-width: 575px) {
    .start-design-hero {
        padding-top: 34px;
    }

    .hero-proof-dot {
        display: none;
    }

    .start-mira-visual {
        min-height: 360px;
    }

    .start-mira-visual::before {
        inset: 40px 0 8px;
        border-radius: 28px;
    }

    .start-mira-visual .hero-illustration {
        width: min(108%, 430px);
        margin-top: -24px;
    }

    .story-floating-note {
        display: none;
    }
    .mira-story-visual .ph-img{
       width: min(60%, 430px) !important;
    }
    
    .mira-story-shell{
        flex-direction: column-reverse;
        display: flex;
    }

    .testimonial-card{
        min-height: auto !important;
        flex: 0 0 100% !important;
    }

    .container{
        padding: 0 20px;
    }

    .mira-story-visual {
        min-height: 360px;
    }
}

/* ===================================================================
   FONT + HEADER BUTTON FINAL TUNING
   =================================================================== */

.btn,
.call-btn {
    transition:
        transform .35s cubic-bezier(.22, 1, .36, 1),
        box-shadow .35s cubic-bezier(.22, 1, .36, 1),
        filter .35s ease,
        background .35s ease,
        color .35s ease;
}

.call-btn {
    font-weight: 500;
}

.call-btn-text {
    font-family: var(--primary-font);
}

.call-btn-text small,
.call-btn-mobile small {
    font-weight: 600;
}

.call-btn:hover,
.btn:hover {
    transform: translateY(-3px);
    filter: brightness(1.04);
}

/* ===================================================================
   FINAL HERO / TRUST / STORY / FOOTER POLISH
   =================================================================== */

.hero-image-stage {
    position: relative;
    min-height: clamp(520px, 48vw, 690px);
    align-items: center;
    justify-content: center;
    overflow: visible;
    isolation: isolate;
}

.hero-image-stage::before,
.hero-image-stage::after {
    display: none;
}


.hero-back-image-wrap {
    position: absolute;
    z-index: 0;
    right: 0;
    left: auto;
    bottom: 0;
    width: 100%;
}


.hero-back-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .2;
    filter: saturate(.95);
}

.hero-front-image {
    position: relative;
    z-index: 2;
    width: min(100%, 690px) !important;
    max-width: none !important;
    max-height: none !important;
    margin: -140px 0 0 5px !important;
    padding: 0 !important;
    object-fit: contain;
    filter: drop-shadow(0 28px 42px rgba(15, 40, 60, .22));
}

.hero-image-call {
    position: absolute;
    right: clamp(10px, 4vw, auto);
    bottom: clamp(16px, 4vw, 42px);
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 275px;
    justify-content: center;
    padding: 7px 20px 7px 7px;
    text-align: left;
    box-shadow: 0 20px 40px rgba(230, 90, 31, .24);
}

.hero-image-call img {
    width: 54px;
    height: 54px;
    flex: 0 0 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .25);
    object-fit: contain;
    padding: 3px;
}

.hero-image-call span {
    line-height: 1.15;
}

.hero-image-call small {
    color: var(--white);
    font-size: .95rem;
    font-weight: 600;
}

.hero-document-trust {
    gap: 18px;
    margin-top: 28px;
}

.hero-document-trust .trust-stat {
    position: relative;
    min-height: 116px;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    padding: 22px;
    border: 1px solid rgba(230, 90, 31, .14);
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(255, 248, 243, .96));
    box-shadow: 0 18px 42px rgba(15, 40, 60, .08);
}

.hero-document-trust .trust-stat::before {
    content: "";
    position: absolute;
    inset: auto 18px 0 18px;
    height: 3px;
    border-radius: 999px 999px 0 0;
    background: linear-gradient(90deg, rgba(244, 123, 32, .12), rgba(244, 123, 32, .72), rgba(244, 123, 32, .12));
}

.hero-document-trust .trust-stat p {
    margin: 0;
    color: var(--ink-700);
    font-size: .96rem;
    line-height: 1.45;
}

.hero-document-trust .trust-stat strong {
    color: var(--black);
    font-size: 1rem;
}

.trust-years {
    width: 62px;
    height: 62px;
    flex: 0 0 62px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: var(--orange-600);
    color: var(--white);
    font-size: 1.42rem;
    font-weight: 800;
    box-shadow: 0 14px 26px rgba(230, 90, 31, .22);
}

.trust-icon {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: #fff3e9;
    color: var(--orange-600);
}

.trust-icon .icon {
    width: 28px;
    height: 28px;
}

.animated-stats {
    border-top: 1px solid rgba(230, 90, 31, .08);
    border-bottom: 1px solid rgba(230, 90, 31, .08);
}

.animated-stats .trust-stats-inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.animated-stats .trust-stat {
    border: 1px solid rgba(230, 90, 31, .13);
    box-shadow: 0 16px 34px rgba(15, 40, 60, .06);
    color: var(--ink-700);
}

.animated-stats .trust-stat p {
    color: var(--white) !important;
}

.animated-stats .trust-stat strong {
    color: var(--black) !important;
}

.animated-stats .trust-stat .icon {
    color: var(--white);
}

.mira-story-redesign {
    background:
        radial-gradient(circle at top left, rgba(244, 123, 32, .11), transparent 34%),
        linear-gradient(180deg, #fff 0%, #fff7f0 100%);
}

.mira-story-shell {
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
    gap: clamp(28px, 5vw, 64px);
    align-items: center;
}

.mira-story-card {
    border-radius: 34px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(255, 250, 246, .98));
}

.mira-story-card .section-title {
    max-width: 760px;
}

.mira-story-card h3 {
    margin: 22px 0 10px;
    color: var(--black);
    font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.mira-story-card a {
    color: var(--orange-600);
    font-weight: 800;
}

.mira-story-card p+p {
    margin-top: 13px;
}

.mira-story-visual {
    min-height: 560px;
}

.mira-story-visual::before {
    inset: 36px 4px 28px;
    background:
        linear-gradient(180deg, #ffe7d2, #fff7f0);
}

.mira-story-visual .ph-img {
    width: min(112%, 430px);
    max-width: none;
    filter: drop-shadow(0 24px 42px rgba(15, 40, 60, .16));
}

.story-floating-note {
    right: -100px;
    top: -40px;
    max-width: 260px;
}

.simple-social-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.simple-social-row a {
    width: 36px;
    height: 36px;
    padding: 0;
    color: var(--orange-600);
    border: 1px solid rgba(230, 90, 31, .16);
    transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}

.simple-social-row a svg {
    width: 18px;
    height: 18px;
}

.simple-social-row a:hover {
    transform: translateY(-3px);
    background: var(--orange-600);
    color: var(--white);
    border-color: var(--orange-600);
}

@media (max-width: 1100px) {

    .animated-stats .trust-stats-inner,
    .mira-story-shell {
        grid-template-columns: 1fr;
    }

    .hero-image-stage {
        min-height: 520px;
    }

    .hero-front-image {
        width: min(100%, 560px) !important;
        margin: -24px auto 0 !important;
    }

    .hero-image-call {
        right: 50%;
        transform: translateX(50%);
    }

    .hero-image-call:hover {
        transform: translateX(50%) translateY(-3px);
    }
}

@media (max-width: 640px) {
    .hero-document-trust .trust-stat {
        min-height: 0;
        padding: 18px;
    }

    .trust-years,
    .trust-icon {
        width: 50px;
        height: 50px;
        flex-basis: 50px;
        border-radius: 15px;
    }

    .hero-image-stage {
        min-height: 430px;
    }

    .hero-image-call {
        min-width: 245px;
        bottom: 10px;
    }

    .mira-story-visual {
        min-height: 420px;
    }
}

.call-favicon-img {
    transition: all .3s ease-in-out;
}

.call-btn:hover .call-favicon-img {
    transform: scale(1.5) rotate(20deg);
}

.hero-image-call:hover img {
    transform: scale(1.3) rotate(20deg);
}

.hero-image-call img {
    transition: all .3s ease-in-out;
}

.ph-icon-round {
    overflow: visible;
}