:root {
    --bg: #f8fafc;
    --surface: #ffffff;
    --surface-2: #f1f5f9;
    --text: #0f172a;
    --muted: #64748b;
    --primary: #3730a3;
    --primary-mid: #4338ca;
    --primary-dark: #1e1b4b;
    --accent: #ea580c;
    --line: #e2e8f0;
    --shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 8px 28px rgba(15, 23, 42, 0.07);
    --shadow-lg: 0 12px 40px rgba(15, 23, 42, 0.1);
    --radius: 10px;
    --radius-lg: 14px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 88px;
}

.top-promo {
    background: linear-gradient(90deg, #312e81 0%, #3730a3 45%, #4338ca 100%);
    color: #e0e7ff;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.top-promo__track {
    width: max-content;
    margin-inline: auto;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 9px 16px;
}

.skip-link {
    position: absolute;
    left: 12px;
    top: 12px;
    z-index: 200;
    padding: 12px 18px;
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
    background: var(--primary-dark);
    border-radius: 10px;
    text-decoration: none;
    box-shadow: var(--shadow);
    transform: translateY(-160%);
    transition: transform 0.2s ease;
}

.skip-link:focus {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}

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

body {
    margin: 0;
    font-family: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

#main-content:focus {
    outline: none;
}

#main-content:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 6px;
}

.section-lead {
    max-width: 42rem;
    margin-inline: auto;
    text-align: center;
}

.container {
    width: min(1120px, 92%);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.85) inset, 0 8px 24px rgba(15, 23, 42, 0.05);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 74px;
    gap: 18px;
}

.brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    line-height: 0;
}

.brand-logo {
    display: block;
    height: 40px;
    width: 40px;
    flex-shrink: 0;
}

.brand--logo-only .brand-logo {
    width: auto;
    max-width: min(200px, 42vw);
    height: 48px;
    object-fit: contain;
    object-position: left center;
}

.brand-text {
    margin-left: 10px;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text);
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: 22px;
    align-items: center;
}

.nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.01em;
    position: relative;
    padding: 6px 2px;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
    transform: scaleX(1);
}

.nav-links a:focus-visible {
    color: var(--primary);
    outline: 2px solid var(--primary);
    outline-offset: 4px;
    border-radius: 6px;
}

.nav-cta-mobile {
    display: none;
}

.brand:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 6px;
    border-radius: 10px;
}

.menu-toggle {
    display: none;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--primary-dark);
    border-radius: 10px;
    padding: 10px 16px;
    min-height: 44px;
    min-width: 44px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
}

.menu-toggle:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}

.section {
    padding: 80px 0;
}

.section .container > h2.title-animate {
    display: block;
    width: fit-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section .container > h2.title-animate::after {
    transform-origin: center;
}

.alt {
    background: var(--surface);
}

.section-emotech {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 45%, #1e293b 100%);
    border-top: 1px solid rgba(148, 163, 184, 0.25);
    border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.section-emotech .title-animate,
.section-emotech h2,
.section-emotech .section-lead {
    color: #e2e8f0;
}

.section-emotech .title-animate::after {
    background: #818cf8;
}

.emotech-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 30px 0 18px;
}

.metric-card {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(148, 163, 184, 0.45);
    background: rgba(15, 23, 42, 0.5);
    padding: 18px;
    text-align: center;
}

.metric-card h3 {
    margin: 0 0 4px;
    color: #c7d2fe;
    font-size: 1.6rem;
}

.metric-card p {
    margin: 0;
    color: #cbd5e1;
    font-size: 0.9rem;
}

.emotech-grid .card {
    border-color: rgba(148, 163, 184, 0.45);
    background: rgba(15, 23, 42, 0.45);
}

.emotech-grid .card h3 {
    color: #e2e8f0;
}

.emotech-grid .card p {
    color: #cbd5e1;
}

.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(165deg, #ffffff 0%, #f8fafc 55%, #eef2ff 100%);
    border-bottom: 1px solid var(--line);
}

.hero::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -80px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(55, 48, 163, 0.07), rgba(55, 48, 163, 0));
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: -140px;
    left: -100px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(15, 23, 42, 0.04), rgba(15, 23, 42, 0));
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
    max-width: 52rem;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
    opacity: 0.35;
    pointer-events: none;
    transition: transform 0.25s linear;
}

.blob-a {
    width: 160px;
    height: 160px;
    right: 6%;
    top: 20%;
    background: radial-gradient(circle, rgba(67, 56, 202, 0.2), rgba(67, 56, 202, 0));
    animation: bubbleFloatA 7s ease-in-out infinite;
}

.blob-b {
    width: 120px;
    height: 120px;
    left: 2%;
    bottom: 12%;
    background: radial-gradient(circle, rgba(100, 116, 139, 0.15), rgba(100, 116, 139, 0));
    animation: bubbleFloatB 8.5s ease-in-out infinite;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
    font-size: 0.8125rem;
    color: var(--primary-mid);
    margin: 0 0 10px;
}

h1, h2, h3 {
    margin: 0 0 12px;
}

h1 {
    font-size: clamp(2.125rem, 4.5vw, 3.25rem);
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: -0.035em;
    color: var(--text);
}

h2 {
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--text);
}

.title-animate {
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
}

.title-animate::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    animation: lineReveal 0.85s ease forwards;
}

h3 {
    font-size: 1.0625rem;
    font-weight: 600;
}

p {
    margin: 0 0 14px;
    color: var(--muted);
    line-height: 1.65;
    font-size: 1rem;
}

.lead {
    max-width: 38rem;
    margin-inline: 0;
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 26px 0 28px;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.hero-points span {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #334155;
    background: #fff;
    border: 1px solid #c7d2fe;
    border-radius: 999px;
    padding: 8px 14px;
    box-shadow: 0 2px 8px rgba(67, 56, 202, 0.08);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: var(--radius);
    padding: 12px 22px;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    position: relative;
}

@media (hover: hover) and (pointer: fine) {
    .btn:hover {
        transform: translateY(-2px);
    }
}

.btn:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
}

.btn-primary {
    color: #fff;
    background: var(--primary);
    box-shadow: 0 4px 14px rgba(55, 48, 163, 0.25);
}

.btn-primary:hover {
    background: var(--primary-mid);
    box-shadow: 0 6px 18px rgba(55, 48, 163, 0.3);
}

.btn-ghost {
    color: var(--text);
    border: 1px solid var(--line);
    background: var(--surface);
}

.btn-ghost:hover {
    border-color: #cbd5e1;
    background: var(--surface-2);
}

.stats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-top: 8px;
}

.stat-card {
    background: var(--surface);
    border: 1px solid var(--line);
}

.stats-marquee {
    animation: none;
}

.section-compact {
    padding: 38px 0;
}

.section-dark {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    border-top: 1px solid rgba(148, 163, 184, 0.24);
    border-bottom: 1px solid rgba(148, 163, 184, 0.24);
}

.awards-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.awards-strip article {
    border: 1px solid rgba(148, 163, 184, 0.38);
    border-radius: var(--radius-lg);
    background: rgba(15, 23, 42, 0.42);
    padding: 18px;
}

.awards-strip__kicker {
    margin-bottom: 6px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #cbd5e1;
}

.awards-strip h3 {
    color: #f8fafc;
    font-size: 1rem;
    margin: 0;
}

.card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 20px 22px;
    box-shadow: var(--shadow);
    animation: fadeUp 0.55s ease both;
}

@media (hover: hover) and (pointer: fine) {
    .grid .card:not(.faq):not(.course-detail-card):hover {
        border-color: #cbd5e1;
        box-shadow: 0 4px 6px rgba(15, 23, 42, 0.04), 0 16px 36px rgba(15, 23, 42, 0.08);
        transform: translateY(-2px);
    }
}

.stats .card:nth-child(1) { animation-delay: 0.05s; }
.stats .card:nth-child(2) { animation-delay: 0.12s; }
.stats .card:nth-child(3) { animation-delay: 0.18s; }
.stats .card:nth-child(4) { animation-delay: 0.24s; }
.stats .card:nth-child(5) { animation-delay: 0.3s; }

.stat-card h3 {
    margin-bottom: 4px;
    color: var(--primary);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    animation: fadeUp 0.5s ease both;
}

.stat-card p {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted);
}

.course-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 1.25rem 0 1.5rem;
}

.course-tab {
    cursor: pointer;
    border: 1px solid var(--line);
    background: var(--surface-2);
    color: var(--text);
    font-weight: 600;
    font-size: 0.875rem;
    font-family: inherit;
    border-radius: 999px;
    padding: 11px 20px;
    min-height: 44px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
    .course-tab:hover {
        transform: translateY(-2px);
        border-color: var(--primary);
    }
}

.course-tab.is-active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(55, 48, 163, 0.22);
}

.course-tab:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
}

.course-panels {
    margin-top: 0.25rem;
}

.course-panel[hidden] {
    display: none !important;
}

.course-panel:not([hidden]) {
    animation: panelFade 0.35s ease;
}

@keyframes panelFade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.categories--cuet {
    margin-top: 1.25rem;
}

.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.chip {
    border: 1px solid var(--line);
    background: var(--surface-2);
    color: var(--text);
    font-weight: 500;
    font-size: 0.875rem;
    border-radius: 999px;
    padding: 8px 14px;
}

.grid {
    display: grid;
    gap: 16px;
}

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

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

.cards-5 {
    grid-template-columns: repeat(5, 1fr);
}

.cards-3 .card,
.cards-2 .card,
.cards-5 .card {
    animation: fadeUp 0.55s ease both;
}

.categories {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.categories span {
    padding: 8px 14px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    color: var(--muted);
    background: var(--surface);
    font-size: 0.8125rem;
    font-weight: 500;
}

.card--teacher {
    text-align: center;
    padding-top: 22px;
}

.teacher-photo {
    width: 132px;
    height: 132px;
    margin: 0 auto 14px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--line);
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
    background: var(--surface-2);
}

.teacher-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.teachers-grid {
    grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
}

.teacher-photo__initials {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #4338ca, #6366f1);
}

.feature h3 {
    color: var(--text);
}

.card--course {
    display: flex;
    flex-direction: column;
    border-top: 3px solid var(--primary);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.card--course h3 {
    color: var(--primary-dark);
    font-size: 1.05rem;
}

.card--course p {
    flex: 1;
}

.course-read-more {
    display: inline-flex;
    align-items: center;
    margin-top: 14px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.course-read-more:hover,
.course-read-more:focus-visible {
    text-decoration: underline;
}

.course-detail-page {
    padding: 56px 0 80px;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 50%, #eef2ff 100%);
}

.course-detail-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 20px;
}

.course-detail-breadcrumb a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.course-detail-breadcrumb a:hover {
    text-decoration: underline;
}

.course-detail-card {
    max-width: 56rem;
    margin: 0 auto;
    padding: 28px 32px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--line);
}

.course-detail-hero {
    display: grid;
    gap: 24px;
    margin-bottom: 28px;
}

@media (min-width: 768px) {
    .course-detail-hero {
        grid-template-columns: 1fr minmax(200px, 280px);
        align-items: start;
    }
}

.course-detail-hero__media img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
}

.course-detail-section {
    padding-top: 24px;
    margin-top: 8px;
    border-top: 1px solid #e2e8f0;
}

.course-detail-section h2 {
    margin: 0 0 14px;
    font-size: 1.2rem;
    color: var(--text);
}

.course-detail-list {
    margin: 0;
    padding-left: 1.25rem;
    line-height: 1.75;
    color: #334155;
}

.course-detail-list li + li {
    margin-top: 6px;
}

.course-detail-syllabus {
    white-space: pre-wrap;
}

.course-detail-badge {
    display: inline-block;
    margin-bottom: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    background: #e0e7ff;
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 700;
}

.course-detail-card h1 {
    margin: 0 0 16px;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--text);
}

.course-detail-summary {
    font-size: 1.05rem;
    color: var(--muted);
    margin: 0 0 24px;
    line-height: 1.65;
}

.course-detail-body {
    font-size: 1rem;
    line-height: 1.75;
    color: #334155;
    margin-bottom: 28px;
}

.course-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.testimonial {
    border-left: 3px solid var(--primary);
    background: var(--surface);
}

.testimonial cite {
    margin-top: 8px;
    display: block;
    font-style: normal;
    color: #1f2b4b;
    font-weight: 600;
}

.testimonial-slider {
    margin-top: 1.5rem;
    max-width: 44rem;
    margin-inline: auto;
}

.testimonial-slider__viewport {
    overflow: hidden;
}

.testimonial-slider__track {
    display: flex;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.testimonial-slider .testimonial-slide {
    flex: 0 0 100%;
    margin: 0;
    min-height: 11rem;
}

.testimonial-slide__inner {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.testimonial-photo {
    width: 5.5rem;
    height: 5.5rem;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 3px solid #e0e7ff;
    box-shadow: 0 8px 20px rgba(55, 48, 163, 0.15);
}

.testimonial-photo--placeholder {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4338ca, #6366f1);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 800;
}

.testimonial-slide__content {
    flex: 1;
    min-width: 0;
}

.testimonial-slide__content p {
    margin: 0;
}

.testimonial-slider__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.25rem;
}

.testimonial-slider__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--primary);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.testimonial-slider__btn:hover,
.testimonial-slider__btn:focus-visible {
    border-color: var(--primary-mid);
    background: #eef2ff;
    transform: translateY(-1px);
}

.testimonial-slider__dots {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.testimonial-slider__dot {
    width: 0.65rem;
    height: 0.65rem;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.testimonial-slider__dot.is-active {
    background: var(--primary);
    transform: scale(1.2);
}

.testimonial-slider__dot:focus-visible {
    outline: 2px solid var(--primary-mid);
    outline-offset: 2px;
}

.faq-list {
    display: grid;
    gap: 12px;
    max-width: 46rem;
    margin-inline: auto;
}

details.card.faq {
    padding: 0;
    overflow: hidden;
}

.faq-summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    min-height: 52px;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.35;
    color: var(--text);
    user-select: none;
    transition: background 0.2s ease;
}

.faq-summary::-webkit-details-marker {
    display: none;
}

.faq-summary::marker {
    content: "";
}

.faq-summary:hover {
    background: var(--surface-2);
}

.faq-summary:focus-visible {
    outline: none;
    box-shadow: inset 0 0 0 3px rgba(79, 70, 229, 0.35);
}

.faq-summary::after {
    content: "";
    flex-shrink: 0;
    width: 10px;
    height: 10px;
    margin-top: 2px;
    border-right: 2px solid var(--muted);
    border-bottom: 2px solid var(--muted);
    transform: rotate(45deg);
    transition: transform 0.25s ease;
}

details.faq[open] .faq-summary::after {
    transform: rotate(-135deg);
    margin-top: 8px;
}

.faq-body {
    padding: 0 18px 16px;
    border-top: 1px solid var(--line);
}

.faq-body p {
    margin: 14px 0 0;
    padding-top: 4px;
    color: var(--muted);
    line-height: 1.75;
}

.faq-body p:last-child {
    margin-bottom: 0;
}

.cta {
    background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
    border-top: 1px solid var(--line);
}

.cta .card,
#counselling .card {
    border: 1px solid #c7d2fe;
    box-shadow: var(--shadow-lg);
}

.counselling-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 24px;
    align-items: start;
}

.counselling-copy {
    padding-top: 6px;
}

.counselling-copy h2 {
    margin-left: 0 !important;
    margin-right: 0 !important;
    text-align: left !important;
}

.counselling-copy h2::after {
    transform-origin: left !important;
}

.counselling-copy p {
    max-width: 34rem;
}

.counselling-points {
    margin: 18px 0 0;
    padding-left: 1.2rem;
    color: var(--muted);
    max-width: 34rem;
}

.counselling-points li + li {
    margin-top: 8px;
}

.label-optional {
    font-weight: 500;
    color: var(--muted);
    font-size: 0.85rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 0;
}

.form-grid label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #29324d;
    font-size: 0.95rem;
    font-weight: 600;
}

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

.form-grid input,
.form-grid select,
.form-grid textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 13px 14px;
    min-height: 48px;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    background: #fff;
}

.form-grid textarea {
    min-height: 120px;
    resize: vertical;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
    border-color: var(--primary-mid);
    box-shadow: 0 0 0 3px rgba(67, 56, 202, 0.15);
}

.form-grid input[readonly] {
    background: #f8fafc;
    color: #334155;
    font-weight: 600;
}

.form-btn {
    grid-column: 1 / -1;
    border: 0;
    cursor: pointer;
    min-height: 48px;
}

.form-status {
    margin: 16px auto 0;
    max-width: 36rem;
    padding: 14px 18px;
    border-radius: 12px;
    background: #ecfdf5;
    border: 1px solid #6ee7b7;
    color: #065f46;
    font-weight: 600;
    text-align: center;
    min-height: 0;
}

.form-status:empty {
    display: none;
}

.site-footer {
    background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
    color: #d7def3;
    padding: 64px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 30px;
}

.site-footer h3 {
    color: #fff;
}

.site-footer p {
    color: #c8d1ec;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-company-desc {
    margin-bottom: 16px;
    max-width: 32rem;
}

.footer-subtitle {
    margin-top: 12px;
    margin-bottom: 10px;
    font-size: 0.96rem;
    color: #e2e8f0;
}

.footer-map-wrap {
    margin-top: 14px;
}

.footer-map {
    width: 100%;
    height: 170px;
    border: 0;
    border-radius: 10px;
    display: block;
}

.footer-map-link {
    display: inline-block;
    margin-top: 8px;
    font-size: 0.84rem;
    color: #c7d2fe;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-map-link:hover {
    color: #fff;
}

.footer-links--menu,
.footer-links--social,
.footer-links--legal {
    flex-direction: column;
    gap: 8px;
}

.footer-links--social {
    margin-bottom: 14px;
}

.footer-links--social a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.social-icon {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #fff;
    background: rgba(148, 163, 184, 0.38);
    border: 1px solid rgba(226, 232, 240, 0.24);
    flex-shrink: 0;
}

.footer-links a {
    color: #c8d1ec;
    text-decoration: none;
}

.footer-links a:hover {
    color: #fff;
}

.footer-address {
    font-style: normal;
}

.footer-address a {
    color: #e0e7ff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-address a:hover {
    color: #fff;
}

.footer-address a:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: 4px;
}

.footer-note {
    font-size: 0.82rem;
    font-weight: 500;
    color: #94a3b8;
}

.footer-bottom {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(148, 163, 184, 0.25);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px 16px;
}

.copyright {
    margin: 0;
    font-size: 0.86rem;
    line-height: 1.5;
}

.developer-credit {
    margin: 0;
    font-size: 0.86rem;
    color: #94a3b8;
    line-height: 1.5;
    text-align: right;
}

.developer-credit a {
    color: #e2e8f0;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.developer-credit a:hover {
    color: #fff;
}

.floating-actions {
    position: fixed;
    right: 16px;
    bottom: 18px;
    z-index: 130;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-btn {
    width: 50px;
    height: 50px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-btn__icon {
    width: 24px;
    height: 24px;
    display: block;
}

.floating-btn--whatsapp {
    background: #25d366;
}

.floating-btn--up {
    background: linear-gradient(135deg, #3730a3 0%, #4338ca 100%);
    font-size: 1.25rem;
    line-height: 1;
}

.floating-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.24);
}

.floating-btn:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
}

.desktop-only {
    display: inline-flex;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(28px) scale(0.99);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.animate-on-scroll.in-view {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.animate-fade-in-up {
    animation: fadeInUpSoft 0.65s ease both;
}

.animate-float-soft {
    animation: floatSoft 5s ease-in-out infinite;
}

.animate-reveal-left {
    animation: revealLeft 0.65s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.animate-reveal-right {
    animation: revealRight 0.65s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.animate-zoom-in-soft {
    animation: zoomInSoft 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.animate-soft-glow {
    animation: softGlow 0.9s ease-in-out infinite;
}

.stagger-parent > * {
    --stagger-step: 90ms;
    animation-delay: calc((var(--index, 0)) * var(--stagger-step));
}

.stagger-parent > *:nth-child(1) { --index: 0; }
.stagger-parent > *:nth-child(2) { --index: 1; }
.stagger-parent > *:nth-child(3) { --index: 2; }
.stagger-parent > *:nth-child(4) { --index: 3; }
.stagger-parent > *:nth-child(5) { --index: 4; }
.stagger-parent > *:nth-child(6) { --index: 5; }
.stagger-parent > *:nth-child(7) { --index: 6; }
.stagger-parent > *:nth-child(8) { --index: 7; }

.stats .stat-card:nth-child(1).animate-float-soft { animation-delay: 0s; }
.stats .stat-card:nth-child(2).animate-float-soft { animation-delay: 0.3s; }
.stats .stat-card:nth-child(3).animate-float-soft { animation-delay: 0.6s; }
.stats .stat-card:nth-child(4).animate-float-soft { animation-delay: 0.9s; }
.stats .stat-card:nth-child(5).animate-float-soft { animation-delay: 1.2s; }

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes lineReveal {
    to { transform: scaleX(1); }
}

@keyframes fadeInUpSoft {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatSoft {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

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

@keyframes revealRight {
    from {
        opacity: 0;
        transform: translateX(18px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomInSoft {
    from {
        opacity: 0;
        transform: scale(0.94);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes softGlow {
    0%, 100% {
        box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 8px 28px rgba(15, 23, 42, 0.07);
    }
    50% {
        box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08), 0 14px 30px rgba(67, 56, 202, 0.16);
    }
}

@keyframes bubbleFloatA {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(10px, -12px, 0) scale(1.06);
    }
}

@keyframes bubbleFloatB {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(-8px, 10px, 0) scale(0.96);
    }
}

/* --- Extra content animations (scroll section = .in-view) --- */

.hero.animate-on-scroll:not(.in-view) .eyebrow,
.hero.animate-on-scroll:not(.in-view) h1,
.hero.animate-on-scroll:not(.in-view) .lead,
.hero.animate-on-scroll:not(.in-view) .hero-actions,
.hero.animate-on-scroll:not(.in-view) .stats {
    opacity: 0;
}

.hero.animate-on-scroll.in-view .eyebrow {
    animation: slideInLeft 0.55s ease forwards;
}

.hero.animate-on-scroll.in-view h1 {
    animation: scaleFade 0.7s ease 0.08s forwards;
}

.hero.animate-on-scroll.in-view .lead {
    animation: slideInRight 0.65s ease 0.16s forwards;
}

.hero.animate-on-scroll.in-view .hero-actions {
    animation: fadeUp 0.55s ease 0.28s forwards;
}

.section.animate-on-scroll:not(.in-view) > .container > p {
    opacity: 0;
    transform: translateY(18px);
}

.section.animate-on-scroll.in-view > .container > p {
    animation: contentRise 0.65s ease forwards;
}

.section.animate-on-scroll.in-view > .container > p:nth-of-type(1) {
    animation-delay: 0.1s;
}

.section.animate-on-scroll.in-view > .container > p:nth-of-type(2) {
    animation-delay: 0.18s;
}

.section.animate-on-scroll:not(.in-view) .chip {
    opacity: 0;
    transform: translateY(14px) scale(0.94);
}

.section.animate-on-scroll.in-view .chip:nth-child(1) {
    animation: chipPop 0.48s ease 0.12s both;
}

.section.animate-on-scroll.in-view .chip:nth-child(2) {
    animation: chipPop 0.48s ease 0.2s both;
}

.section.animate-on-scroll.in-view .chip:nth-child(3) {
    animation: chipPop 0.48s ease 0.28s both;
}

.section.animate-on-scroll.in-view .chip:nth-child(4) {
    animation: chipPop 0.48s ease 0.36s both;
}

.section.animate-on-scroll:not(.in-view) .categories span {
    opacity: 0;
    transform: translateY(10px);
}

.section.animate-on-scroll.in-view .categories span:nth-child(1) {
    animation: tagPop 0.45s ease 0.08s both;
}

.section.animate-on-scroll.in-view .categories span:nth-child(2) {
    animation: tagPop 0.45s ease 0.12s both;
}

.section.animate-on-scroll.in-view .categories span:nth-child(3) {
    animation: tagPop 0.45s ease 0.16s both;
}

.section.animate-on-scroll.in-view .categories span:nth-child(4) {
    animation: tagPop 0.45s ease 0.2s both;
}

.section.animate-on-scroll.in-view .categories span:nth-child(5) {
    animation: tagPop 0.45s ease 0.24s both;
}

.section.animate-on-scroll.in-view .categories span:nth-child(6) {
    animation: tagPop 0.45s ease 0.28s both;
}

.section.animate-on-scroll.in-view .categories span:nth-child(7) {
    animation: tagPop 0.45s ease 0.32s both;
}

.section.animate-on-scroll.in-view .categories span:nth-child(8) {
    animation: tagPop 0.45s ease 0.36s both;
}

.animate-on-scroll.in-view .card h3 {
    opacity: 0;
    animation: headingSlide 0.52s ease forwards;
}

.animate-on-scroll.in-view .cards-3 .card:nth-child(1) h3 { animation-delay: 0.08s; }
.animate-on-scroll.in-view .cards-3 .card:nth-child(2) h3 { animation-delay: 0.12s; }
.animate-on-scroll.in-view .cards-3 .card:nth-child(3) h3 { animation-delay: 0.16s; }
.animate-on-scroll.in-view .cards-3 .card:nth-child(4) h3 { animation-delay: 0.2s; }
.animate-on-scroll.in-view .cards-3 .card:nth-child(5) h3 { animation-delay: 0.24s; }
.animate-on-scroll.in-view .cards-3 .card:nth-child(6) h3 { animation-delay: 0.28s; }
.animate-on-scroll.in-view .cards-3 .card:nth-child(7) h3 { animation-delay: 0.32s; }
.animate-on-scroll.in-view .cards-3 .card:nth-child(8) h3 { animation-delay: 0.36s; }
.animate-on-scroll.in-view .cards-3 .card:nth-child(9) h3 { animation-delay: 0.4s; }

.animate-on-scroll.in-view .cards-2 .card:nth-child(1) h3 { animation-delay: 0.08s; }
.animate-on-scroll.in-view .cards-2 .card:nth-child(2) h3 { animation-delay: 0.14s; }
.animate-on-scroll.in-view .cards-2 .card:nth-child(3) h3 { animation-delay: 0.2s; }
.animate-on-scroll.in-view .cards-2 .card:nth-child(4) h3 { animation-delay: 0.26s; }

.animate-on-scroll.in-view .cards-5 .card:nth-child(1) h3 { animation-delay: 0.06s; }
.animate-on-scroll.in-view .cards-5 .card:nth-child(2) h3 { animation-delay: 0.1s; }
.animate-on-scroll.in-view .cards-5 .card:nth-child(3) h3 { animation-delay: 0.14s; }
.animate-on-scroll.in-view .cards-5 .card:nth-child(4) h3 { animation-delay: 0.18s; }
.animate-on-scroll.in-view .cards-5 .card:nth-child(5) h3 { animation-delay: 0.22s; }

.animate-on-scroll.in-view .card > p {
    opacity: 0;
    animation: contentRise 0.55s ease forwards;
}

.animate-on-scroll.in-view .cards-3 .card:nth-child(1) > p { animation-delay: 0.22s; }
.animate-on-scroll.in-view .cards-3 .card:nth-child(2) > p { animation-delay: 0.26s; }
.animate-on-scroll.in-view .cards-3 .card:nth-child(3) > p { animation-delay: 0.3s; }
.animate-on-scroll.in-view .cards-3 .card:nth-child(4) > p { animation-delay: 0.34s; }
.animate-on-scroll.in-view .cards-3 .card:nth-child(5) > p { animation-delay: 0.38s; }
.animate-on-scroll.in-view .cards-3 .card:nth-child(6) > p { animation-delay: 0.42s; }
.animate-on-scroll.in-view .cards-3 .card:nth-child(7) > p { animation-delay: 0.46s; }
.animate-on-scroll.in-view .cards-3 .card:nth-child(8) > p { animation-delay: 0.5s; }
.animate-on-scroll.in-view .cards-3 .card:nth-child(9) > p { animation-delay: 0.54s; }

.animate-on-scroll.in-view .testimonial-slider .testimonial-slide p {
    animation: contentRise 0.55s ease forwards;
}

.animate-on-scroll.in-view .testimonial-slider .testimonial-slide cite {
    opacity: 0;
    animation: fadeSoft 0.55s ease 0.35s forwards;
}

.animate-on-scroll.in-view .faq:nth-child(1) { animation: slideUpCard 0.55s ease 0.06s both; }
.animate-on-scroll.in-view .faq:nth-child(2) { animation: slideUpCard 0.55s ease 0.14s both; }
.animate-on-scroll.in-view .faq:nth-child(3) { animation: slideUpCard 0.55s ease 0.22s both; }

.animate-on-scroll.in-view .form-grid label:nth-child(1) { animation: contentRise 0.5s ease 0.08s both; }
.animate-on-scroll.in-view .form-grid label:nth-child(2) { animation: contentRise 0.5s ease 0.14s both; }
.animate-on-scroll.in-view .form-grid label:nth-child(3) { animation: contentRise 0.5s ease 0.2s both; }
.animate-on-scroll.in-view .form-grid label:nth-child(4) { animation: contentRise 0.5s ease 0.26s both; }
.animate-on-scroll.in-view .form-btn { animation: scaleFade 0.55s ease 0.32s both; }

.site-footer.animate-on-scroll:not(.in-view) .footer-grid > div {
    opacity: 0;
    transform: translateY(16px);
}

.site-footer.animate-on-scroll.in-view .footer-grid > div:nth-child(1) {
    animation: contentRise 0.6s ease 0.1s both;
}

.site-footer.animate-on-scroll.in-view .footer-grid > div:nth-child(2) {
    animation: contentRise 0.6s ease 0.2s both;
}

.site-footer.animate-on-scroll.in-view .copyright {
    opacity: 0;
    animation: fadeSoft 0.7s ease 0.35s forwards;
}

.site-footer.animate-on-scroll.in-view .footer-links a {
    display: inline-block;
    animation: linkPop 0.45s ease both;
}

.site-footer.animate-on-scroll.in-view .footer-links a:nth-child(1) { animation-delay: 0.25s; }
.site-footer.animate-on-scroll.in-view .footer-links a:nth-child(2) { animation-delay: 0.3s; }
.site-footer.animate-on-scroll.in-view .footer-links a:nth-child(3) { animation-delay: 0.35s; }
.site-footer.animate-on-scroll.in-view .footer-links a:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-28px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(28px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleFade {
    from {
        opacity: 0;
        transform: scale(0.94);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes contentRise {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes chipPop {
    0% {
        opacity: 0;
        transform: translateY(14px) scale(0.92);
    }
    70% {
        transform: translateY(-3px) scale(1.03);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes tagPop {
    from {
        opacity: 0;
        transform: translateY(12px) rotate(-2deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotate(0deg);
    }
}

@keyframes headingSlide {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeSoft {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUpCard {
    from {
        opacity: 0;
        transform: translateY(22px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes linkPop {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    .animate-fade-in-up,
    .animate-float-soft,
    .animate-reveal-left,
    .animate-reveal-right,
    .animate-zoom-in-soft,
    .animate-soft-glow {
        animation: none !important;
    }

    .section.animate-on-scroll.in-view .chip,
    .section.animate-on-scroll.in-view .categories span {
        animation: fadeSoft 0.35s ease forwards !important;
    }

    .cards-3 .card,
    .cards-2 .card,
    .cards-5 .card {
        animation: fadeUp 0.4s ease both !important;
    }

    .course-panel:not([hidden]) {
        animation: none;
    }
}

@media (max-width: 1100px) {
    .cards-5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .top-promo {
        font-size: 0.75rem;
    }

    .nav-links {
        position: absolute;
        top: 74px;
        left: 4%;
        right: 4%;
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid var(--line);
        border-radius: 12px;
        box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
        padding: 12px 14px;
        display: none;
        flex-direction: column;
        gap: 4px;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 10px 12px;
        border-radius: 8px;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-links a:hover,
    .nav-links a:focus-visible {
        background: #eef2ff;
    }

    .nav-cta-mobile {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-top: 8px;
        padding: 12px 18px;
        border-radius: var(--radius);
        background: var(--primary);
        color: #fff !important;
        text-decoration: none;
        font-weight: 600;
        box-shadow: 0 4px 14px rgba(55, 48, 163, 0.25);
    }

    .nav-cta-mobile:focus-visible {
        outline: 3px solid var(--accent);
        outline-offset: 3px;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .desktop-only {
        display: none;
    }

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

    .cards-3,
    .cards-2 {
        grid-template-columns: 1fr;
    }

    .emotech-metrics {
        grid-template-columns: 1fr;
    }

    .awards-strip {
        grid-template-columns: 1fr;
    }

    .cards-3 .card,
    .cards-2 .card,
    .cards-5 .card {
        animation: fadeUp 0.7s ease both;
    }

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

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

    .counselling-layout {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .counselling-copy h2 {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .counselling-copy h2::after {
        transform-origin: center !important;
    }

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

    .developer-credit {
        text-align: left;
    }

    .testimonial-slide__inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

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

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

    .btn {
        width: 100%;
    }

    .brand-text {
        font-size: 1rem;
    }

    .brand-logo {
        height: 36px;
        width: 36px;
    }

    .brand--logo-only .brand-logo {
        height: 40px;
        max-width: min(160px, 50vw);
    }

    .floating-actions {
        right: 12px;
        bottom: 14px;
    }

    .floating-btn {
        width: 46px;
        height: 46px;
    }
}
