@charset "UTF-8";

/* ============================================================
   DSD WIREFRAME DESIGN SYSTEM
   Extracted from digitalsmiledesign.com theme
   ============================================================ */

/* ----- @font-face ----- */
@font-face {
    font-family: "Gotham Light";
    src: url(../fonts/gothamssm-light.woff2) format("woff2"),
         url(../fonts/gothamssm-light.woff) format("woff");
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: "Gotham Medium";
    src: url(../fonts/gothamssm-medium.woff2) format("woff2"),
         url(../fonts/gothamssm-medium.woff) format("woff");
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: "Gotham Bold";
    src: url(../fonts/gothamssm-bold.woff2) format("woff2"),
         url(../fonts/gothamssm-bold.woff) format("woff");
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: "Gotham Black";
    src: url(../fonts/gothamssm-black.woff2) format("woff2"),
         url(../fonts/gothamssm-black.woff) format("woff");
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: "Gotham Book";
    src: url(../fonts/gothamssm-book.otf) format("opentype");
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: "Kalam Regular";
    src: url(../fonts/kalam-regular.ttf) format("truetype");
    font-weight: 400;
    font-style: normal;
}

/* ----- CSS Custom Properties (Design Tokens) ----- */
:root {
    /* Brand colors */
    --primary: #df001b;
    --secondary: #bd9b7c;
    --action: #df001b;

    /* Custom palette */
    --custom1: #35363b;
    --custom2: #4e4f54;
    --custom3: #6d6e71;
    --custom4: #8c8c8e;
    --custom5: #a4a4a4;
    --custom6: #bbbbb9;
    --custom7: #cececd;
    --custom8: #e0e0e0;
    --custom9: #f0f0f0;
    --custom10: #000;
    --custom11: #ff7a59;

    /* Semantic */
    --neutral: #e8e8e8;
    --light: #fff;
    --dark: #243140;
    --success: #28a745;
    --info: #632565;
    --warning: #fec845;
    --danger: #df001b;

    /* Typography */
    --font-family-sans: "Gotham Light", Arial, sans-serif;
    --font-family-medium: "Gotham Medium", Arial, sans-serif;
    --font-family-bold: "Gotham Bold", Arial, sans-serif;
    --font-family-black: "Gotham Black", Arial, sans-serif;
    --font-family-book: "Gotham Book", Arial, sans-serif;
    --font-family-accent: "Kalam Regular", cursive;

    /* Spacing (rem-based, matching DSD's Bootstrap 4 usage) */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 1rem;
    --space-4: 1.5rem;
    --space-5: 3rem;
    --space-6: 4rem;
    --space-7: 5rem;
    --space-8: 6rem;
    --space-9: 8rem;

    /* Border radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 10px;

    /* Shadows */
    --shadow-card: 0 0 7.7px rgba(189, 155, 124, 0.45);
    --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
}

/* ----- Reset & Base ----- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: var(--font-family-sans);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--custom1);
    background-color: var(--light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: var(--custom1);
    text-decoration: none;
    transition: color 0.3s ease;
}
a:hover {
    color: var(--secondary);
}

b, strong {
    font-family: var(--font-family-medium);
}

/* ----- Typography ----- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-medium);
    margin-top: 0;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    color: inherit;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

.display-heading {
    font-family: var(--font-family-black);
    font-size: 4.6875rem; /* 75px */
    line-height: 0.92;
    letter-spacing: normal;
    font-weight: 100;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.6;
}

.small, small {
    font-size: 0.875rem;
}

.text-accent {
    font-family: var(--font-family-accent);
}

/* ----- Layout / Grid (lightweight Bootstrap-like) ----- */
.container {
    width: 100%;
    max-width: 1140px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 15px;
    padding-left: 15px;
}

.container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

[class*="col-"] {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.col-12 { flex: 0 0 100%; max-width: 100%; }
.col-6  { flex: 0 0 50%;  max-width: 50%; }
.col    { flex-basis: 0;  flex-grow: 1; max-width: 100%; }

@media (min-width: 576px) {
    .col-sm-4  { flex: 0 0 33.333%; max-width: 33.333%; }
    .col-sm-6  { flex: 0 0 50%;     max-width: 50%; }
    .col-sm-8  { flex: 0 0 66.666%; max-width: 66.666%; }
    .col-sm-12 { flex: 0 0 100%;    max-width: 100%; }
}

@media (min-width: 768px) {
    .col-md-3  { flex: 0 0 25%;     max-width: 25%; }
    .col-md-4  { flex: 0 0 33.333%; max-width: 33.333%; }
    .col-md-6  { flex: 0 0 50%;     max-width: 50%; }
    .col-md-8  { flex: 0 0 66.666%; max-width: 66.666%; }
    .col-md-12 { flex: 0 0 100%;    max-width: 100%; }
}

@media (min-width: 992px) {
    .col-lg-2  { flex: 0 0 16.666%; max-width: 16.666%; }
    .col-lg-3  { flex: 0 0 25%;     max-width: 25%; }
    .col-lg-4  { flex: 0 0 33.333%; max-width: 33.333%; }
    .col-lg-5  { flex: 0 0 41.666%; max-width: 41.666%; }
    .col-lg-6  { flex: 0 0 50%;     max-width: 50%; }
    .col-lg-8  { flex: 0 0 66.666%; max-width: 66.666%; }
    .col-lg-10 { flex: 0 0 83.333%; max-width: 83.333%; }
}

/* Offset helpers */
.offset-lg-1 { margin-left: 8.333%; }
.offset-sm-2 { margin-left: 16.666%; }

/* Flexbox helpers */
.d-flex          { display: flex; }
.d-inline-block  { display: inline-block; }
.d-none          { display: none; }
.flex-column     { flex-direction: column; }
.flex-wrap       { flex-wrap: wrap; }
.align-items-center    { align-items: center; }
.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }
.justify-content-around  { justify-content: space-around; }
.text-center     { text-align: center; }
.text-left       { text-align: left; }
.text-right      { text-align: right; }
.mx-auto         { margin-left: auto; margin-right: auto; }
.mt-auto         { margin-top: auto; }
.overflow-hidden { overflow: hidden; }
.position-relative { position: relative; }

/* Spacing utilities */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-1); }
.mt-2 { margin-top: var(--space-2); }
.mt-3 { margin-top: var(--space-3); }
.mt-4 { margin-top: var(--space-4); }
.mt-5 { margin-top: var(--space-5); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-1); }
.mb-2 { margin-bottom: var(--space-2); }
.mb-3 { margin-bottom: var(--space-3); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-5 { margin-bottom: var(--space-5); }
.mr-2 { margin-right: var(--space-2); }
.ml-2 { margin-left: var(--space-2); }
.p-0  { padding: 0; }
.p-3  { padding: var(--space-3); }
.p-4  { padding: var(--space-4); }
.p-5  { padding: var(--space-5); }
.px-0 { padding-left: 0; padding-right: 0; }
.px-3 { padding-left: var(--space-3); padding-right: var(--space-3); }
.px-5 { padding-left: var(--space-5); padding-right: var(--space-5); }
.py-3 { padding-top: var(--space-3); padding-bottom: var(--space-3); }
.py-5 { padding-top: var(--space-5); padding-bottom: var(--space-5); }
.pt-1 { padding-top: var(--space-1); }
.pt-3 { padding-top: var(--space-3); }
.pt-4 { padding-top: var(--space-4); }
.pt-5 { padding-top: var(--space-5); }
.pt-6 { padding-top: var(--space-6); }
.pt-7 { padding-top: var(--space-7); }
.pt-8 { padding-top: var(--space-8); }
.pt-9 { padding-top: var(--space-9); }
.pb-1 { padding-bottom: var(--space-1); }
.pb-2 { padding-bottom: var(--space-2); }
.pb-3 { padding-bottom: var(--space-3); }
.pb-6 { padding-bottom: var(--space-6); }
.pb-7 { padding-bottom: var(--space-7); }
.pb-8 { padding-bottom: var(--space-8); }
.pb-9 { padding-bottom: var(--space-9); }

/* ----- Theme Background & Text ----- */
.bg-light   { background-color: var(--light); }
.bg-dark    { background-color: var(--dark); color: #fff; }
.bg-gray    { background-color: var(--custom9); }
.bg-neutral { background-color: var(--neutral); }
.bg-white   { background-color: #fff; }

.text-white { color: #fff; }
.text-dark  { color: var(--dark); }
.text-muted { color: var(--custom4); }
.text-secondary { color: var(--secondary); }

/* DSD theme classes (matching original data-kd-theme system) */
.theme-light { background-color: var(--light); color: var(--custom1); }
.theme-dark  { background-color: var(--dark);  color: #fff; }
.theme-gray  { background-color: var(--custom9); color: var(--custom1); }

.theme-dark a { color: rgba(255,255,255,0.8); }
.theme-dark a:hover { color: #fff; }

/* ----- Buttons ----- */
.btn {
    display: inline-block;
    font-family: var(--font-family-medium);
    font-size: 0.875rem;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 2px solid transparent;
    padding: 0.5rem 1.5rem;
    line-height: 1.5;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 0.02em;
}

.btn:hover {
    opacity: 0.85;
    text-decoration: none;
}

.btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.35rem 1rem;
    font-size: 0.8125rem;
}

/* Primary CTA — orange (#ff7a59), the main DSD call-to-action */
.btn-cta,
.btn-custom11 {
    background-color: var(--custom11);
    color: #fff;
    border-color: var(--custom11);
}
.btn-cta:hover,
.btn-custom11:hover {
    background-color: #e86b4a;
    border-color: #e86b4a;
    color: #fff;
}

/* Secondary — gold/tan */
.btn-secondary {
    background-color: var(--secondary);
    color: #fff;
    border-color: var(--secondary);
}
.btn-secondary:hover {
    background-color: #a88a6c;
    border-color: #a88a6c;
    color: #fff;
}

/* Dark button */
.btn-dark {
    background-color: var(--dark);
    color: #fff;
    border-color: var(--dark);
}
.btn-dark:hover {
    background-color: #1a2530;
    border-color: #1a2530;
    color: #fff;
}

/* Black button */
.btn-custom10 {
    background-color: var(--custom10);
    color: #fff;
    border-color: var(--custom10);
}
.btn-custom10:hover {
    background-color: #333;
    border-color: #333;
    color: #fff;
}

/* Outline dark */
.btn-outline-dark {
    background-color: transparent;
    color: var(--dark);
    border-color: var(--dark);
}
.btn-outline-dark:hover {
    background-color: var(--dark);
    color: #fff;
}

/* Outline light (for dark backgrounds) */
.btn-outline-light {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}
.btn-outline-light:hover {
    background-color: #fff;
    color: var(--dark);
}

/* ----- Header / Navigation ----- */
.site-header {
    background-color: var(--light);
    border-bottom: 1px solid var(--neutral);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header .branding {
    padding: 0.75rem 0;
}

.site-header .logo img {
    width: 120px;
    height: auto;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.site-nav a {
    font-family: var(--font-family-sans);
    font-size: 0.875rem;
    padding: 0.75rem 0.75rem;
    color: var(--custom1);
    text-decoration: none;
    position: relative;
    line-height: 2;
    transition: color 0.3s;
}

.site-nav a::before {
    content: '';
    width: 0;
    height: 2px;
    border-radius: 2px;
    background-color: var(--secondary);
    position: absolute;
    bottom: 0;
    left: 50%;
    transition: width 0.4s, left 0.4s;
}

.site-nav a:hover::before {
    width: 100%;
    left: 0;
}

.site-nav a:hover {
    color: var(--secondary);
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
}
.nav-toggle svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

@media (max-width: 767px) {
    .nav-toggle { display: block; }
    .site-nav {
        display: none;
        flex-direction: column;
        width: 100%;
        padding: 1rem 0;
    }
    .site-nav.open { display: flex; }
    .site-nav a { padding: 0.75rem 1rem; }
}

/* ----- Hero Section ----- */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-color: var(--dark);
    z-index: 0;
}

.hero-bg img,
.hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(36,49,64,0.85) 0%, rgba(36,49,64,0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    padding: var(--space-5) 0;
}

.hero-content h1 {
    font-family: var(--font-family-medium);
    font-size: 2.75rem;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.hero-content p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.hero-content .summary-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.hero-content .summary-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    opacity: 0.9;
}

.hero-content .summary-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--custom11);
    font-weight: bold;
}

@media (max-width: 767px) {
    .hero { min-height: 60vh; }
    .hero-content h1 { font-size: 2rem; }
}

/* ----- Module Header (section headings) ----- */
.module-header {
    text-align: center;
    margin-bottom: 2rem;
}

.module-header .heading {
    font-family: var(--font-family-medium);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.module-header .intro {
    font-family: var(--font-family-sans);
    font-size: 1.125rem;
    color: var(--custom4);
    display: block;
}

.theme-dark .module-header .intro {
    color: rgba(255,255,255,0.7);
}

/* ----- Card Component ----- */
.card {
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--light);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

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

.card-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}

.card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-body h2,
.card-body h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.card-body p {
    font-size: 0.9375rem;
    color: var(--custom3);
    flex: 1;
}

.card-author {
    font-family: var(--font-family-medium);
    font-size: 0.875rem;
    margin-bottom: 0.125rem;
}

.card-desc {
    font-size: 0.8125rem;
    color: var(--custom4);
    margin-bottom: 0.75rem;
}

.card-action {
    margin-top: auto;
    padding-top: 0.75rem;
}

/* Dark-theme cards */
.theme-dark .card {
    background: rgba(255,255,255,0.05);
    color: #fff;
}
.theme-dark .card-body p {
    color: rgba(255,255,255,0.7);
}

/* ----- Testimonial / Quote Block ----- */
.quote-block {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.quote-block .row {
    margin: 0;
}

.quote-text {
    font-size: 1.125rem;
    line-height: 1.6;
    font-style: italic;
    color: var(--custom2);
    margin-bottom: 1.25rem;
}

.quote-author {
    font-family: var(--font-family-medium);
    font-size: 0.9375rem;
}

.quote-author span {
    font-family: var(--font-family-bold);
}

.quote-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 300px;
}

/* ----- Text + Image Split Section ----- */
.split-section {
    overflow: hidden;
}

.split-section .content {
    display: flex;
    align-items: center;
}

.split-section .content-inner {
    max-width: 500px;
    padding: var(--space-5);
}

.split-section .content-inner h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.split-section .content-inner p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--custom2);
}

.split-section .image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ----- Value Proposition / Icon Items ----- */
.value-item {
    text-align: center;
    padding: 1.5rem;
}

.value-item img {
    max-width: 200px;
    margin: 0 auto 1rem;
}

.value-item .title {
    display: block;
    font-family: var(--font-family-medium);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--custom1);
}

.value-item p {
    font-size: 0.9375rem;
    color: var(--custom3);
    max-width: 320px;
    margin: 0 auto;
}

/* ----- CTA Image Card ----- */
.cta-card {
    display: flex;
    flex-wrap: wrap;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--neutral);
}

.cta-card-img {
    flex: 0 0 40%;
    max-width: 40%;
}

.cta-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-card-body {
    flex: 0 0 60%;
    max-width: 60%;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-card-body h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.cta-card-body p {
    font-size: 1rem;
    color: var(--custom2);
    margin-bottom: 1.5rem;
}

@media (max-width: 767px) {
    .cta-card-img,
    .cta-card-body {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .cta-card-body { padding: 1.5rem; }
}

/* ----- Form Section ----- */
.form-section {
    padding: var(--space-5) 0;
}

.form-card {
    background: var(--light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    padding: 2rem 3rem;
    max-width: 600px;
    margin: 0 auto;
}

.form-card label {
    display: block;
    font-family: var(--font-family-medium);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
    color: var(--custom2);
}

.form-card input,
.form-card select,
.form-card textarea {
    width: 100%;
    padding: 0.625rem 0.875rem;
    border: 1px solid var(--custom7);
    border-radius: var(--radius-sm);
    font-family: var(--font-family-sans);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
    transition: border-color 0.3s;
}

.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
    outline: none;
    border-color: var(--secondary);
}

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

.form-card .btn {
    width: 100%;
}

@media (max-width: 576px) {
    .form-card { padding: 2rem 1.5rem; }
}

/* ----- Footer ----- */
.site-footer {
    background-color: var(--dark);
    color: #fff;
    padding: var(--space-7) 0 var(--space-5);
}

.site-footer a {
    color: rgba(255,255,255,0.7);
    font-size: 0.875rem;
    transition: color 0.3s;
}

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

.footer-heading {
    font-family: var(--font-family-bold);
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    color: #fff;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
}

.footer-bottom a {
    margin: 0 0.75rem;
    color: rgba(255,255,255,0.5);
}
.footer-bottom a:hover {
    color: #fff;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    transition: border-color 0.3s, background-color 0.3s;
}

.social-links a:hover {
    border-color: var(--secondary);
    background-color: rgba(255,255,255,0.05);
}

.social-links svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* ----- Section helpers ----- */
.section {
    padding: var(--space-7) 0;
}

.section-sm {
    padding: var(--space-5) 0;
}

.section-lg {
    padding: var(--space-9) 0;
}

/* Card grid helper */
.card-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(1, 1fr);
}

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

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

/* ----- Accordion (for curriculum sections) ----- */
.accordion-item {
    border-bottom: 1px solid var(--custom8);
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    cursor: pointer;
    font-family: var(--font-family-medium);
    font-size: 1.0625rem;
    user-select: none;
}

.accordion-header:hover {
    color: var(--secondary);
}

.accordion-header .icon {
    font-size: 1.5rem;
    transition: transform 0.3s;
    line-height: 1;
}

.accordion-item.open .accordion-header .icon {
    transform: rotate(45deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding-bottom: 0;
}

.accordion-item.open .accordion-body {
    max-height: 500px;
    padding-bottom: 1.25rem;
}

.accordion-body p {
    font-size: 0.9375rem;
    color: var(--custom3);
}

/* ----- Benefit Items (icon + text) ----- */
.benefit-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.benefit-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--custom9);
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--secondary);
    fill: none;
    stroke-width: 2;
}

.benefit-text h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.benefit-text p {
    font-size: 0.9375rem;
    color: var(--custom3);
    margin: 0;
}

/* ----- Instructor Card ----- */
.instructor-card {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem;
    background: var(--custom9);
    border-radius: var(--radius-lg);
}

.instructor-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.instructor-card h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.instructor-card p {
    font-size: 0.875rem;
    color: var(--custom3);
    margin: 0;
}

/* ----- Price Tag ----- */
.price-tag {
    font-family: var(--font-family-bold);
    font-size: 2rem;
    color: var(--custom1);
    margin-bottom: 0.5rem;
}

.price-tag .currency {
    font-size: 1.25rem;
    vertical-align: super;
}

.price-tag .period {
    font-family: var(--font-family-sans);
    font-size: 0.875rem;
    color: var(--custom4);
}

/* ----- Responsive helpers ----- */
@media (max-width: 767px) {
    .hide-mobile { display: none !important; }
}

@media (min-width: 768px) {
    .hide-desktop { display: none !important; }
}

/* ----- Style Guide specific ----- */
.swatch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1rem;
}

.swatch {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--custom8);
}

.swatch-color {
    height: 80px;
}

.swatch-label {
    padding: 0.5rem;
    font-size: 0.75rem;
    font-family: var(--font-family-medium);
    text-align: center;
    background: #fff;
}
