:root {
    --ink: #181327;
    --muted: #746a82;
    --line: #f0dce8;
    --paper: #ffffff;
    --soft: #fff7fb;
    --pink: #e52586;
    --pink-dark: #b70f69;
    --orange: #ff6b2c;
    --orange-soft: #fff0e8;
    --purple: #25143f;
    --purple-2: #120a24;
    --green: #10a66f;
    --shadow-sm: 0 10px 30px rgba(33, 15, 48, 0.08);
    --shadow-md: 0 22px 60px rgba(33, 15, 48, 0.14);
    --shadow-lg: 0 34px 90px rgba(33, 15, 48, 0.22);
    --brand: linear-gradient(135deg, var(--pink), var(--orange));
    --brand-purple: linear-gradient(135deg, var(--pink), #6c176f);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    background: #ffffff;
}

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

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

p {
    margin: 0 0 16px;
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 34px;
    padding: 6px clamp(24px, 4.4vw, 58px);
    border-bottom: 1px solid #f2e6ee;
    color: #64556f;
    background: #ffffff;
    font-size: 11px;
    font-weight: 800;
}

.topbar-contact,
.topbar-social {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
}

.topbar-contact a,
.topbar-contact span {
    position: relative;
    color: #64556f;
    white-space: nowrap;
}

.topbar-contact a::before {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-right: 7px;
    border-radius: 50%;
    background: var(--pink);
}

.topbar-contact span {
    overflow: hidden;
    text-overflow: ellipsis;
}

.topbar-social span {
    max-width: 460px;
    overflow: hidden;
    color: #64556f;
    font-size: 10px;
    letter-spacing: 0;
    text-overflow: ellipsis;
    text-transform: none;
    white-space: nowrap;
}

.mini-social {
    display: grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    color: #ffffff;
    background: var(--brand-purple);
    border: 0;
    box-shadow: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.mini-social:hover {
    transform: translateY(-2px);
    filter: saturate(1.12);
    box-shadow: 0 14px 28px rgba(47, 16, 55, 0.2);
}

.mini-social svg {
    width: 11px;
    height: 11px;
    fill: currentColor;
}

.mini-social.facebook {
    background: #3657a7;
}

.mini-social.linkedin {
    background: #0a66c2;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 82px;
    padding: 12px clamp(24px, 4.4vw, 58px);
    border-bottom: 1px solid rgba(238, 229, 236, 0.9);
    background: #ffffff;
    backdrop-filter: none;
    box-shadow: 0 12px 30px rgba(30, 24, 47, 0.07);
}

.brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 230px;
}

.brand-logo {
    width: min(220px, 22vw) !important;
    height: 62px !important;
    max-height: 62px !important;
    object-fit: contain;
    object-position: left center;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    color: #ffffff;
    background: var(--brand);
    font-weight: 900;
}

.brand-copy {
    margin-left: 12px;
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    color: var(--purple);
    font-size: 14px;
    font-weight: 900;
}

.brand small {
    color: var(--muted);
    font-size: 12px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-nav a,
.nav-dropdown > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 8px 0;
    border-radius: 0;
    color: #342b45;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.7px;
    line-height: 1;
    text-transform: none;
    transition: 0.22s ease;
}

.site-nav a:hover,
.site-nav a.active,
.nav-dropdown:hover > a {
    color: var(--pink);
    background: transparent;
}

.site-nav a.active {
    box-shadow: inset 0 -3px 0 var(--pink);
}

.site-nav .nav-cta {
    min-width: 132px;
    min-height: 46px;
    padding: 12px 20px;
    border-radius: 999px;
    color: #ffffff !important;
    background: var(--brand) !important;
    box-shadow: 0 14px 28px rgba(229, 37, 134, 0.25);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown > a::after {
    content: "";
    width: 7px;
    height: 7px;
    margin-left: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    display: grid;
    min-width: 270px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #ffffff;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 10px);
    transition: 0.22s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.nav-dropdown-menu::before {
    content: "";
    position: absolute;
    inset: -14px 0 auto;
    height: 14px;
}

.nav-dropdown-menu a {
    justify-content: flex-start;
    min-height: 42px;
    padding: 11px 14px;
    border-radius: 14px;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #ffffff;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: var(--purple);
}

.home-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(360px, 0.86fr) minmax(460px, 1.14fr);
    align-items: center;
    min-height: 520px;
    padding: 52px clamp(26px, 4.4vw, 58px) 88px;
    overflow: hidden;
    background:
        linear-gradient(90deg, #ffffff 0%, #ffffff 43%, rgba(255, 255, 255, 0.82) 50%, rgba(255, 244, 249, 0.2) 100%),
        radial-gradient(circle at 80% 28%, rgba(229, 37, 134, 0.1), transparent 24rem);
}

.home-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 76px;
    background: linear-gradient(180deg, transparent, #ffffff);
    pointer-events: none;
}

.home-hero__content {
    position: relative;
    z-index: 2;
    max-width: 610px;
}

.section-label {
    display: inline-block;
    margin-bottom: 10px;
    color: #3c3350;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: none;
}

.home-hero h1 {
    margin: 0 0 18px;
    color: var(--purple);
    font-size: clamp(42px, 4.8vw, 66px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: 0;
}

.home-hero h1 span,
.section-copy h2 span {
    color: var(--pink);
}

.home-hero p {
    max-width: 520px;
    color: #625970;
    font-size: 16px;
    line-height: 1.72;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 13px 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    color: #ffffff;
    background: var(--brand);
    font-size: 15px;
    font-weight: 900;
    box-shadow: 0 16px 34px rgba(229, 37, 134, 0.24);
    transition: 0.22s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 45px rgba(229, 37, 134, 0.34);
}

.btn-outline {
    color: var(--pink);
    background: #ffffff;
    border-color: var(--pink);
    box-shadow: none;
}

.btn-light {
    color: var(--pink);
    background: #ffffff;
    box-shadow: none;
}

.btn.whatsapp,
.whatsapp-pill {
    background: linear-gradient(135deg, var(--green), #078057) !important;
    color: #ffffff !important;
}

.home-hero__visual {
    position: relative;
    z-index: 1;
    align-self: stretch;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 520px;
    margin: -52px calc(clamp(26px, 4.4vw, 58px) * -1) -88px 0;
    overflow: hidden;
}

.home-hero__visual img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    object-position: center 82%;
    filter: none;
}

.home-hero__visual::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.78) 17%, rgba(255, 255, 255, 0.08) 44%, transparent 100%);
    pointer-events: none;
}

.founder-badge {
    position: absolute;
    left: 18%;
    bottom: 118px;
    z-index: 2;
    min-width: 190px;
    padding: 12px 22px;
    border-radius: 999px;
    color: #ffffff;
    background: var(--brand-purple);
    box-shadow: 0 22px 44px rgba(229, 37, 134, 0.22);
}

.founder-badge strong,
.founder-badge span {
    display: block;
}

.founder-badge span {
    font-size: 12px;
    opacity: 0.9;
}

.hero-features {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    max-width: 1080px;
    margin: -70px auto 0;
    padding: 18px 20px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #ffffff;
    box-shadow: var(--shadow-md);
}

.hero-features div {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 12px;
    align-items: center;
    padding: 8px 16px;
}

.feature-icon {
    display: grid;
    place-items: center;
    grid-row: span 2;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: var(--pink);
    background: #fff1f8;
    font-weight: 900;
}

.hero-features strong {
    color: var(--purple);
    font-size: 15px;
}

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

.home-section {
    padding: 76px clamp(24px, 5vw, 72px);
}

.about-snapshot {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1fr);
    gap: 70px;
    align-items: center;
    background: #ffffff;
}

.section-copy h2,
.section-heading h2,
.testimonial-card h2,
.association-card h2 {
    margin: 0 0 10px;
    color: var(--purple);
    font-size: clamp(30px, 3.4vw, 42px);
    line-height: 1.08;
}

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

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

.stats-board article {
    display: grid;
    place-items: center;
    min-height: 170px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.stats-board span {
    color: var(--pink);
    font-size: 32px;
    font-weight: 900;
}

.stats-board p {
    margin: 0;
    color: var(--purple);
    font-weight: 800;
}

.services-showcase {
    padding-top: 64px;
    padding-bottom: 64px;
    background:
        radial-gradient(circle at 18% 20%, rgba(229, 37, 134, 0.08), transparent 18rem),
        linear-gradient(180deg, #fff8fc 0%, #ffffff 100%);
}

.centered {
    max-width: 740px;
    margin: 0 auto 34px;
    text-align: center;
}

.premium-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    max-width: 1160px;
    margin: 0 auto;
}

.premium-service-card {
    min-height: 218px;
    padding: 28px 22px 24px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 12px 26px rgba(33, 15, 48, 0.08);
    text-align: center;
    transition: 0.22s ease;
}

.premium-service-card:hover,
.curriculum-card:hover,
.stats-board article:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.card-icon,
.number-pill {
    display: inline-grid;
    place-items: center;
    min-width: 38px;
    height: 38px;
    margin-bottom: 14px;
    border: 1px solid rgba(229, 37, 134, 0.2);
    border-radius: 999px;
    color: var(--pink);
    background: #fff1f8;
    font-size: 12px;
    font-weight: 900;
}

.premium-service-card .card-icon {
    font-size: 0;
}

.premium-service-card .card-icon::before {
    content: "";
    width: 15px;
    height: 15px;
    border: 2px solid currentColor;
    border-radius: 5px;
    box-shadow: 8px 8px 0 -5px currentColor, -8px 8px 0 -5px currentColor;
}

.premium-service-card h3,
.curriculum-card h3 {
    margin: 0 0 9px;
    color: var(--purple);
    font-size: 16px;
    line-height: 1.25;
}

.premium-service-card p,
.curriculum-card p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}

.premium-service-card a,
.curriculum-card a {
    color: var(--pink);
    font-size: 12px;
    font-weight: 900;
}

.premium-service-card a::after,
.curriculum-card a::after {
    content: "  +";
}

.curricula-showcase {
    padding-top: 58px;
    padding-bottom: 64px;
    background: #ffffff;
}

.curricula-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    max-width: 1160px;
    margin: 0 auto;
}

.curriculum-card {
    display: grid;
    grid-template-columns: 185px 1fr;
    gap: 18px;
    align-items: center;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 12px 26px rgba(33, 15, 48, 0.08);
    transition: 0.22s ease;
}

.curriculum-card--wide {
    grid-column: span 1;
}

.curriculum-card.reverse {
    position: relative;
    overflow: hidden;
    grid-column: span 2;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
    min-height: 285px;
    padding: 22px 0 22px 22px;
}

.curriculum-card.reverse img {
    order: 2;
    align-self: stretch;
    height: 100%;
    min-height: 245px;
    border-radius: 0 8px 8px 0;
    mask-image: linear-gradient(90deg, transparent 0%, #000 24%, #000 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 24%, #000 100%);
}

.curriculum-card img {
    width: 100%;
    height: 230px;
    border-radius: 8px;
    object-fit: cover;
}

.curriculum-card ul {
    display: grid;
    gap: 6px;
    padding: 0;
    margin: 12px 0;
    list-style: none;
}

.curriculum-card li {
    position: relative;
    padding-left: 20px;
    color: #665b70;
    font-size: 12px;
}

.curriculum-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 8px;
    height: 8px;
    border: 2px solid var(--pink);
    border-radius: 50%;
}

.why-premium {
    padding: 58px clamp(24px, 5vw, 72px) 64px;
    color: #ffffff;
    background:
        radial-gradient(circle at 20% 20%, rgba(229, 37, 134, 0.32), transparent 24rem),
        linear-gradient(135deg, #160b2d, #2b164c 55%, #140a24);
}

.light h2 {
    color: #ffffff;
}

.why-track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
    max-width: 1160px;
    margin: 30px auto 0;
}

.why-track::before {
    content: "";
    position: absolute;
    left: 7%;
    right: 7%;
    top: 29px;
    height: 1px;
    background: repeating-linear-gradient(90deg, rgba(229, 37, 134, 0.36) 0 4px, transparent 4px 42px);
    pointer-events: none;
}

.why-track article {
    position: relative;
    z-index: 1;
    display: grid;
    justify-items: center;
    gap: 12px;
    text-align: center;
}

.why-track span {
    display: grid;
    place-items: center;
    width: 66px;
    height: 66px;
    border: 2px solid rgba(229, 37, 134, 0.42);
    border-radius: 50%;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 0 10px rgba(229, 37, 134, 0.06), inset 0 0 24px rgba(255, 255, 255, 0.05);
    font-weight: 900;
}

.why-track svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.why-track strong {
    max-width: 150px;
    color: #ffffff;
    font-size: 13px;
    line-height: 1.25;
}

.trust-section {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 56px;
    background: #ffffff;
}

.testimonial-card,
.association-card {
    min-width: 0;
}

.testimonial-slides {
    position: relative;
    min-height: 210px;
}

.testimonial-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.45s ease, transform 0.45s ease, visibility 0.45s ease;
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

blockquote {
    margin: 0 0 20px;
    color: #5c5168;
    font-size: 18px;
    line-height: 1.7;
}

.testimonial-person strong,
.testimonial-person span {
    display: block;
}

.testimonial-person strong {
    color: var(--purple);
}

.testimonial-person span {
    color: var(--muted);
    font-size: 14px;
}

.slider-dots {
    display: flex;
    gap: 7px;
    margin-top: 22px;
}

.slider-dots button {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #f3b0d0;
    cursor: pointer;
    transition: width 0.25s ease, background 0.25s ease;
}

.slider-dots button.active {
    width: 22px;
    border-radius: 999px;
    background: var(--pink);
}

.school-logos {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    margin-top: 30px;
}

.school-logos span {
    display: grid;
    place-items: center;
    gap: 8px;
    min-height: 112px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    color: var(--purple);
    background:
        radial-gradient(circle at 50% 16%, rgba(229, 37, 134, 0.08), transparent 42px),
        #ffffff;
    box-shadow: var(--shadow-sm);
    text-align: center;
    font-weight: 900;
}

.school-logos strong {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: var(--pink);
    background: #fff1f8;
    border: 1px solid rgba(229, 37, 134, 0.18);
    font-size: 16px;
}

.school-logos small {
    color: var(--purple);
    font-size: 13px;
    line-height: 1.3;
}

.cta-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    max-width: 1160px;
    margin: 0 auto 70px;
    padding: 34px 38px;
    border-radius: 20px;
    color: #ffffff;
    background: var(--brand);
    box-shadow: 0 24px 70px rgba(229, 37, 134, 0.25);
}

.cta-banner h2 {
    margin: 0 0 6px;
    font-size: 30px;
}

.cta-banner p {
    margin: 0;
}

.section,
.page-hero {
    padding: 76px clamp(24px, 5vw, 72px);
}

.page-hero {
    color: #ffffff;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 107, 44, 0.28), transparent 24rem),
        linear-gradient(135deg, #180b2c, #4b145c);
}

.page-hero h1 {
    max-width: 850px;
    margin: 0 0 16px;
    font-size: clamp(38px, 5vw, 62px);
}

.page-hero p {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.86);
}

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

.grid.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
}

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

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

.card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

.card-body {
    padding: 26px;
}

.content {
    min-width: 0;
}

.content h2 {
    margin-top: 0;
    color: var(--purple);
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.15;
}

.content .actions,
.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.btn.secondary {
    color: var(--pink);
    background: #ffffff;
    border-color: var(--pink);
    box-shadow: none;
}

.grid.two > img.card {
    width: 100%;
    min-height: 360px;
    max-height: 520px;
    object-fit: cover;
}

.service-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.founder-image {
    width: 100%;
    max-height: 620px;
    object-fit: contain;
    padding: 18px;
    background: #fff7fb;
}

.feature-list {
    display: grid;
    gap: 14px;
    padding: 0;
    margin: 24px 0 0;
    list-style: none;
}

.feature-list li {
    padding: 18px 20px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

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

.form label {
    display: grid;
    gap: 7px;
    color: var(--purple);
    font-weight: 900;
}

.form input,
.form select,
.form textarea,
.chatbot-form input,
.chatbot-form select,
.chatbot-form textarea {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    color: var(--ink);
    font: inherit;
    background: #fffafd;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
    outline: none;
    border-color: var(--pink);
    box-shadow: 0 0 0 4px rgba(229, 37, 134, 0.12);
}

.form textarea {
    min-height: 130px;
}

.notice {
    padding: 14px 16px;
    border-radius: 14px;
    background: #eaf8f2;
    color: #087a52;
    font-weight: 900;
}

.notice.error {
    background: #fff0f7;
    color: var(--pink-dark);
}

.site-footer {
    color: #f8deec;
    background:
        radial-gradient(circle at 16% 20%, rgba(255, 107, 44, 0.24), transparent 25rem),
        linear-gradient(135deg, #17092a, #48135a 55%, #260b31);
}

.footer-shell {
    max-width: 1200px;
    margin: 0 auto;
    padding: 28px 24px 16px;
}

.footer-quick-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 34px;
}

.site-footer .footer-quick-actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex: 1 1 0;
    width: auto;
    max-width: 382px;
    min-height: 48px;
    margin-bottom: 0;
    padding: 0 30px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, rgba(225, 42, 130, 0.82), rgba(255, 91, 54, 0.9));
    box-shadow: 0 18px 36px rgba(21, 6, 35, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    font-size: 15px;
    font-weight: 900;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.site-footer .footer-quick-actions a:hover {
    transform: translateY(-2px);
    filter: brightness(1.04) saturate(1.08);
    box-shadow: 0 22px 42px rgba(21, 6, 35, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.footer-quick-actions svg {
    flex: 0 0 auto;
    width: 17px;
    height: 17px;
    fill: currentColor;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.45fr 0.85fr 0.85fr 1.1fr;
    align-items: start;
    gap: 30px;
    padding-bottom: 26px;
}

.site-footer a {
    display: block;
    width: fit-content;
    color: #f8deec;
    margin-bottom: 8px;
}

.footer-display {
    display: block;
    margin-bottom: 12px;
    color: #ffffff;
    font-size: clamp(30px, 3.6vw, 42px);
    font-weight: 900;
    line-height: 1.02;
}

.footer-subtitle,
.footer-kicker {
    display: block;
    margin-bottom: 10px;
    color: #ffbd8d;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.footer-link-toggle {
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    text-align: left;
}

.footer-toggle-icon {
    display: none;
}

.site-footer strong {
    color: #ffffff;
}

.site-footer p {
    color: #e9c9dd;
    margin: 8px 0;
    line-height: 1.55;
}

.social-links {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 8px;
    margin-top: 18px;
}

.social-icon {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: auto !important;
    min-width: 104px;
    height: 38px;
    padding: 0 12px;
    border-radius: 999px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1;
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 12px 24px rgba(20, 3, 30, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, filter 0.2s ease;
}

.social-icon:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.44);
    filter: saturate(1.08) brightness(1.03);
    box-shadow: 0 16px 30px rgba(20, 3, 30, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.social-icon svg {
    flex: 0 0 auto;
    width: 15px;
    height: 15px;
    fill: currentColor;
}

.social-icon span {
    color: inherit;
    white-space: nowrap;
}

.instagram {
    background: radial-gradient(circle at 28% 110%, #ffdc80 0 18%, transparent 19%),
        radial-gradient(circle at 18% 90%, #fcaf45 0 26%, transparent 27%),
        linear-gradient(135deg, #833ab4 0%, #c13584 42%, #e1306c 70%, #fd1d1d 100%);
}

.facebook {
    background: linear-gradient(135deg, #4267b2, #24448f);
}

.linkedin {
    background: linear-gradient(135deg, #0a66c2, #004182);
}

.footer-contact-card {
    align-self: start;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
}

.whatsapp-pill {
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 900;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
    color: #dfb9cf;
    font-size: 13px;
}

.chatbot {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999;
}

.chatbot-toggle {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border: 0;
    border-radius: 50%;
    color: #ffffff;
    background: var(--brand);
    box-shadow: 0 24px 54px rgba(229, 37, 134, 0.34);
    cursor: pointer;
}

.chatbot-toggle span {
    font-size: 18px;
    font-weight: 900;
}

.chatbot-panel {
    position: absolute;
    right: 0;
    bottom: 74px;
    display: none;
    width: min(410px, calc(100vw - 32px));
    max-height: min(620px, calc(100vh - 110px));
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #fff7fb;
    box-shadow: var(--shadow-lg);
}

.chatbot-panel.open {
    display: flex;
    flex-direction: column;
}

.chatbot-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 17px;
    color: #ffffff;
    background: var(--brand-purple);
}

.chatbot-avatar {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.18);
    font-weight: 900;
}

.chatbot-head strong,
.chatbot-head small {
    display: block;
}

.chatbot-head button {
    margin-left: auto;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
}

.chatbot-messages {
    display: grid;
    gap: 10px;
    overflow-y: auto;
    padding: 16px;
}

.bot-message,
.user-message {
    max-width: 88%;
    padding: 12px 14px;
    border-radius: 16px;
    font-size: 14px;
}

.bot-message {
    background: #ffffff;
    border: 1px solid var(--line);
}

.user-message {
    justify-self: end;
    color: #ffffff;
    background: var(--brand-purple);
}

.chatbot-service-picker {
    display: grid;
    gap: 10px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(33, 15, 48, 0.06);
}

.chatbot-service-picker label {
    color: var(--purple);
    font-size: 13px;
    font-weight: 900;
}

.chatbot-service-picker select {
    width: 100%;
    min-height: 46px;
    padding: 0 42px 0 14px;
    border: 1px solid rgba(229, 37, 134, 0.2);
    border-radius: 14px;
    color: var(--purple);
    background:
        linear-gradient(45deg, transparent 50%, var(--pink) 50%),
        linear-gradient(135deg, var(--pink) 50%, transparent 50%),
        #fffafd;
    background-position:
        calc(100% - 20px) 19px,
        calc(100% - 14px) 19px,
        0 0;
    background-size: 6px 6px, 6px 6px, 100% 100%;
    background-repeat: no-repeat;
    font: inherit;
    font-size: 14px;
    font-weight: 800;
    appearance: none;
}

.chatbot-service-picker select:focus {
    outline: none;
    border-color: var(--pink);
    box-shadow: 0 0 0 4px rgba(229, 37, 134, 0.1);
}

.quick-replies {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.quick-replies button {
    min-height: 40px;
    border: 1px solid var(--line);
    border-radius: 13px;
    color: var(--pink);
    background: #ffffff;
    font-weight: 900;
}

.quick-replies.is-disabled {
    display: none;
}

.chatbot-form,
.chatbot-reset-wrap,
.chatbot-actions {
    padding: 0 14px 12px;
}

.chatbot-form {
    padding-top: 10px;
}

.chatbot-input-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    padding: 7px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #ffffff;
}

.chatbot-input-row input {
    border: 0;
    background: transparent;
}

.chatbot-input-row button,
.chatbot-reset-wrap button {
    border: 0;
    border-radius: 14px;
    color: #ffffff;
    background: var(--brand);
    font-weight: 900;
}

.chatbot-input-row button {
    min-width: 76px;
}

.chatbot-reset-wrap button {
    width: 100%;
    min-height: 42px;
}

.chatbot-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.chatbot-actions a {
    padding: 13px 14px;
    border-radius: 16px;
    color: #ffffff;
}

.chatbot-actions a:first-child {
    background: var(--green);
}

.chatbot-actions a:last-child {
    background: var(--orange);
}

.chatbot-actions strong,
.chatbot-actions span {
    display: block;
}

@media (max-width: 1120px) {
    .home-hero,
    .about-snapshot,
    .trust-section {
        grid-template-columns: 1fr;
    }

    .home-hero {
        padding-bottom: 96px;
    }

    .home-hero__visual {
        min-height: 440px;
        margin: 18px -24px -96px;
    }

    .founder-badge {
        left: 24px;
        bottom: 84px;
    }

    .premium-card-grid,
    .why-track,
    .grid.four {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 900px) {
    .topbar {
        display: none;
    }

    .site-header {
        min-height: 76px;
        padding: 10px 18px;
    }

    .brand-logo {
        width: min(210px, 58vw) !important;
        height: 52px !important;
    }

    .nav-toggle {
        display: block;
    }

    .site-nav {
        position: absolute;
        left: 16px;
        right: 16px;
        top: 74px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        border: 1px solid var(--line);
        border-radius: 22px;
        background: #ffffff;
        box-shadow: var(--shadow-lg);
    }

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

    .site-nav a,
    .nav-dropdown > a {
        justify-content: flex-start;
        width: 100%;
        padding: 12px 14px;
        border-radius: 12px;
        font-size: 14px;
        box-shadow: none;
    }

    .site-nav a.active {
        background: #fff1f8;
        box-shadow: none;
    }

    .nav-dropdown-menu {
        position: static;
        display: none;
        min-width: 0;
        margin: 5px 0 8px 12px;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        box-shadow: none;
    }

    .nav-dropdown.open .nav-dropdown-menu {
        display: grid;
    }

    .nav-dropdown:hover .nav-dropdown-menu,
    .nav-dropdown:focus-within .nav-dropdown-menu {
        transform: none;
    }

    .hero-features,
    .stats-board,
    .curricula-grid,
    .premium-card-grid,
    .why-track,
    .school-logos,
    .grid.two,
    .grid.three,
    .grid.four,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .curriculum-card,
    .curriculum-card.reverse {
        grid-column: auto;
        grid-template-columns: 1fr;
        padding: 16px;
    }

    .curriculum-card.reverse img {
        order: 0;
        min-height: 220px;
        border-radius: 8px;
        mask-image: none;
        -webkit-mask-image: none;
    }

    .why-track::before {
        display: none;
    }

    .why-premium .why-track {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 26px 14px;
    }

    .why-track article {
        gap: 10px;
    }

    .why-track span {
        width: 62px;
        height: 62px;
    }

    .footer-quick-actions,
    .cta-banner,
    .footer-bottom {
        align-items: stretch;
        flex-direction: column;
    }

    .site-footer .footer-quick-actions a {
        flex: 0 0 auto;
        width: 100%;
        max-width: none;
    }

    .social-links {
        flex-wrap: wrap;
    }

    .footer-links {
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        padding-bottom: 8px;
    }

    .footer-link-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 42px;
        margin-bottom: 0;
        color: #ffbd8d;
        cursor: pointer;
    }

    .footer-toggle-icon {
        display: grid;
        place-items: center;
        width: 28px;
        height: 28px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        color: #ffffff;
        font-size: 18px;
        line-height: 1;
    }

    .footer-link-panel {
        display: none;
        padding: 4px 0 8px;
    }

    .footer-links.open .footer-link-panel {
        display: block;
    }

    .chatbot {
        right: 14px;
        bottom: 14px;
    }

    .chatbot-panel {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 84px;
        width: auto;
        max-height: calc(100dvh - 110px);
        border-radius: 18px;
    }

    .chatbot-messages {
        padding: 12px;
    }

    .bot-message,
    .user-message {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .home-hero {
        min-height: auto;
        padding-top: 58px;
        padding-bottom: 105px;
    }

    .home-hero__visual {
        min-height: 360px;
        margin: 22px -18px -105px;
    }

    .home-hero h1 {
        font-size: 40px;
    }

    .hero-features {
        margin: -70px 16px 0;
    }

    .home-section,
    .section,
    .page-hero {
        padding: 66px 18px;
    }

    .hero-actions,
    .hero-actions .btn,
    .btn {
        width: 100%;
    }

    .grid.two > img.card {
        min-height: 260px;
    }

    .card-body {
        padding: 22px;
    }

    .quick-replies {
        grid-template-columns: 1fr;
    }

    .chatbot-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .chatbot-actions a {
        min-width: 0;
        padding: 12px 10px;
        border-radius: 16px;
    }

    .chatbot-actions strong {
        font-size: 14px;
    }

    .chatbot-actions span {
        font-size: 13px;
        overflow-wrap: anywhere;
    }

    .chatbot-input-row {
        grid-template-columns: minmax(0, 1fr) auto;
    }
}
