:root {
    --ink: #172026;
    --muted: #607079;
    --paper: #f8f9f7;
    --white: #fff;
    --line: #dfe5e3;
    --plum: #382647;
    --plum-dark: #271c33;
    --sage: #d4e4dc;
    --moss: #86ab9b;
    --lime: #d8ed8d;
    --sand: #f3e8d5;
    --coral: #df8069;
    --shadow: 0 18px 40px rgba(27,39,45,.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--paper) !important;
    color: var(--ink);
    font-family: Inter,"Plus Jakarta Sans",Roboto,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
    line-height: 1.55;
    margin: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
}

.container {
    margin: auto;
    width: min(1160px, calc(100% - 48px));
}

.skip-link {
    background: #fff;
    color: var(--ink);
    left: -999px;
    padding: 10px;
    position: absolute;
    top: 12px;
    z-index: 100;
}

.skip-link:focus {
    left: 12px;
}

.site-header {
    background: rgba(248, 249, 247, .92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(23, 32, 38, .06);
    position: sticky;
    top: 0;
    z-index: 20;
}

.navigation {
    align-items: center;
    display: flex;
    gap: 28px;
    justify-content: space-between;
    min-height: 76px;
}

.brand {
    align-items: center;
    display: inline-flex;
    font-size: 1.07rem;
    font-weight: 700;
    gap: 9px;
    letter-spacing: -.03em;
}

.brand-symbol {
    align-items: center;
    background: var(--plum);
    border-radius: 50% 50% 43% 18%;
    color: #fff;
    display: inline-flex;
    font-family: inherit;
    font-size: 1.2rem;
    height: 51px;
    justify-content: center;
    width: 51px;
}

.nav-links {
    display: flex;
    gap: 27px;
    margin-left: auto;
}

.nav-links a {
    color: #445158;
    font-size: .9rem;
    font-weight: 600;
}

.nav-links a:hover,
.text-link:hover {
    color: var(--coral);
}

.button {
    align-items: center;
    background: var(--plum);
    border: 0;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font-family: inherit;
    font-size: .9rem;
    font-weight: 700;
    gap: 10px;
    justify-content: center;
    padding: 14px 19px;
    transition: transform .2s, background .2s;
}

.button:hover {
    background: #4b355d;
    transform: translateY(-2px);
}

.button-small {
    font-size: .83rem;
    padding: 10px 14px;
}

.hero-section {
    background: linear-gradient(100deg, #f8f9f7 53%, #ecf2ed 53%);
    overflow: hidden;
    padding: 82px 0 73px;
}

.hero-layout {
    align-items: center;
    display: grid;
    gap: 60px;
    grid-template-columns: 1.05fr .95fr;
}

.eyebrow {
    color: #66757d;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .13em;
    margin: 0 0 16px;
    text-transform: uppercase;
}

.status-dot {
    background: #a8c965;
    border-radius: 50%;
    display: inline-block;
    height: 8px;
    margin-right: 5px;
    width: 8px;
}

.hero-copy h1,
.section-heading h2,
.value-content h2,
.contact-layout h2,
.page-hero h1,
.course-hero h1,
.course-detail h2 {
    font-family: inherit;
    font-weight: 400;
    letter-spacing: -.055em;
    line-height: 1.02;
    margin: 0;
}

.hero-copy h1 {
    font-size: clamp(3.2rem, 5.8vw, 5.35rem);
    max-width: 660px;
}

.hero-copy h1 em {
    color: var(--coral);
    font-style: italic;
}

.hero-text {
    color: var(--muted);
    font-size: 1.06rem;
    margin: 25px 0;
    max-width: 550px;
}

.hero-actions {
    display: flex;
    gap: 13px;
}

.button-ghost {
    background: transparent;
    border: 1px solid #bdc9c4;
    color: var(--ink);
}

.button-ghost:hover {
    background: #fff;
}

.trust-row {
    display: flex;
    gap: 29px;
    margin-top: 48px;
}

.trust-row div {
    border-left: 1px solid #cbd6d1;
    padding-left: 13px;
}

.trust-row strong {
    display: block;
    font-family: inherit;
    font-size: 1.45rem;
    letter-spacing: -.04em;
}

.trust-row span {
    color: var(--muted);
    display: block;
    font-size: .72rem;
}

.hero-visual {
    background: #b8d8ce;
    border-radius: 42% 42% 17% 20%;
    height: 455px;
    isolation: isolate;
    overflow: hidden;
    position: relative;
}

.hero-photo {
    background-image: linear-gradient(0deg, rgba(24, 37, 42, .2), rgba(24, 37, 42, .02)), url('https://sda.academy/uploads/sda-acadmy.webp');
    background-position: center;
    background-size: cover;
    bottom: 0;
    clip-path: ellipse(45% 65% at 55% 57%);
    height: 100%;
    position: absolute;
    right: 3%;
    width: 84%;
    z-index: -1;
}

.hero-orbit {
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 50%;
    position: absolute;
}

.orbit-one {
    height: 320px;
    right: -150px;
    top: -100px;
    width: 320px;
}

.orbit-two {
    bottom: -130px;
    height: 280px;
    left: -145px;
    width: 280px;
}

.credential-card {
    align-items: center;
    background: #fffefb;
    border-radius: 9px;
    box-shadow: var(--shadow);
    display: flex;
    gap: 12px;
    left: 23px;
    padding: 14px 16px;
    position: absolute;
    top: 55px;
    transform: rotate(-3deg);
}

.mini-icon {
    align-items: center;
    background: var(--lime);
    border-radius: 50%;
    display: flex;
    height: 34px;
    justify-content: center;
    width: 34px;
}

.credential-card small {
    color: var(--muted);
    display: block;
    font-size: .68rem;
}

.credential-card strong {
    display: block;
    font-size: .84rem;
}

.cpd-chip {
    background: var(--plum);
    bottom: 28px;
    color: #fff;
    display: flex;
    gap: 10px;
    max-width: 207px;
    padding: 14px;
    position: absolute;
    right: 20px;
}

.cpd-chip span {
    border: 1px solid var(--lime);
    color: var(--lime);
    font-size: .68rem;
    font-weight: 700;
    height: 31px;
    line-height: 30px;
    text-align: center;
    width: 31px;
}

.cpd-chip strong {
    font-size: .75rem;
    line-height: 1.35;
}

.logo-bar {
    background: var(--plum);
    color: #fff;
    padding: 21px 0;
}

.logo-bar .container {
    align-items: center;
    display: flex;
    gap: 30px;
    justify-content: space-between;
}

.logo-bar p {
    font-size: .86rem;
    margin: 0;
}

.assurance-list {
    display: flex;
    gap: 23px;
}

.assurance-list span {
    color: #d3ded9;
    font-size: .75rem;
}

.section {
    padding: 25px 0;
}

.section-heading {
    align-items: end;
    display: flex;
    justify-content: space-between;
    margin-bottom: 39px;
}

.section-heading h2,
.value-content h2,
.contact-layout h2,
.course-detail h2 {
    font-size: clamp(2.3rem, 4vw, 3.55rem);
    max-width: 680px;
}

.section-intro {
    color: var(--muted);
    font-size: .94rem;
    line-height: 1.65;
    max-width: 350px;
}

.text-link {
    font-size: .86rem;
    font-weight: 700;
    white-space: nowrap;
}

.text-link span,
.course-footer a span {
    margin-left: 7px;
}

.course-grid {
    display: grid;
    gap: 19px;
    grid-template-columns: repeat(3, 1fr);
}

.course-card {
    background: var(--white);
    border: 1px solid #e4e9e6;
    border-radius: 9px;
    box-shadow: 0 7px 18px rgba(30, 40, 44, .025);
    overflow: hidden;
    transition: transform .2s, box-shadow .2s;
}

.course-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.course-image {
    background-color: #d2ded9;
    background-position: center;
    background-size: cover;
    display: block;
    height: 196px;
    position: relative;
}

.course-tag,
.course-free {
    background: #fff;
    color: #36444a;
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .07em;
    padding: 6px 8px;
    position: absolute;
    text-transform: uppercase;
    top: 12px;
}

.course-tag {
    left: 12px;
}

.course-free {
    background: var(--lime);
    right: 12px;
}

.course-body {
    padding: 21px;
}

.course-category {
    color: #65767e;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .1em;
    margin: 0 0 9px;
    text-transform: uppercase;
}

.course-card h3 {
    font-family: inherit;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: -.04em;
    line-height: 1.1;
    margin: 0;
}

.course-card h3 a:hover {
    color: var(--coral);
}

.course-summary {
    color: var(--muted);
    font-size: .86rem;
    line-height: 1.55;
    margin: 13px 0 17px;
}

.course-meta {
    border-bottom: 1px solid var(--line);
    border-top: 1px solid var(--line);
    color: #53646b;
    display: flex;
    font-size: .75rem;
    gap: 14px;
    padding: 11px 0;
}

.course-footer {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

.course-footer strong {
    font-size: .97rem;
}

.course-footer a {
    font-size: .79rem;
    font-weight: 700;
}

.category-section {
    background: #e8f0ec;
}

.category-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, 1fr);
}

.category-card {
    border-radius: 8px;
    min-height: 235px;
    padding: 26px;
    position: relative;
    transition: transform .2s;
}

.category-card:hover {
    transform: translateY(-3px);
}

.category-card h3 {
    font-family: inherit;
    font-size: 1.68rem;
    font-weight: 400;
    letter-spacing: -.04em;
    line-height: 1.05;
    margin: 28px 0 11px;
    max-width: 230px;
}

.category-card p {
    font-size: .86rem;
    line-height: 1.55;
    margin: 0;
    max-width: 255px;
}

.category-count {
    font-size: .69rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.category-arrow {
    bottom: 23px;
    font-size: 1.35rem;
    position: absolute;
    right: 25px;
}

.accent-plum {
    background: #cbbbd5;
    color: #30223c;
}

.accent-sage {
    background: #b9d3c5;
    color: #1e3c36;
}

.accent-sand {
    background: #eddbbd;
    color: #473723;
}

.value-section {
    background: #fff;
}

.value-layout {
    align-items: center;
    display: grid;
    gap: 9%;
    grid-template-columns: 42% 49%;
}

.value-photo {
    background-image: linear-gradient(0deg, rgba(15, 32, 36, .16), rgba(15, 32, 36, 0)), url('https://images.unsplash.com/photo-1551076805-e1869033e561?auto=format&fit=crop&w=1000&q=85');
    background-position: center;
    background-size: cover;
    border-radius: 47% 47% 15% 15%;
    height: 530px;
}

.value-content>p:not(.eyebrow) {
    color: var(--muted);
    margin: 22px 0 26px;
    max-width: 520px;
}

.value-points>div {
    border-top: 1px solid var(--line);
    display: flex;
    gap: 19px;
    padding: 17px 0;
}

.value-points>div:last-child {
    border-bottom: 1px solid var(--line);
}

.value-points>div>span {
    color: var(--coral);
    font-family: inherit;
    font-size: 1.25rem;
}

.value-points h3 {
    font-size: .94rem;
    margin: 0;
}

.value-points p {
    color: var(--muted);
    font-size: .82rem;
    margin: 3px 0 0;
}

.educator-section {
    background: #f5f0ea;
}

.educator-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, 1fr);
}

.educator-card {
    position: relative;
}

.educator-photo {
   background-color: #c4d5d0;   
    background-position: center;  
    background-repeat: no-repeat;  
    background-size: contain;      
    border-radius: 8px;
    height: 290px;
    width: 100%;
}

.educator-photo-wrap {
    background-color: #efefef;   
    background-position: center;  
    background-repeat: no-repeat;  
    background-size: contain;      
    border-radius: 8px;
    height: 290px;
    width: 100%;
}    

.educator-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Resmi orantılı şekilde alana sığdırır, gerekirse kırpar ama bozulmaz */
    display: block;
}

.educator-card p {
    color: #65747b;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    margin: 15px 0 5px;
    text-transform: uppercase;
}

.educator-card h3 {
    font-family: inherit;
    font-size: 1.47rem;
    font-weight: 400;
    letter-spacing: -.04em;
    margin: 0;
}

.educator-card span {
    color: var(--muted);
    font-size: .82rem;
}

.quote-section {
    background: var(--plum);
    color: #fff;
    padding: 80px 0;
}

.quote-grid {
    display: grid;
    gap: 8%;
    grid-template-columns: 1fr 1fr;
}

.quote-grid figure {
    border-left: 1px solid #8b7a9a;
    margin: 0;
    padding-left: 26px;
}

.quote-grid blockquote {
    font-family: inherit;
    font-size: clamp(1.6rem, 2.5vw, 2.25rem);
    letter-spacing: -.04em;
    line-height: 1.1;
    margin: 0 0 22px;
}

.quote-grid figcaption strong,
.quote-grid figcaption span {
    display: block;
    font-size: .8rem;
}

.quote-grid figcaption span {
    color: #c3b7cf;
    margin-top: 2px;
}

.contact-section {
    background: var(--coral);
    padding: 73px 0;
}

.contact-layout {
    align-items: center;
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.contact-layout .eyebrow {
    color: #643b35;
}

.contact-layout h2 {
    max-width: 700px;
}

.contact-layout p:not(.eyebrow) {
    font-size: .93rem;
    margin: 16px 0 0;
    max-width: 560px;
}

.button-light {
    background: #fff;
    color: var(--plum);
    white-space: nowrap;
}

.button-light:hover {
    background: var(--lime);
}

.site-footer {
    background: #1d272c;
    color: #e9eeeb;
    padding: 55px 0 20px;
}

.footer-grid {
    display: grid;
    gap: 7%;
    grid-template-columns: 1.6fr .7fr .9fr;
}

.brand-light .brand-symbol {
    background: var(--lime);
    color: var(--plum);
}

.footer-intro p {
    color: #b9c6c2;
    font-size: .86rem;
    max-width: 300px;
}

.footer-title {
    color: var(--lime);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .12em;
    margin: 5px 0 12px;
    text-transform: uppercase;
}

.site-footer a:not(.brand) {
    color: #e3e9e6;
    display: block;
    font-size: .84rem;
    margin: 5px 0;
}

.site-footer a:not(.brand):hover {
    color: var(--lime);
}

.footer-address {
    color: #b9c6c2;
    font-size: .8rem;
    line-height: 1.5;
}

.footer-bottom {
    border-top: 1px solid #3c494d;
    color: #aebbb6;
    display: flex;
    font-size: .72rem;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 19px;
}

.page-hero {
    background: #e7eee9;
    padding: 30px 0;
}

.page-hero h1 {
    font-size: clamp(3rem, 5vw, 4.6rem);
    max-width: 650px;
}

.page-hero p:last-child {
    color: var(--muted);
    font-size: 1rem;
    max-width: 530px;
}

.catalogue-section {
    padding-top: 52px;
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter {
    border: 1px solid #cfd9d4;
    border-radius: 100px;
    font-size: .78rem;
    font-weight: 700;
    padding: 9px 13px;
    background: transparent;
    cursor: pointer;
}

.filter:hover,
.filter.is-active {
    background: var(--plum);
    border-color: var(--plum);
    color: #fff;
}

.result-count {
    color: var(--muted);
    font-size: .8rem;
    margin: 25px 0 17px;
}

.catalogue-grid {
    row-gap: 24px;
}

.empty-state {
    background: #fff;
    border: 1px solid var(--line);
    padding: 45px;
    text-align: center;
}

.empty-state h2 {
    font-family: inherit;
    font-weight: 400;
    margin: 0 0 18px;
}

.course-hero {
    background: #e7eee9;
    padding: 58px 0;
}

.course-hero-layout {
    align-items: center;
    display: grid;
    gap: 9%;
    grid-template-columns: 1.05fr .95fr;
}

.back-link {
    color: #52646a;
    display: inline-block;
    font-size: .8rem;
    font-weight: 700;
    margin-bottom: 45px;
}

.course-hero h1 {
    font-size: clamp(2.8rem, 4.5vw, 4.35rem);
    max-width: 630px;
}

.course-hero p:not(.eyebrow) {
    color: var(--muted);
    font-size: 1rem;
    max-width: 600px;
}

.course-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
}

.course-hero-meta span {
    background: #fff;
    border: 1px solid #d8e2dd;
    font-size: .73rem;
    font-weight: 700;
    padding: 8px 10px;
}

.course-hero-image {
    background-color: #bdcfca;
    background-position: center;
    background-size: cover;
    border-radius: 20% 20% 11% 11%;
    height: 370px;
}

.detail-section {
    padding-top: 79px;
}

.detail-layout {
    align-items: start;
    display: grid;
    gap: 9%;
    grid-template-columns: 1.25fr .75fr;
}

.course-detail h2 {
    font-size: 2.25rem;
}

.rich-text {
    color: #53646a;
    font-size: .98rem;
    line-height: 1.75;
    margin: 21px 0 56px;
}

.module-list h2 {
    margin-bottom: 18px;
}

.module {
    align-items: start;
    border-top: 1px solid var(--line);
    display: grid;
    gap: 14px;
    grid-template-columns: 39px 1fr auto;
    padding: 17px 0;
}

.module:last-child {
    border-bottom: 1px solid var(--line);
}

.module>span {
    color: var(--coral);
    font-family: inherit;
    font-size: 1.15rem;
}

.module h3 {
    font-size: .97rem;
    margin: 0;
}

.module p {
    color: var(--muted);
    font-size: .82rem;
    margin: 4px 0 0;
}

.module>strong {
    color: #586971;
    font-size: .75rem;
}

.educators-on-course {
    margin-top: 63px;
}

.detail-educator-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 22px;
}

.detail-educator-grid article {
    align-items: center;
    background: #fff;
    display: flex;
    gap: 13px;
    padding: 12px;
}

.detail-educator-photo {
    background-position: center;
    background-size: cover;
    border-radius: 50%;
    flex: 0 0 52px;
    height: 52px;
}

.detail-educator-grid h3 {
    font-size: .87rem;
    margin: 0;
}

.detail-educator-grid p,
.detail-educator-grid span {
    color: var(--muted);
    font-size: .71rem;
    margin: 2px 0;
}

.enquiry-card {
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 25px;
    position: sticky;
    top: 94px;
}

.enquiry-price {
    border-bottom: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    padding-bottom: 19px;
}

.enquiry-price span {
    color: var(--muted);
    font-size: .78rem;
}

.enquiry-price strong {
    font-size: 1.15rem;
}

.enquiry-card ul {
    color: #4d6066;
    font-size: .8rem;
    line-height: 2;
    list-style: none;
    margin: 17px 0 25px;
    padding: 0;
}

.enquiry-card h2 {
    font-family: inherit;
    font-size: 1.75rem;
    font-weight: 400;
    letter-spacing: -.04em;
    margin: 0;
}

.enquiry-card>p:not(.form-message) {
    color: var(--muted);
    font-size: .82rem;
}

.enquiry-card label {
    display: block;
    font-size: .75rem;
    font-weight: 700;
    margin: 13px 0;
}

.enquiry-card label small {
    color: var(--muted);
    font-weight: 400;
}

.enquiry-card input {
    border: 1px solid #cfd9d4;
    font-family: inherit;
    margin-top: 5px;
    padding: 10px;
    width: 100%;
}

.enquiry-card input:focus {
    border-color: var(--plum);
    outline: 2px solid #e4ddeb;
}

.button-wide {
    margin-top: 8px;
    width: 100%;
}

.form-message {
    font-size: .83rem;
    line-height: 1.5;
    padding: 12px;
}

.form-message.success {
    background: #e8f4e3;
    color: #335d37;
}

.form-message.error {
    background: #f9e5e1;
    color: #8a3d31;
}

.dashboard-grid-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.dashboard-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.dashboard-card h3 {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 1.15rem;
    color: #1e293b;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 10px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #334155;
}

.form-control {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 0.95rem;
    box-sizing: border-box;
    transition: border-color 0.2s;
}

.form-control:focus {
    outline: none;
    border-color: #0284c7;
}

.alert-box {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.alert-success {
    background-color: #dcfce7;
    border: 1px solid #86efac;
    color: #166534;
}

.alert-error {
    background-color: #fee2e2;
    border: 1px solid #fca5a5;
    color: #991b1b;
}

.cert-list {
    margin-bottom: 16px;
}

.cert-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 10px;
}

.cert-name {
    font-weight: 500;
    font-size: 0.88rem;
    word-break: break-all;
    color: #334155;
}

.cert-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-danger {
    background-color: #ef4444;
    color: #fff;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.82rem;
}

.btn-danger:hover {
    background-color: #dc2626;
}

/* ==========================================
   DESTEK SİSTEMİ STİLLERİ 
   ========================================== */

.support-banner {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.support-badge-top {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #e0e7ff;
    color: #3730a3;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.support-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 8px 0;
}

.support-desc {
    color: #64748b;
    font-size: 0.92rem;
    margin: 0;
    max-width: 480px;
    line-height: 1.5;
}

.support-stats-wrapper {
    display: flex;
    gap: 12px;
}

.support-stat-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 14px 20px;
    min-width: 110px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.support-stat-card .stat-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
}

.support-stat-card .stat-value {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
}

.support-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}

.support-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 6px 0;
}

.support-card-sub {
    font-size: 0.88rem;
    color: #64748b;
    margin: 0 0 20px 0;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 600;
}

.status-pill::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.status-pill.open {
    background-color: #e0f2fe;
    color: #0369a1;
}

.status-pill.open::before { 
    background-color: #0284c7; 
}

.status-pill.answered {
    background-color: #dcfce7;
    color: #15803d;
}

.status-pill.answered::before { 
    background-color: #16a34a; 
}

.status-pill.closed {
    background-color: #f1f5f9;
    color: #64748b;
}

.status-pill.closed::before { 
    background-color: #94a3b8; 
}

.ticket-modal {
    display: none;
    position: fixed;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.ticket-modal.is-active,
.ticket-modal[style*="display: flex"] {
    opacity: 1;
    visibility: visible;
}

.ticket-modal-content {
    background: #ffffff;
    border-radius: 16px;
    width: 100%;
    max-width: 680px;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.ticket-modal.is-active .ticket-modal-content,
.ticket-modal[style*="display: flex"] .ticket-modal-content {
    transform: translateY(0);
}

.ticket-modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ticket-modal-body {
    padding: 24px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.chat-bubble {
    padding: 14px 18px;
    border-radius: 12px;
    max-width: 80%;
    font-size: 0.92rem;
    line-height: 1.5;
}

.chat-bubble.user {
    background: #e0f2fe;
    color: #0369a1;
    align-self: flex-end;
    border-bottom-right-radius: 2px;
}

.chat-bubble.admin {
    background: #f1f5f9;
    color: #334155;
    align-self: flex-start;
    border-bottom-left-radius: 2px;
}

.chat-meta {
    font-size: 0.75rem;
    margin-bottom: 4px;
    font-weight: 700;
    display: block;
}

.support-input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.2s ease;
    background: #ffffff;
}

.support-input:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.editor-wrapper {
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
}

.editor-toolbar {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 10px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    flex-wrap: wrap;
}

.editor-btn {
    background: transparent;
    border: none;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #475569;
    cursor: pointer;
}

.editor-btn:hover {
    background: #e2e8f0;
}

.editor-textarea {
    width: 100%;
    padding: 12px 14px;
    border: none;
    outline: none;
    resize: vertical;
    font-family: inherit;
    font-size: 0.9rem;
}

.table-top-bar, 
.table-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    font-size: 0.85rem;
    color: #64748b;
}

.table-bottom-bar {
    margin-bottom: 0;
    margin-top: 16px;
}

.pagination-nav {
    display: flex;
    gap: 4px;
}

.page-btn {
    padding: 6px 12px;
    border: 1px solid #cbd5e1;
    background: #ffffff;
    border-radius: 6px;
    color: #334155;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    text-decoration: none;
}

.page-btn.active {
    background: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
}

.btn-submit-ticket {
    background: #2563eb;
    color: #ffffff;
    padding: 10px 22px;
    border-radius: 8px;
    border: none;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.2);
    transition: background 0.2s;
}

.btn-submit-ticket:hover {
    background: #1d4ed8;
}

/* ==========================================
   DASHBOARD PANELİ STİLLERİ
   ========================================== */

.dash-wrapper { 
    padding: 40px 0; 
    font-family: "Roboto", Arial, sans-serif; 
}

.dash-layout { 
    display: flex; 
    gap: 28px; 
    align-items: flex-start; 
}

.dash-sidebar {
    width: 280px; 
    flex-shrink: 0; 
    background: var(--white);
    border: 1px solid var(--line); 
    border-radius: 16px; 
    padding: 24px 20px;
    box-shadow: 0 4px 20px rgba(27,39,45,.04);
}

.dash-user-badge {
    display: inline-flex; 
    align-items: center; 
    gap: 6px;
    background: #ede6f2; 
    color: var(--plum); 
    font-size: 0.72rem;
    font-weight: 800; 
    padding: 5px 12px; 
    border-radius: 8px;
    letter-spacing: 0.5px; 
    margin-bottom: 14px; 
    text-transform: uppercase;
}

.dash-user-name { 
    font-family: inherit;
    font-size: 1.15rem; 
    font-weight: 700; 
    color: var(--ink); 
    margin: 0 0 4px 0; 
}

.dash-user-email { 
    font-size: 0.82rem; 
    color: var(--muted); 
    margin: 0 0 24px 0; 
    word-break: break-all; 
}

.dash-menu { 
    display: flex; 
    flex-direction: column; 
    gap: 6px; 
}

.dash-menu-item {
    display: flex; 
    align-items: center; 
    gap: 12px; 
    padding: 12px 16px;
    border-radius: 10px; 
    color: var(--muted); 
    font-size: 0.9rem; 
    font-weight: 600;
    text-decoration: none; 
    border: 1px solid transparent; 
    transition: all 0.2s;
    background: transparent; 
    cursor: pointer; 
    text-align: left; 
    width: 100%;
}

.dash-menu-item:hover, 
.dash-menu-item.active {
    background: #f1f5f3; 
    border-color: var(--line); 
    color: var(--ink);
}

.dash-menu-item.active { 
    background: #e8f0ec; 
    font-weight: 700; 
    color: var(--plum); 
}

.dash-menu-item.logout { 
    color: var(--coral); 
    margin-top: 12px; 
}

.dash-menu-item.logout:hover { 
    background: #fdf2f0; 
    border-color: #f8d7d0; 
}

.dash-main { 
    flex: 1; 
    min-width: 0; 
}

.dash-hero-card {
    background: linear-gradient(135deg, #f4eff7 0%, var(--white) 100%);
    border: 1px solid var(--line); 
    border-radius: 18px; 
    padding: 28px;
    display: flex; 
    justify-content: space-between; 
    align-items: flex-start;
    margin-bottom: 24px; 
    position: relative; 
    overflow: hidden;
}

.dash-pill-mini {
    display: inline-flex; 
    align-items: center; 
    gap: 6px; 
    background: #ede6f2;
    color: var(--plum); 
    font-size: 0.7rem; 
    font-weight: 800; 
    padding: 4px 10px;
    border-radius: 20px; 
    text-transform: uppercase; 
    margin-bottom: 12px;
}

.dash-pill-mini.blue { 
    background: #e8f0ec; 
    color: #2e594a; 
}

.dash-hero-card h1 { 
    font-family: inherit;
    font-size: 2.1rem; 
    font-weight: 400; 
    letter-spacing: -.03em; 
    color: var(--ink); 
    margin: 0 0 10px 0; 
}

.dash-hero-card h1 span { 
    color: var(--muted); 
    font-weight: 400; 
}

.dash-hero-card p { 
    color: var(--muted); 
    font-size: 0.92rem; 
    margin: 0; 
    max-width: 480px; 
    line-height: 1.5; 
}

.dash-user-card-right {
    background: var(--white); 
    border: 1px solid var(--line); 
    border-radius: 12px;
    padding: 16px 20px; 
    min-width: 220px; 
    box-shadow: 0 2px 8px rgba(27,39,45,.03);
}

.dash-user-card-right span { 
    display: block; 
    font-size: 0.68rem; 
    font-weight: 800; 
    color: var(--muted); 
    letter-spacing: 0.5px; 
    margin-bottom: 6px; 
}

.dash-user-card-right strong { 
    display: block; 
    font-size: 1.05rem; 
    color: var(--ink); 
}

.dash-user-card-right small { 
    display: block; 
    font-size: 0.82rem; 
    color: var(--muted); 
    margin-top: 2px; 
}

.dash-stats-grid { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 16px; 
    margin-bottom: 24px; 
}

.dash-stat-box {
    background: var(--white); 
    border: 1px solid var(--line); 
    border-radius: 14px;
    padding: 18px 20px; 
    box-shadow: 0 2px 6px rgba(27,39,45,.02);
}

.dash-stat-icon {
    width: 36px; 
    height: 36px; 
    border-radius: 10px; 
    background: #ede6f2;
    color: var(--plum); 
    display: flex; 
    align-items: center; 
    justify-content: center;
    margin-bottom: 14px;
}

.dash-stat-label { 
    font-size: 0.7rem; 
    font-weight: 800; 
    color: var(--muted); 
    text-transform: uppercase; 
    letter-spacing: 0.4px; 
    display: block; 
    margin-bottom: 4px; 
}

.dash-stat-value { 
    font-family: inherit;
    font-size: 1.8rem; 
    font-weight: 400; 
    color: var(--ink); 
    line-height: 1; 
}

.dash-sec-card {
    background: var(--white); 
    border: 1px solid var(--line); 
    border-radius: 18px;
    padding: 28px; 
    margin-bottom: 24px; 
    box-shadow: 0 2px 8px rgba(27,39,45,.02);
}

.dash-sec-header { 
    margin-bottom: 20px; 
}

.dash-sec-header h2 { 
    font-family: inherit;
    font-size: 1.3rem; 
    font-weight: 400; 
    letter-spacing: -.03em; 
    color: var(--ink); 
    margin: 0 0 4px 0; 
}

.dash-sec-header p { 
    font-size: 0.88rem; 
    color: var(--muted); 
    margin: 0; 
}

.dash-quick-banner {
    background: #f8f9f7; 
    border: 1px solid var(--line); 
    border-radius: 14px;
    padding: 24px; 
    display: flex; 
    gap: 20px; 
    align-items: flex-start; 
    margin-bottom: 20px;
}

.dash-quick-banner-icon {
    width: 64px; 
    height: 64px; 
    background: var(--plum); 
    border-radius: 14px;
    color: var(--white); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    flex-shrink: 0;
}

.dash-quick-banner h3 { 
    font-family: inherit;
    font-size: 1.15rem; 
    font-weight: 400; 
    color: var(--ink); 
    margin: 6px 0 6px 0; 
}

.dash-quick-banner p { 
    font-size: 0.88rem; 
    color: var(--muted); 
    margin: 0 0 16px 0; 
    line-height: 1.5; 
}

.dash-btn-blue {
    background: var(--plum); 
    color: var(--white); 
    padding: 10px 20px; 
    border-radius: 5px;
    font-weight: 700; 
    font-size: 0.88rem; 
    border: none; 
    cursor: pointer;
    display: inline-flex; 
    align-items: center; 
    gap: 8px; 
    text-decoration: none;
    transition: transform .2s, background .2s;
}

.dash-btn-blue:hover { 
    background: var(--plum-dark); 
    color: var(--white); 
    transform: translateY(-2px); 
}

.dash-quick-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 16px; 
}

.dash-quick-subcard {
    background: var(--white); 
    border: 1px solid var(--line); 
    border-radius: 14px;
    padding: 22px; 
    display: flex; 
    flex-direction: column; 
    align-items: flex-start;
}

.dash-quick-subcard .icon-box {
    width: 36px; 
    height: 36px; 
    background: #ede6f2; 
    color: var(--plum);
    border-radius: 10px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin-bottom: 14px;
}

.dash-quick-subcard h3 { 
    font-family: inherit;
    font-size: 1.05rem; 
    font-weight: 400; 
    color: var(--ink); 
    margin: 0 0 6px 0; 
}

.dash-quick-subcard p { 
    font-size: 0.85rem; 
    color: var(--muted); 
    margin: 0 0 18px 0; 
    line-height: 1.5; 
    flex-grow: 1; 
}

.dash-btn-outline {
    width: 100%; 
    text-align: center; 
    background: transparent; 
    color: var(--ink);
    border: 1px solid var(--line); 
    padding: 10px 16px; 
    border-radius: 5px;
    font-weight: 700; 
    font-size: 0.85rem; 
    cursor: pointer; 
    text-decoration: none;
    transition: background .2s, border-color .2s;
}

.dash-btn-outline:hover { 
    background: #f8f9f7; 
    border-color: var(--plum); 
    color: var(--plum); 
}

.dash-summary-list { 
    display: flex; 
    flex-direction: column; 
    gap: 12px; 
}

.dash-summary-item {
    background: var(--white); 
    border: 1px solid var(--line); 
    border-radius: 12px;
    padding: 16px 20px; 
    display: flex; 
    align-items: center; 
    gap: 16px;
}

.dash-summary-item .item-icon {
    width: 40px; 
    height: 40px; 
    background: #ede6f2; 
    color: var(--plum);
    border-radius: 10px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    flex-shrink: 0;
}

.dash-summary-item h4 { 
    font-family: inherit;
    font-size: 0.95rem; 
    font-weight: 400; 
    color: var(--ink); 
    margin: 0 0 2px 0; 
}

.dash-summary-item p { 
    font-size: 0.85rem; 
    color: var(--muted); 
    margin: 0; 
}

.admin-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 24px;
    margin-bottom: 30px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.admin-form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}

.admin-form-group {
    display: flex;
    flex-direction: column;
}

.admin-form-group label {
    font-weight: 600;
    font-size: 0.88rem;
    margin-bottom: 6px;
    color: #334155;
}

.admin-form-group input, 
.admin-form-group select, 
.admin-form-group textarea {
    padding: 8px 12px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 0.9rem;
}

.doc-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    margin-bottom: 8px;
}

.btn-sm-danger {
    background: #ef4444;
    color: #fff;
    border: none;
    padding: 4px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
}

.badge-doc {
    background: #e0f2fe;
    color: #0369a1;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.78rem;
    font-weight: 600;
}

.admin-action-bar {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 16px;
}

.dash-tab { 
    display: none; 
}

.dash-tab.active { 
    display: block; 
}

.admin-table {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.admin-table-row {
    display: grid !important;
    grid-template-columns: minmax(200px, 2.5fr) minmax(180px, 2fr) 1.2fr 80px 100px 90px !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 12px 16px !important;
}

.admin-table-head {
    background: #f8f9f7 !important;
    font-size: 0.75rem !important;
    font-weight: 800 !important;
    color: #607079 !important;
    letter-spacing: 0.5px !important;
}

.admin-table-row span {
    word-break: break-word;
    overflow: hidden;
    overflow-wrap: normal !important;
}

.admin-table-row > span:last-child {
    display: flex !important;
    justify-content: flex-end !important;
}

.admin-table-row > span:first-child label {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    white-space: nowrap !important;
}

.admin-table-row > span:first-child input[type="radio"] {
    flex-shrink: 0 !important;
    margin: 0 !important;
}

/* UI / UX Geliştirmeleri */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--plum);
    outline-offset: 2px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.is-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.7;
}

.is-loading::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin: -8px 0 0 -8px;
    border: 2px solid currentColor;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

[data-tooltip] {
    position: relative;
}

[data-tooltip]::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-4px);
    background: var(--ink);
    color: var(--white);
    font-size: 0.7rem;
    padding: 4px 8px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 10;
    pointer-events: none;
}

[data-tooltip]:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-2px);
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--paper);
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--muted);
}

.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Medya Sorguları (Responsive Yapı) */
@media(max-width: 992px) {
    .dash-layout { 
        flex-direction: column; 
    }
    .dash-sidebar { 
        width: 100%; 
    }
    .dash-stats-grid { 
        grid-template-columns: repeat(2, 1fr); 
    }
    .dash-hero-card { 
        flex-direction: column; 
        gap: 16px; 
    }
    .dash-quick-grid { 
        grid-template-columns: 1fr; 
    }
    .enquiry-card {
        margin-bottom: 80px;
    }
    .mobile-sticky-bar {
        display: flex !important;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #ffffff;
        box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
        padding: 12px 20px;
        z-index: 999;
        box-sizing: border-box;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
    }
    .mobile-sticky-bar .enquiry-price {
        margin: 0;
    }
    .mobile-sticky-bar .enquiry-price strong {
        font-size: 1.2rem;
        color: #0073aa;
    }
    .mobile-sticky-bar a.button {
        flex: 1;
        margin: 0;
        text-align: center;
        padding: 10px 15px;
    }
}

@media (min-width: 992px) {
    .mobile-sticky-bar {
        display: none !important;
    }
}

@media(max-width: 850px) {
    .nav-links {
        display: none;
    }
    .nav-cta {
        margin-left: auto;
    }
    .hero-section {
        background: var(--paper);
        padding-top: 58px;
    }
    .hero-layout,
    .value-layout,
    .course-hero-layout,
    .detail-layout {
        grid-template-columns: 1fr;
    }
    .hero-visual {
        height: 390px;
        max-width: 570px;
    }
    .logo-bar .container,
    .contact-layout {
        align-items: flex-start;
        flex-direction: column;
    }
    .assurance-list {
        flex-wrap: wrap;
    }
    .course-grid,
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .value-photo {
        height: 390px;
        max-width: 480px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-intro {
        grid-column: 1/-1;
    }
    .enquiry-card {
        position: static;
    }
    .section {
        padding: 25px 0;
    }
    .admin-table-head {
        display: none;
    }
    .admin-table-row {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .admin-table-row > span:last-child {
        grid-column: span 2;
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .support-banner {
        flex-direction: column;
        align-items: flex-start;
    }
    .support-stats-wrapper {
        width: 100%;
        justify-content: space-between;
    }
    .filter-row {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 8px;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }
    .filter-row::-webkit-scrollbar {
        display: none;
    }
    .filter-row .filter {
        flex: 0 0 auto;
        white-space: nowrap;
    }
    .blog-grid {
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    .blog-card {
        display: flex;
        flex-direction: column;
        background: #fff;
        border-radius: 8px;
        overflow: hidden;
    }
    .blog-card .blog-image {
        display: block;
        width: 100%;
        height: 200px;
        background-size: cover;
        background-position: center;
    }
}

@media(max-width: 576px) {
    .dash-stats-grid { 
        grid-template-columns: 1fr; 
    }
}

@media(max-width: 540px) {
    .container {
        width: min(100% - 32px, 1160px);
    }
    .navigation {
        min-height: 66px;
    }
    .nav-cta {
        font-size: 0;
        padding: 9px;
    }
    .nav-cta span {
        font-size: 1rem;
        margin: 0;
    }
    .hero-copy h1 {
        font-size: 3.25rem;
    }
    .hero-actions,
    .trust-row {
        gap: 10px;
    }
    .trust-row {
        justify-content: space-between;
    }
    .trust-row div {
        padding-left: 8px;
    }
    .trust-row strong {
        font-size: 1.18rem;
    }
    .hero-visual {
        height: 340px;
    }
    .credential-card {
        left: 13px;
        top: 30px;
    }
    .cpd-chip {
        right: 12px;
    }
    .logo-bar {
        padding: 18px 0;
    }
    .assurance-list {
        gap: 8px;
    }
    .assurance-list span {
        font-size: .67rem;
    }
    .section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }
    .course-grid,
    .category-grid,
    .educator-grid,
    .quote-grid,
    .detail-educator-grid {
        grid-template-columns: 1fr;
    }
    .course-image {
        height: 210px;
    }
    .category-card {
        min-height: 205px;
    }
    .quote-grid {
        gap: 35px;
    }
    .quote-grid blockquote {
        font-size: 1.7rem;
    }
    .contact-section {
        padding: 53px 0;
    }
    .contact-layout {
        gap: 22px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-intro {
        grid-column: auto;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 5px;
    }
    .page-hero {
        padding: 38px 0;
    }
    .course-hero {
        padding: 32px 0;
    }
    .back-link {
        margin-bottom: 27px;
    }
    .course-hero-image {
        height: 270px;
    }
    .module {
        grid-template-columns: 28px 1fr;
    }
    .module > strong {
        grid-column: 2;
    }
    .detail-section {
        padding-top: 55px;
    }
}