/*
 * Tut Uncommon homepage
 * Responsive, dependency-free styling for the PHP template.
 */

:root {
    --navy-950: #041531;
    --navy-900: #061f4f;
    --navy-850: #08295e;
    --navy-800: #0a326f;
    --navy-700: #164880;
    --gold-600: #c98b18;
    --gold-500: #dda634;
    --gold-400: #efbf59;
    --gold-200: #f7dfaa;
    --cream-50: #fffdf8;
    --cream-100: #fff9ec;
    --cream-200: #f9efd9;
    --cream-300: #efdfbd;
    --ink: #112341;
    --muted: #5e6879;
    --line: #e8dfcf;
    --white: #ffffff;
    --success: #167a56;
    --danger: #b42318;
    --shadow-sm: 0 8px 24px rgba(12, 34, 68, 0.08);
    --shadow-md: 0 18px 46px rgba(12, 34, 68, 0.13);
    --shadow-lg: 0 30px 80px rgba(4, 21, 49, 0.22);
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --container: 1240px;
    --header-height: 84px;
    --ease: 220ms ease;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--cream-50);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

body.modal-open,
body.nav-open {
    overflow: hidden;
}

img,
picture,
svg {
    display: block;
    max-width: 100%;
}

button,
input,
select,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    color: inherit;
}

button:not(:disabled),
select:not(:disabled) {
    cursor: pointer;
}

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

h1,
h2,
h3,
p,
ul,
ol,
blockquote {
    margin-top: 0;
}

h1,
h2,
h3 {
    color: var(--navy-900);
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.08;
    letter-spacing: -0.025em;
}

h1 {
    font-size: clamp(3rem, 5.4vw, 5.2rem);
    margin-bottom: 24px;
}

h2 {
    font-size: clamp(2rem, 3.4vw, 3.25rem);
    margin-bottom: 18px;
}

h3 {
    font-size: 1.22rem;
    margin-bottom: 10px;
}

p {
    margin-bottom: 18px;
}

ul,
ol {
    padding: 0;
}

::selection {
    color: var(--navy-950);
    background: var(--gold-200);
}

:focus-visible {
    outline: 3px solid rgba(221, 166, 52, 0.75);
    outline-offset: 3px;
}

[hidden] {
    display: none !important;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.container.narrow {
    width: min(calc(100% - 40px), 1040px);
}

.section {
    padding: 100px 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 10px;
    left: 10px;
    padding: 10px 15px;
    border-radius: 8px;
    color: var(--white);
    background: var(--navy-900);
    transform: translateY(-150%);
    transition: transform var(--ease);
}

.skip-link:focus {
    transform: translateY(0);
}

.eyebrow {
    margin-bottom: 12px;
    color: var(--gold-600);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1.35;
    text-transform: uppercase;
}

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 22px;
    border: 1px solid transparent;
    border-radius: 10px;
    font-size: 0.93rem;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    transition: transform var(--ease), box-shadow var(--ease), background-color var(--ease), border-color var(--ease), color var(--ease);
}

.button:hover {
    transform: translateY(-2px);
}

.button:active {
    transform: translateY(0);
}

.button-primary {
    color: var(--navy-950);
    border-color: var(--gold-500);
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    box-shadow: 0 10px 22px rgba(201, 139, 24, 0.24);
}

.button-primary:hover {
    background: linear-gradient(135deg, #f5cc75, #e0a63a);
    box-shadow: 0 14px 30px rgba(201, 139, 24, 0.3);
}

.button-outline {
    color: var(--navy-900);
    border-color: rgba(6, 31, 79, 0.55);
    background: rgba(255, 255, 255, 0.64);
}

.button-outline:hover,
.button-ghost:hover {
    color: var(--white);
    border-color: var(--navy-900);
    background: var(--navy-900);
}

.button-ghost {
    color: var(--navy-900);
    border-color: rgba(6, 31, 79, 0.4);
    background: transparent;
}

.button-light-outline {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.04);
}

.button-light-outline:hover {
    color: var(--navy-950);
    border-color: var(--white);
    background: var(--white);
}

.button-small {
    min-height: 40px;
    padding: 9px 16px;
    border-radius: 8px;
    font-size: 0.82rem;
}

.button-large {
    min-height: 54px;
    padding: 14px 26px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    border: 0;
    color: var(--navy-800);
    background: transparent;
    font-weight: 800;
    line-height: 1.4;
    text-decoration: underline;
    text-decoration-color: rgba(221, 166, 52, 0.65);
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.text-link:hover {
    color: var(--gold-600);
}

/* Header */
.site-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    min-height: var(--header-height);
    border-bottom: 1px solid rgba(6, 31, 79, 0.08);
    background: rgba(255, 253, 248, 0.94);
    backdrop-filter: blur(14px);
    transition: box-shadow var(--ease), background-color var(--ease);
}

.site-header.is-scrolled {
    background: rgba(255, 253, 248, 0.98);
    box-shadow: 0 8px 30px rgba(4, 21, 49, 0.08);
}

.header-inner {
    display: flex;
    min-height: var(--header-height);
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    position: relative;
    z-index: 2;
    display: inline-flex;
    flex: 0 0 auto;
    min-width: 0;
    align-items: center;
    align-self: center;
    line-height: 0;
    transform: none;
}

/* Homepage header logo. Keep the artwork's original colors and center it
   vertically inside the existing header without changing the nav layout. */
.brand-home-logo {
    display: block;
    width: auto;
    height: 62px;
    max-width: 285px;
    object-fit: contain;
    object-position: left center;
    filter: none;
    opacity: 1;
    transform: none;
}

/* Kept for older cached markup and the automatic image fallback. */
.brand-wordmark {
    display: block;
    width: 214px;
    height: auto;
    filter: none;
    transform: none;
}

.primary-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(14px, 1.5vw, 25px);
    font-size: 0.83rem;
    font-weight: 750;
    white-space: nowrap;
}

.primary-nav > a {
    position: relative;
    padding: 12px 0;
}

.primary-nav > a::after {
    position: absolute;
    right: 0;
    bottom: 5px;
    left: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--gold-500);
    content: "";
    transform: scaleX(0);
    transition: transform var(--ease);
}

.primary-nav > a:hover::after {
    transform: scaleX(1);
}

.nav-actions {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-left: 3px;
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid rgba(6, 31, 79, 0.18);
    border-radius: 10px;
    background: var(--white);
}

.nav-toggle > span:not(.sr-only) {
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: var(--navy-900);
    transition: transform var(--ease), opacity var(--ease);
}

.nav-toggle[aria-expanded="true"] > span:nth-of-type(2) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] > span:nth-of-type(3) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] > span:nth-of-type(4) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
    position: relative;
    overflow: hidden;
    padding: 90px 0 138px;
    background:
        linear-gradient(110deg, rgba(255, 249, 236, 0.98) 0%, rgba(255, 253, 248, 0.9) 47%, rgba(242, 232, 203, 0.72) 100%);
}

.hero::before {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        radial-gradient(circle at 16% 22%, rgba(221, 166, 52, 0.12) 0 1px, transparent 1.5px),
        radial-gradient(circle at 73% 78%, rgba(6, 31, 79, 0.08) 0 1px, transparent 1.5px);
    background-size: 38px 38px, 46px 46px;
    content: "";
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), transparent 86%);
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(12px);
    pointer-events: none;
}

.hero-glow-one {
    top: -200px;
    right: 6%;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(239, 191, 89, 0.24), transparent 66%);
}

.hero-glow-two {
    bottom: -280px;
    left: -120px;
    width: 620px;
    height: 620px;
    background: radial-gradient(circle, rgba(10, 50, 111, 0.11), transparent 67%);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
    gap: clamp(44px, 6vw, 88px);
}

.hero-copy {
    padding-bottom: 8px;
}

.hero-copy .eyebrow {
    font-size: 0.83rem;
}

.hero-lede {
    max-width: 610px;
    margin-bottom: 30px;
    color: #35445c;
    font-size: clamp(1.06rem, 1.4vw, 1.22rem);
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.trust-list {
    display: grid;
    margin: 42px 0 0;
    list-style: none;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-list li {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 9px;
    padding-right: 14px;
    color: #35445c;
    font-size: 0.79rem;
    font-weight: 700;
    line-height: 1.35;
}

.trust-list li + li {
    padding-left: 14px;
    border-left: 1px solid rgba(6, 31, 79, 0.12);
}

.trust-icon {
    display: grid;
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    place-items: center;
    border: 2px solid var(--navy-700);
    border-radius: 50%;
    color: var(--gold-600);
    background: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    font-weight: 900;
}

.hero-image-frame {
    position: relative;
    overflow: hidden;
    min-height: 470px;
    border: 8px solid rgba(255, 255, 255, 0.84);
    border-radius: 30px 30px 30px 92px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

.hero-image-frame::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 37%;
    pointer-events: none;
    background: linear-gradient(to top, rgba(4, 21, 49, 0.16), transparent);
    content: "";
}

.hero-image-frame > img {
    width: 100%;
    height: 100%;
    min-height: 470px;
    object-fit: cover;
    object-position: center;
}

.credential-card {
    position: absolute;
    z-index: 2;
    right: 28px;
    bottom: 28px;
    display: grid;
    min-width: 294px;
    gap: 5px;
    padding: 18px 20px;
    border: 1px solid rgba(239, 191, 89, 0.62);
    border-radius: 14px;
    color: var(--white);
    background: rgba(4, 27, 66, 0.94);
    box-shadow: 0 14px 32px rgba(4, 21, 49, 0.28);
    backdrop-filter: blur(8px);
}

.credential-card strong {
    color: var(--gold-400);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.45rem;
    line-height: 1.1;
}

.credential-card span {
    font-size: 0.77rem;
    font-weight: 700;
}

.credential-card b {
    display: inline-grid;
    width: 18px;
    height: 18px;
    margin-right: 4px;
    place-items: center;
    border: 1px solid var(--gold-400);
    border-radius: 50%;
    color: var(--gold-400);
    font-size: 0.68rem;
}

/* Matching panel */
.match-panel-wrap {
    position: relative;
    z-index: 3;
    margin-top: -66px;
}

.match-panel {
    display: grid;
    align-items: end;
    grid-template-columns: 1.2fr repeat(4, minmax(125px, 0.9fr)) auto;
    gap: 16px;
    padding: 24px;
    border: 1px solid rgba(221, 166, 52, 0.3);
    border-radius: var(--radius-md);
    background: rgba(255, 253, 248, 0.97);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(14px);
}

.match-heading h2 {
    margin-bottom: 5px;
    font-size: 1.52rem;
}

.match-heading p {
    margin: 0;
    color: var(--muted);
    font-size: 0.85rem;
}

.match-panel label,
.form-grid label {
    display: grid;
    gap: 7px;
}

.match-panel label > span,
.form-grid label > span {
    color: #33425a;
    font-size: 0.73rem;
    font-weight: 800;
}

select,
input,
textarea {
    width: 100%;
    border: 1px solid #d8d0c3;
    border-radius: 9px;
    color: var(--ink);
    background: var(--white);
    transition: border-color var(--ease), box-shadow var(--ease), background-color var(--ease);
}

select,
input {
    min-height: 46px;
    padding: 10px 12px;
}

textarea {
    min-height: 112px;
    padding: 12px;
    resize: vertical;
}

select:focus,
input:focus,
textarea:focus {
    border-color: var(--navy-700);
    outline: none;
    box-shadow: 0 0 0 4px rgba(10, 50, 111, 0.1);
}

select[aria-invalid="true"],
input[aria-invalid="true"],
textarea[aria-invalid="true"] {
    border-color: var(--danger);
    background: #fff6f5;
}

.match-submit {
    min-height: 46px;
    white-space: nowrap;
}

.form-hint {
    grid-column: 2 / -1;
    margin: -7px 0 0;
    color: var(--danger);
    font-size: 0.78rem;
    font-weight: 700;
}

/* Shared headings */
.section-heading {
    margin-bottom: 46px;
}

.section-heading.centered {
    text-align: center;
}

.section-heading.centered h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
}

.section-heading.centered h2 > span {
    width: 54px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, var(--gold-500));
}

.section-heading.centered h2 > span:last-child {
    background: linear-gradient(90deg, var(--gold-500), transparent);
}

.row-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
}

.row-heading h2 {
    margin-bottom: 0;
}

/* Why */
.why-section {
    padding-top: 112px;
    background: var(--cream-50);
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
}

.benefit-card {
    position: relative;
    padding: 6px 34px 12px;
    text-align: center;
}

.benefit-card + .benefit-card {
    border-left: 1px solid var(--line);
}

.feature-icon {
    display: grid;
    width: 62px;
    height: 62px;
    margin: 0 auto 18px;
    place-items: center;
    border: 2px solid var(--gold-500);
    border-radius: 18px;
    color: var(--gold-600);
    background: linear-gradient(145deg, var(--white), var(--cream-100));
    box-shadow: var(--shadow-sm);
    font-size: 1.6rem;
    font-weight: 900;
    transform: rotate(-3deg);
}

.benefit-card:nth-child(even) .feature-icon {
    transform: rotate(3deg);
}

.benefit-card h3 {
    font-size: 1.18rem;
}

.benefit-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.91rem;
    line-height: 1.65;
}

/* Teachers */
.teachers-section {
    overflow: hidden;
    background: linear-gradient(180deg, #fffdf8, #fbf4e7);
}

.teacher-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.teacher-card {
    overflow: hidden;
    border: 1px solid rgba(6, 31, 79, 0.1);
    border-radius: 16px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.teacher-card:hover {
    border-color: rgba(221, 166, 52, 0.55);
    box-shadow: var(--shadow-md);
    transform: translateY(-7px);
}

.teacher-photo {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1.55 / 1;
    background: var(--cream-200);
}

.teacher-photo::after {
    position: absolute;
    inset: auto 0 0;
    height: 30%;
    background: linear-gradient(to top, rgba(4, 21, 49, 0.15), transparent);
    content: "";
}

.teacher-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}

.teacher-card:hover .teacher-photo img {
    transform: scale(1.04);
}

.verified-badge {
    position: absolute;
    z-index: 2;
    top: 13px;
    right: 13px;
    display: grid;
    width: 33px;
    height: 33px;
    place-items: center;
    border: 3px solid var(--white);
    border-radius: 50%;
    color: var(--gold-400);
    background: var(--navy-900);
    box-shadow: 0 7px 16px rgba(4, 21, 49, 0.2);
    font-size: 0.86rem;
    font-weight: 900;
}

.teacher-card-body {
    padding: 21px 21px 23px;
}

.teacher-card-body h3 {
    margin-bottom: 5px;
    font-size: 1.34rem;
}

.teacher-role,
.teacher-subjects,
.teacher-experience {
    margin-bottom: 8px;
    line-height: 1.45;
}

.teacher-role {
    min-height: 42px;
    color: var(--navy-800);
    font-size: 0.8rem;
    font-weight: 800;
}

.teacher-subjects {
    color: #33425a;
    font-size: 0.82rem;
    font-weight: 700;
}

.teacher-experience {
    color: var(--muted);
    font-size: 0.79rem;
}

.teacher-card blockquote {
    min-height: 92px;
    margin: 17px 0 18px;
    color: #38465d;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.91rem;
    font-style: italic;
    line-height: 1.55;
}

.teacher-profile-button {
    font-size: 0.82rem;
}

.verification-row {
    display: grid;
    margin: 34px 0 0;
    list-style: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.verification-row li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #425069;
    font-size: 0.8rem;
    font-weight: 750;
}

.verification-row span {
    display: grid;
    width: 24px;
    height: 24px;
    place-items: center;
    border: 1px solid var(--gold-500);
    border-radius: 50%;
    color: var(--gold-600);
    font-size: 0.72rem;
}

/* Steps */
.steps-section {
    position: relative;
    overflow: hidden;
    padding: 84px 0;
    color: var(--white);
    background:
        linear-gradient(rgba(4, 25, 61, 0.96), rgba(4, 25, 61, 0.96)),
        url("../images/brand-watermark.png") center / 420px no-repeat,
        var(--navy-900);
}

.steps-section::before,
.final-cta::before {
    position: absolute;
    inset: 0;
    opacity: 0.23;
    pointer-events: none;
    background-image:
        linear-gradient(30deg, transparent 44%, rgba(239, 191, 89, 0.14) 45%, transparent 46%),
        linear-gradient(-30deg, transparent 44%, rgba(239, 191, 89, 0.08) 45%, transparent 46%);
    background-size: 78px 78px;
    content: "";
}

.steps-section .container,
.final-cta .container {
    position: relative;
    z-index: 1;
}

.section-heading.inverse h2,
.steps-section h3 {
    color: var(--white);
}

.steps-grid {
    display: grid;
    margin: 0;
    list-style: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 36px;
}

.step {
    position: relative;
    display: grid;
    align-items: start;
    grid-template-columns: 74px 1fr;
    gap: 20px;
    padding: 8px 18px 8px 0;
}

.step + .step::before {
    position: absolute;
    top: 25%;
    bottom: 15%;
    left: -19px;
    width: 1px;
    background: rgba(255, 255, 255, 0.16);
    content: "";
}

.step-number {
    position: absolute;
    z-index: 2;
    top: -5px;
    left: -4px;
    display: grid;
    width: 25px;
    height: 25px;
    place-items: center;
    border: 2px solid var(--navy-900);
    border-radius: 50%;
    color: var(--navy-950);
    background: var(--gold-400);
    font-size: 0.69rem;
    font-weight: 900;
}

.step-icon {
    display: grid;
    width: 70px;
    height: 70px;
    place-items: center;
    border: 2px solid var(--gold-400);
    border-radius: 50%;
    color: var(--gold-400);
    background: rgba(255, 255, 255, 0.08);
    font-size: 1.65rem;
}

.step h3 {
    margin: 2px 0 8px;
    font-family: Inter, ui-sans-serif, system-ui, sans-serif;
    font-size: 1rem;
    letter-spacing: 0;
}

.step p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.84rem;
    line-height: 1.6;
}

.centered-action {
    margin-top: 42px;
    text-align: center;
}

/* Difference */
.difference-section {
    background: var(--cream-50);
}

.comparison {
    position: relative;
    display: grid;
    overflow: hidden;
    grid-template-columns: 1fr 1fr;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.comparison-column h3 {
    margin: 0;
    padding: 13px 26px;
    font-family: Inter, ui-sans-serif, system-ui, sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0;
    text-align: center;
}

.comparison-typical h3 {
    color: var(--navy-900);
    background: #f3efe6;
}

.comparison-uncommon h3 {
    color: var(--navy-950);
    background: linear-gradient(90deg, var(--gold-400), var(--gold-500));
}

.comparison-column ul {
    margin: 0;
    list-style: none;
}

.comparison-column li {
    display: flex;
    min-height: 52px;
    align-items: center;
    gap: 12px;
    padding: 11px 28px;
    border-top: 1px solid var(--line);
    color: #38465d;
    font-size: 0.9rem;
    font-weight: 650;
}

.comparison-column li span {
    color: var(--gold-600);
    font-size: 1.05rem;
    font-weight: 900;
}

.comparison-uncommon {
    border-left: 1px solid var(--line);
    background: linear-gradient(90deg, rgba(255, 249, 236, 0.4), transparent);
}

.comparison-seal {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    display: grid;
    width: 116px;
    height: 116px;
    place-items: center;
    border: 7px solid var(--cream-50);
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 14px 30px rgba(4, 21, 49, 0.14);
    transform: translate(-50%, -46%);
}

.comparison-seal img {
    width: 84px;
    max-height: 88px;
    object-fit: contain;
}

/* Subjects */
.subjects-section {
    background: linear-gradient(180deg, #fffdf8, #fbf4e7);
}

.subjects-layout {
    display: grid;
    align-items: center;
    grid-template-columns: 270px minmax(0, 1fr);
    gap: 54px;
}

.subjects-copy h2 {
    font-size: 2.45rem;
}

.subjects-copy > p:not(.eyebrow) {
    color: var(--muted);
}

.subject-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 13px;
}

.subject-card {
    display: grid;
    min-height: 158px;
    align-content: center;
    justify-items: center;
    gap: 14px;
    padding: 20px 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 6px 18px rgba(12, 34, 68, 0.05);
    text-align: center;
    transition: opacity var(--ease), transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.subject-card:hover {
    border-color: rgba(221, 166, 52, 0.65);
    box-shadow: var(--shadow-sm);
    transform: translateY(-4px);
}

.subject-card.is-filtered-out {
    display: none;
}

.subject-icon {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border-radius: 50%;
    color: var(--navy-800);
    background: var(--cream-100);
    box-shadow: inset 0 0 0 1px var(--gold-200);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.42rem;
    font-weight: 800;
}

.subject-card h3 {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0;
    line-height: 1.35;
}

.grade-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 9px;
    margin-top: 20px;
}

.grade-filter {
    min-height: 38px;
    padding: 8px 16px;
    border: 1px solid #dcd3c4;
    border-radius: 999px;
    color: #526077;
    background: var(--white);
    font-size: 0.77rem;
    font-weight: 750;
    transition: color var(--ease), background-color var(--ease), border-color var(--ease), transform var(--ease);
}

.grade-filter:hover,
.grade-filter.active {
    color: var(--white);
    border-color: var(--navy-900);
    background: var(--navy-900);
    transform: translateY(-1px);
}

/* Standards */
.standards-section {
    position: relative;
    overflow: hidden;
    padding: 78px 0;
    border-block: 1px solid var(--gold-200);
    background: #f7ecd8;
}

.standards-section::after {
    position: absolute;
    right: -90px;
    bottom: -150px;
    width: 390px;
    height: 390px;
    opacity: 0.08;
    background: url("../images/brand-watermark.png") center / contain no-repeat;
    content: "";
}

.standards-layout {
    position: relative;
    z-index: 1;
    display: grid;
    align-items: center;
    grid-template-columns: 300px 1fr;
    gap: 54px;
}

.standards-copy h2 {
    font-size: 2.3rem;
}

.standards-copy p:not(.eyebrow) {
    color: #586174;
}

.standards-list {
    display: grid;
    margin: 0;
    list-style: none;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 15px;
}

.standards-list li {
    display: grid;
    align-content: start;
    justify-items: center;
    gap: 12px;
    color: #33425a;
    font-size: 0.77rem;
    font-weight: 750;
    line-height: 1.4;
    text-align: center;
}

.standards-list li span {
    display: grid;
    width: 56px;
    height: 56px;
    place-items: center;
    border: 2px solid var(--navy-700);
    border-radius: 18px;
    color: var(--gold-600);
    background: rgba(255, 255, 255, 0.72);
    font-size: 1.1rem;
    box-shadow: var(--shadow-sm);
}

/* Testimonials */
.testimonials-section {
    background: var(--cream-50);
}

.testimonial-shell {
    position: relative;
}

.testimonial-track {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.testimonial-card {
    display: flex;
    min-height: 260px;
    flex-direction: column;
    padding: 29px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.stars {
    margin-bottom: 14px;
    color: var(--gold-600);
    font-size: 1.05rem;
    letter-spacing: 0.14em;
}

.testimonial-card blockquote {
    flex: 1;
    margin-bottom: 24px;
    color: #32415a;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1rem;
    line-height: 1.65;
}

.testimonial-person {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--navy-800);
    font-size: 0.72rem;
    font-weight: 800;
}

.testimonial-person p {
    display: grid;
    gap: 1px;
    margin: 0;
    line-height: 1.35;
}

.testimonial-person strong {
    color: var(--navy-900);
    font-size: 0.82rem;
}

.testimonial-person p span {
    color: var(--muted);
    font-size: 0.72rem;
}

.carousel-button,
.carousel-dots {
    display: none;
}

/* Final CTA */
.final-cta {
    position: relative;
    overflow: hidden;
    padding: 72px 0;
    color: var(--white);
    background: var(--navy-900);
}

.final-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 58px;
}

.final-cta h2 {
    max-width: 710px;
    margin-bottom: 10px;
    color: var(--white);
    font-size: clamp(2rem, 3vw, 3rem);
}

.final-cta p:not(.eyebrow) {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
}

.final-cta .eyebrow {
    color: var(--gold-400);
}

.final-cta-actions {
    display: flex;
    flex: 0 0 auto;
    gap: 12px;
}

/* Footer */
.site-footer {
    color: rgba(255, 255, 255, 0.72);
    background: var(--navy-950);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(4, minmax(120px, 1fr));
    gap: 42px;
    padding-top: 62px;
    padding-bottom: 48px;
}

.footer-brand img {
    width: 150px;
    height: 150px;
    margin-bottom: 16px;
    border-radius: 18px;
    object-fit: cover;
}

.footer-brand p {
    max-width: 250px;
    margin: 0;
    font-size: 0.8rem;
}

.site-footer h2 {
    margin-bottom: 18px;
    color: var(--white);
    font-family: Inter, ui-sans-serif, system-ui, sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0;
}

.site-footer a,
.site-footer button {
    display: block;
    margin: 10px 0;
    padding: 0;
    border: 0;
    color: rgba(255, 255, 255, 0.68);
    background: transparent;
    font-size: 0.77rem;
    text-align: left;
    transition: color var(--ease);
}

.site-footer a:hover,
.site-footer button:hover {
    color: var(--gold-400);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 20px;
    padding-bottom: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.72rem;
}

.social-links {
    display: flex;
    gap: 8px;
}

.social-links a {
    display: grid;
    width: 32px;
    height: 32px;
    margin: 0;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 800;
    text-align: center;
}

/* Modals and forms */
.modal {
    position: fixed;
    z-index: 2000;
    inset: 0;
    display: grid;
    overflow-y: auto;
    padding: 28px;
    place-items: center;
}

.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(4, 15, 34, 0.72);
    backdrop-filter: blur(5px);
}

.modal-panel {
    position: relative;
    z-index: 1;
    width: min(100%, 760px);
    max-height: calc(100vh - 56px);
    overflow-y: auto;
    padding: 42px;
    border: 1px solid rgba(221, 166, 52, 0.38);
    border-radius: 22px;
    background: var(--cream-50);
    box-shadow: var(--shadow-lg);
    animation: modal-in 220ms ease both;
}

@keyframes modal-in {
    from {
        opacity: 0;
        transform: translateY(14px) scale(0.985);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    z-index: 2;
    top: 15px;
    right: 15px;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(6, 31, 79, 0.14);
    border-radius: 50%;
    color: var(--navy-900);
    background: var(--white);
    font-size: 1.5rem;
    line-height: 1;
    transition: color var(--ease), background-color var(--ease), transform var(--ease);
}

.modal-close:hover {
    color: var(--white);
    background: var(--navy-900);
    transform: rotate(8deg);
}

.modal-brandmark {
    display: grid;
    width: 82px;
    height: 82px;
    margin: -9px auto 14px;
    place-items: center;
    border: 1px solid var(--gold-200);
    border-radius: 50%;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.modal-brandmark img {
    width: 66px;
    height: 62px;
    object-fit: contain;
}

.match-modal-panel > [data-match-form-view] > .eyebrow,
.match-modal-panel > [data-match-form-view] > h2,
.match-modal-panel > [data-match-form-view] > .modal-intro {
    text-align: center;
}

.match-modal-panel h2 {
    margin-bottom: 12px;
    font-size: 2.35rem;
}

.modal-intro {
    max-width: 600px;
    margin: 0 auto 20px;
    color: var(--muted);
}

.selection-summary {
    margin: 0 0 24px;
    padding: 13px 16px;
    border: 1px solid var(--gold-200);
    border-radius: 10px;
    color: #4f452f;
    background: var(--cream-100);
    font-size: 0.84rem;
    font-weight: 700;
    text-align: center;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 17px;
}

.form-grid .full-width {
    grid-column: 1 / -1;
}

.form-grid small {
    color: var(--muted);
    font-weight: 500;
}

.honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.consent-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 18px;
    color: #46536a;
    font-size: 0.8rem;
}

.consent-row input {
    width: 18px;
    height: 18px;
    min-height: 0;
    flex: 0 0 auto;
    margin-top: 2px;
    accent-color: var(--navy-800);
}

.form-status {
    min-height: 24px;
    margin: 14px 0 5px;
    color: var(--danger);
    font-size: 0.82rem;
    font-weight: 700;
    text-align: center;
}

.form-status.is-success {
    color: var(--success);
}

.modal-submit {
    width: 100%;
}

.modal-submit[disabled] {
    cursor: wait;
    opacity: 0.7;
    transform: none;
}

.privacy-note {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 0.72rem;
    text-align: center;
}

.success-view {
    padding: 18px 10px;
    text-align: center;
}

.success-icon {
    display: grid;
    width: 76px;
    height: 76px;
    margin: 0 auto 18px;
    place-items: center;
    border: 3px solid #b7dfcf;
    border-radius: 50%;
    color: var(--success);
    background: #eef9f4;
    font-size: 2rem;
    font-weight: 900;
}

.success-view h2 {
    margin-bottom: 12px;
}

.reference-number {
    padding: 12px;
    border-radius: 9px;
    background: var(--cream-100);
}

.teacher-modal-panel {
    width: min(100%, 960px);
}

.teacher-modal-layout {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
    gap: 34px;
}

.teacher-modal-image {
    overflow: hidden;
    min-height: 380px;
    border-radius: 18px;
    background: var(--cream-200);
    box-shadow: var(--shadow-md);
}

.teacher-modal-image img {
    width: 100%;
    height: 100%;
    min-height: 380px;
    object-fit: cover;
}

.teacher-modal-panel h2 {
    margin-bottom: 7px;
    font-size: 2.4rem;
}

.modal-teacher-facts {
    display: grid;
    gap: 9px;
    margin: 19px 0;
    list-style: none;
}

.modal-teacher-facts li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: #35445c;
    font-size: 0.86rem;
}

.modal-teacher-facts li > span:first-child {
    display: grid;
    width: 21px;
    height: 21px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    color: var(--navy-950);
    background: var(--gold-400);
    font-size: 0.7rem;
    font-weight: 900;
}

.teacher-modal-panel blockquote {
    margin: 22px 0;
    padding: 16px 18px;
    border-left: 4px solid var(--gold-500);
    color: var(--navy-800);
    background: var(--cream-100);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.05rem;
    font-style: italic;
}

.noscript-message {
    position: fixed;
    z-index: 3000;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 12px 18px;
    border: 1px solid var(--gold-500);
    border-radius: 10px;
    color: var(--white);
    background: var(--navy-900);
    box-shadow: var(--shadow-md);
    text-align: center;
}

/* Reveal motion */
.js .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 650ms ease, transform 650ms ease;
}

.js .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1180px) {
    :root {
        --header-height: 76px;
    }

    .brand {
        transform: none;
    }

    .brand-home-logo {
        height: 58px;
        max-width: 255px;
    }

    .brand-wordmark {
        width: 190px;
    }

    .primary-nav {
        gap: 15px;
        font-size: 0.76rem;
    }

    .primary-nav > a:nth-child(4),
    .primary-nav > a:nth-child(5) {
        display: none;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 0.85fr) minmax(470px, 1.15fr);
        gap: 42px;
    }

    .hero-image-frame,
    .hero-image-frame > img {
        min-height: 430px;
    }

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

    .match-heading {
        grid-column: 1 / -1;
    }

    .match-submit {
        grid-column: 1 / -1;
    }

    .form-hint {
        grid-column: 1 / -1;
    }

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

    .teacher-role,
    .teacher-card blockquote {
        min-height: auto;
    }

    .standards-layout {
        grid-template-columns: 260px 1fr;
        gap: 34px;
    }

    .standards-list {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 28px;
    }
}

@media (max-width: 940px) {
    .section {
        padding: 82px 0;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .primary-nav {
        position: fixed;
        z-index: 1001;
        top: var(--header-height);
        right: 0;
        bottom: 0;
        display: none;
        width: min(84vw, 380px);
        overflow-y: auto;
        align-items: stretch;
        justify-content: flex-start;
        flex-direction: column;
        gap: 0;
        padding: 24px;
        border-left: 1px solid rgba(6, 31, 79, 0.1);
        background: var(--cream-50);
        box-shadow: -20px 30px 50px rgba(4, 21, 49, 0.15);
        font-size: 0.98rem;
        animation: mobile-nav-in 220ms ease both;
    }

    .primary-nav.is-open {
        display: flex;
    }

    @keyframes mobile-nav-in {
        from { opacity: 0; transform: translateX(18px); }
        to { opacity: 1; transform: translateX(0); }
    }

    .primary-nav > a,
    .primary-nav > a:nth-child(4),
    .primary-nav > a:nth-child(5) {
        display: block;
        padding: 16px 4px;
        border-bottom: 1px solid var(--line);
    }

    .primary-nav > a::after {
        display: none;
    }

    .nav-actions {
        display: grid;
        gap: 12px;
        margin: 22px 0 0;
    }

    .nav-actions .button {
        width: 100%;
    }

    .hero {
        padding: 65px 0 115px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .hero-copy {
        max-width: 720px;
        text-align: center;
        margin-inline: auto;
    }

    .hero-lede {
        margin-inline: auto;
    }

    .hero-actions,
    .trust-list {
        justify-content: center;
    }

    .hero-visual {
        width: min(100%, 760px);
        margin-inline: auto;
    }

    .benefit-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 0;
    }

    .benefit-card:nth-child(3) {
        border-left: 0;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .step {
        max-width: 650px;
        margin-inline: auto;
    }

    .step + .step::before {
        display: none;
    }

    .subjects-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .subjects-copy {
        max-width: 680px;
        text-align: center;
        margin-inline: auto;
    }

    .standards-layout {
        grid-template-columns: 1fr;
    }

    .standards-copy {
        max-width: 680px;
        text-align: center;
        margin-inline: auto;
    }

    .final-cta-inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 30px;
    }

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

@media (max-width: 720px) {
    .brand {
        transform: none;
    }

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

    .section {
        padding: 68px 0;
    }

    .brand-home-logo {
        height: 52px;
        max-width: 220px;
    }

    .brand-wordmark {
        width: 194px;
    }

    .hero {
        padding-top: 50px;
    }

    .hero h1 {
        font-size: clamp(2.85rem, 14vw, 4rem);
    }

    .hero-lede {
        font-size: 1rem;
    }

    .trust-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px 0;
    }

    .trust-list li:nth-child(3) {
        padding-left: 0;
        border-left: 0;
    }

    .hero-image-frame,
    .hero-image-frame > img {
        min-height: 360px;
    }

    .hero-image-frame {
        border-width: 5px;
        border-radius: 24px 24px 24px 60px;
    }

    .credential-card {
        right: 15px;
        bottom: 15px;
        left: 15px;
        min-width: 0;
        padding: 15px 16px;
    }

    .match-panel-wrap {
        margin-top: -54px;
    }

    .match-panel {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
        padding: 19px;
    }

    .match-heading,
    .match-submit,
    .form-hint {
        grid-column: 1 / -1;
    }

    .section-heading.centered h2 {
        gap: 10px;
    }

    .section-heading.centered h2 > span {
        width: 26px;
    }

    .row-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .benefit-grid,
    .teacher-grid {
        grid-template-columns: 1fr;
    }

    .benefit-card {
        padding: 10px 22px 28px;
    }

    .benefit-card + .benefit-card {
        border-top: 1px solid var(--line);
        border-left: 0;
        padding-top: 34px;
    }

    .verification-row {
        grid-template-columns: 1fr 1fr;
    }

    .comparison {
        overflow: visible;
        grid-template-columns: 1fr;
    }

    .comparison-uncommon {
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .comparison-seal {
        top: 50%;
        width: 86px;
        height: 86px;
        border-width: 5px;
    }

    .comparison-seal img {
        width: 62px;
        max-height: 64px;
    }

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

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

    .testimonial-track {
        display: block;
        min-height: 300px;
    }

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

    .testimonial-card[aria-hidden="false"] {
        display: flex;
        animation: testimonial-in 280ms ease both;
    }

    @keyframes testimonial-in {
        from {
            opacity: 0;
            transform: translateX(12px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .carousel-button {
        position: absolute;
        z-index: 2;
        top: 50%;
        display: grid;
        width: 42px;
        height: 42px;
        place-items: center;
        border: 1px solid var(--line);
        border-radius: 50%;
        color: var(--navy-900);
        background: var(--white);
        box-shadow: var(--shadow-sm);
        font-size: 1.6rem;
        line-height: 1;
        transform: translateY(-50%);
    }

    .carousel-button.previous {
        left: -8px;
    }

    .carousel-button.next {
        right: -8px;
    }

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

    .carousel-dots button {
        width: 8px;
        height: 8px;
        padding: 0;
        border: 0;
        border-radius: 50%;
        background: #c8c0b2;
    }

    .carousel-dots button[aria-selected="true"] {
        width: 24px;
        border-radius: 999px;
        background: var(--gold-500);
    }

    .final-cta-actions {
        width: 100%;
        flex-direction: column;
    }

    .final-cta-actions .button {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-brand img {
        width: 130px;
        height: 130px;
    }

    .modal {
        align-items: end;
        padding: 0;
    }

    .modal-panel {
        width: 100%;
        max-height: 94vh;
        padding: 34px 20px 26px;
        border-radius: 22px 22px 0 0;
    }

    .form-grid,
    .teacher-modal-layout {
        grid-template-columns: 1fr;
    }

    .teacher-modal-image,
    .teacher-modal-image img {
        min-height: 270px;
    }
}

@media (max-width: 480px) {
    .brand {
        transform: none;
    }

    .brand-home-logo {
        height: 46px;
        max-width: 190px;
    }

    .brand-wordmark {
        width: 168px;
    }

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

    .hero-actions .button {
        width: 100%;
    }

    .trust-list li {
        font-size: 0.72rem;
    }

    .hero-image-frame,
    .hero-image-frame > img {
        min-height: 300px;
    }

    .match-panel {
        grid-template-columns: 1fr;
    }

    .match-heading,
    .match-submit,
    .form-hint {
        grid-column: auto;
    }

    .verification-row,
    .standards-list {
        grid-template-columns: 1fr;
    }

    .verification-row li {
        justify-content: flex-start;
    }

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

    .subject-card {
        min-height: 126px;
    }

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

    .footer-brand {
        grid-column: auto;
    }

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

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

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