/* ============================================================
   dadesktop.id — Homepage Styles
   Based on dadesktop.com design system
   ============================================================ */

/* ── Font ─────────────────────────────────────────────── */
@font-face {
    font-family: 'Poppins';
    src: url('/assets/fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: 400; font-style: normal;
}
@font-face {
    font-family: 'Poppins';
    src: url('/assets/fonts/Poppins-Light.ttf') format('truetype');
    font-weight: 300; font-style: normal;
}
@font-face {
    font-family: 'Poppins';
    src: url('/assets/fonts/Poppins-Medium.ttf') format('truetype');
    font-weight: 500; font-style: normal;
}
@font-face {
    font-family: 'Poppins';
    src: url('/assets/fonts/Poppins-SemiBold.ttf') format('truetype');
    font-weight: 600; font-style: normal;
}
@font-face {
    font-family: 'Poppins';
    src: url('/assets/fonts/Poppins-Bold.ttf') format('truetype');
    font-weight: 700; font-style: normal;
}

/* ── Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
body, html {
    margin: 0; padding: 0;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px; line-height: 1.6;
    color: #000001;
    background: #ffffff;
    overflow-x: hidden;
}
a { color: #0073bd; }
img, video { max-width: 100%; height: auto; }

/* ── CSS Variables ─────────────────────────────────────── */
:root {
    --dd-blue:        #2c3e50;
    --dd-text-dark:   #1f2937;
    --dd-text-muted:  #6c757d;
    --dd-bg-light:    #f8f9fa;
    --dd-green:       #198754;
    --dd-green-hover: #157347;
    --dd-border:      #e5e7eb;
    --dd-nav-bg:      #2d3a48;
}

/* ── Language Switcher ─────────────────────────────────── */
.lang-switcher-bar {
    background: #1a252f;
    text-align: right;
    padding: 6px 0;
}
.lang-switcher-bar .container {
    display: flex;
    justify-content: flex-end;
}
.lang-switch-btn {
    background: none;
    border: 1px solid rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.7);
    padding: 4px 14px;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.lang-switch-btn:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-color: rgba(255,255,255,0.5);
}
.lang-switch-btn .lang-icon {
    font-size: 16px;
}

/* ── Container / Grid ──────────────────────────────────── */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}
.row-lg-center { align-items: center; }
.col-lg-6, .col-md-6, .col-md-4, .col-lg-12 {
    padding: 0 15px;
}
.col-lg-6  { flex: 0 0 50%;  max-width: 50%;  }
.col-md-6  { flex: 0 0 50%;  max-width: 50%;  }
.col-md-4  { flex: 0 0 33.333%; max-width: 33.333%; }
.col-lg-12 { flex: 0 0 100%; max-width: 100%; }

@media (max-width: 991px) {
    .col-lg-6  { flex: 0 0 100%; max-width: 100%; }
}
@media (max-width: 767px) {
    .col-md-6  { flex: 0 0 100%; max-width: 100%; }
    .col-md-4  { flex: 0 0 100%; max-width: 100%; }
}

/* ── Header / Navbar ──────────────────────────────────── */
.dd-header {
    background-color: var(--dd-blue);
    position: sticky; top: 0; z-index: 1000;
}
.dd-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
}
.dd-brand img {
    height: 50px;
    margin-top: -5px;
}
.dd-nav-container {
    display: flex; align-items: center; gap: 3em;
}
.dd-nav-menu {
    display: flex; list-style: none; gap: 2px;
    padding: 0; margin: 0; align-items: center;
}
.dd-nav-menu li { margin-bottom: 0 !important; }
.dd-nav-item { position: relative; }
.dd-nav-link {
    color: #fff; text-decoration: none;
    padding: 8px 16px; display: flex;
    align-items: center; gap: 5px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    white-space: nowrap;
    font-size: 15px;
}
.dd-nav-link:hover { background-color: rgba(255,255,255,0.1); }
.dd-arrow { font-size: 10px; transition: transform 0.3s ease; }

.dd-dropdown-menu {
    position: absolute; top: 100%; left: 0;
    background-color: var(--dd-nav-bg);
    list-style: none; min-width: 250px;
    padding: 8px 0; border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    opacity: 0; visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 8px; z-index: 10;
}
.dd-dropdown:hover .dd-dropdown-menu,
.dd-dropdown.active .dd-dropdown-menu {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.dd-dropdown:hover .dd-arrow,
.dd-dropdown.active .dd-arrow { transform: rotate(180deg); }
.dd-dropdown-menu li { padding: 0; }
.dd-dropdown-menu a {
    color: #fff; text-decoration: none;
    padding: 10px 20px; display: block;
    font-size: 14px; text-align: left;
    transition: background-color 0.2s ease;
}
.dd-dropdown-menu a:hover { background-color: rgba(255,255,255,0.1); }

.dd-auth { display: flex; gap: 2px; }
.dd-auth-link {
    color: #fff; text-decoration: none;
    padding: 8px 16px; border-radius: 4px;
    transition: background-color 0.3s ease;
    font-size: 15px;
}
.dd-auth-link:hover { background-color: rgba(255,255,255,0.1); }

.dd-navbar-toggler {
    display: none; background: none;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 8px 12px; margin-left: auto;
    border-radius: 4px; cursor: pointer;
}
.dd-navbar-toggler:hover { background-color: rgba(255,255,255,0.1); }
.navbar-toggler-icon { display: block; width: 24px; height: 24px; color: #fff; }
.navbar-toggler-icon svg { width: 100%; height: 100%; }

@media (max-width: 991px) {
    .dd-navbar-toggler { display: block; }
    .dd-nav-container {
        position: fixed; top: -100%; left: 0;
        width: 100%; background-color: #3a4a5c;
        flex-direction: column; align-items: stretch;
        padding: 80px 20px 20px; gap: 0;
        max-height: 100vh; overflow-y: auto;
        transition: top 0.3s ease;
        z-index: 999;
        box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    }
    .dd-nav-container.active { top: 0; }
    .dd-auth {
        order: 1; flex-direction: column; width: 100%;
        gap: 10px; margin-bottom: 20px;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .dd-auth-link { display: block; padding: 12px 16px; background-color: rgba(255,255,255,0.05); }
    .dd-nav { order: 2; width: 100%; }
    .dd-nav-menu { flex-direction: column; width: 100%; gap: 5px; }
    .dd-nav-item { width: 100%; }
    .dd-nav-link { padding: 12px 20px; justify-content: space-between; width: 100%; font-size: 15px; }
    .dd-dropdown-menu {
        position: static; opacity: 0; visibility: hidden;
        height: 0; transform: none; box-shadow: none;
        background-color: #253241; margin: 0; padding: 0;
        overflow: hidden; border-radius: 0;
    }
    .dd-dropdown.active .dd-dropdown-menu {
        opacity: 1; visibility: visible;
        height: auto; padding: 8px 0; margin-top: 5px;
    }
    .dd-dropdown-menu a { padding-left: 40px; }
}
@media (max-width: 575px) {
    .dd-nav-container { padding: 70px 15px 20px; }
}

/* ── Sections ──────────────────────────────────────────── */
.dd-section { padding: 4rem 0; }
.dd-bg-white    { background-color: #fff; }
.dd-bg-light    { background-color: var(--dd-bg-light); }
.dd-bg-gradient-light { background: linear-gradient(180deg, var(--dd-bg-light) 0%, #ffffff 100%); }
.dd-text-white  { color: #fff; }
.dd-text-center { text-align: center; }
.dd-text-muted  { color: var(--dd-text-muted); }
.dd-text-dark   { color: var(--dd-text-dark); }

/* ── Typography ────────────────────────────────────────── */
.dd-display-1 { font-size: 2.75rem; font-weight: 700; line-height: 1.2; margin-bottom: 1.5rem; color: var(--dd-blue); }
.dd-display-2 { font-size: 2.5rem;  font-weight: 700; line-height: 1.2; margin-bottom: 1.5rem; color: var(--dd-blue); }
.dd-display-3 { font-size: 2rem;    font-weight: 700; line-height: 1.2; margin-bottom: 1.5rem; color: var(--dd-blue); }
.dd-hero-sub-heading { font-size: 1.4rem; font-weight: 600; margin-bottom: 1rem; color: var(--dd-text-muted); }
.dd-h5 { font-size: 1.3rem; font-weight: 600; margin-bottom: 1rem; }
.dd-lead { font-size: 1.1rem; line-height: 1.5; font-weight: 300; }

/* ── Buttons ───────────────────────────────────────────── */
.dd-btn {
    display: inline-block; font-weight: 600;
    text-align: center; white-space: nowrap;
    cursor: pointer; text-decoration: none;
    padding: 12px 32px; font-size: 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: none;
}
.dd-btn-success {
    background-color: var(--dd-green); color: #fff;
    box-shadow: 0 4px 6px rgba(25,135,84,0.3);
    line-height: 1.15;
}
.dd-btn-success:hover {
    background-color: var(--dd-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(25,135,84,0.4);
}
.dd-btn-light {
    background-color: #fff; color: #333;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.dd-btn-light:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}
.dd-fw-bold     { font-weight: 700; }
.dd-fw-semibold { font-weight: 600; }

/* ── Spacing Helpers ───────────────────────────────────── */
.dd-mb-0  { margin-bottom: 0; }
.dd-mb-3  { margin-bottom: 1rem; }
.dd-mb-4  { margin-bottom: 1.5rem; }
.dd-mb-5  { margin-bottom: 3rem; }
.dd-mt-5  { margin-top: 3rem; }
.dd-pt-3  { padding-top: 1rem; }
.dd-pt-4  { padding-top: 1.5rem; }
.dd-p-4   { padding: 1.5rem; }
.dd-p-5   { padding: 3rem; }
.dd-px-3  { padding-left: 1rem; padding-right: 1rem; }
.dd-gap-y-3 { row-gap: 3rem; }

/* ── Video ─────────────────────────────────────────────── */
.dd-video {
    width: 100%; height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* ── Feature Box ───────────────────────────────────────── */
.dd-feature-box {
    background-color: var(--dd-bg-light);
    border-radius: 12px;
    padding: 3rem;
}

/* ── Lists ─────────────────────────────────────────────── */
.dd-list-unstyled { list-style: none; padding-left: 0; }
.dd-list-item {
    display: flex; align-items: flex-start;
    margin-bottom: 1.5rem;
}
.dd-list-item:last-child { margin-bottom: 0; }
.dd-list-icon {
    color: var(--dd-green); margin-right: 1rem;
    font-size: 1.875rem; flex-shrink: 0;
}
.dd-list-text { font-size: 1.25rem; }

/* ── Cards ─────────────────────────────────────────────── */
.dd-card {
    background-color: #fff; border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 3rem; height: 100%;
}
.dd-card-bordered {
    background-color: var(--dd-bg-light);
    border: 2px solid #dee2e6; border-radius: 12px;
    padding: 3rem; height: 100%;
}

/* ── Step Numbers ──────────────────────────────────────── */
.dd-step-number {
    display: inline-flex; align-items: center;
    justify-content: center; margin-bottom: 1.5rem;
    color: #fff; background-color: var(--dd-green);
    border-radius: 50%; font-size: 1.75rem;
    height: 80px; width: 80px;
    box-shadow: 0 4px 12px rgba(25,135,84,0.3);
}

/* ── CTA Section ───────────────────────────────────────── */
.dd-cta {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: #fff;
}

/* ── Footer ────────────────────────────────────────────── */
.dd-footer {
    background-color: var(--dd-blue);
    color: #fff; padding: 60px 0 30px;
}
.dd-footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4em; margin-bottom: 50px;
}
.dd-footer-section h5 {
    color: #fff; font-size: 18px; font-weight: 600;
    margin-bottom: 20px; text-transform: none; letter-spacing: normal;
}
.dd-footer-search { position: relative; }
.dd-footer-search input {
    width: 100%; padding: 8px 16px;
    background-color: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 4px; color: #fff; font-size: 14px;
    transition: all 0.3s ease;
}
.dd-footer-search input::placeholder { color: rgba(255,255,255,0.6); }
.dd-footer-search input:focus {
    outline: none; background-color: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.4);
}
.dd-footer-links { list-style: none; padding: 0; }
.dd-footer-links li { margin-bottom: 0; }
.dd-footer-links a {
    color: rgba(255,255,255,0.8); text-decoration: none;
    font-size: 14px; transition: color 0.3s ease;
    display: inline-block; padding: 2px 0;
}
.dd-footer-links a:hover { color: #fff; }
.dd-footer-description {
    color: rgba(255,255,255,0.8);
    font-size: 14px; line-height: 1.6;
}
.dd-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px; text-align: center;
}
.dd-footer-keywords {
    color: rgba(255,255,255,0.6);
    font-size: 13px; line-height: 1.6;
    margin-bottom: 15px; max-width: 800px;
    margin-left: auto; margin-right: auto;
}
.dd-footer-trademark {
    color: rgba(255,255,255,0.7);
    font-size: 14px; margin-bottom: 20px;
}
.dd-footer-trademark em { font-style: italic; }
.dd-footer-final {
    display: flex; justify-content: center;
    align-items: center; gap: 2em; margin-top: 20px;
}
.dd-footer-final a {
    color: #5dade2; text-decoration: underline;
    font-size: 13px; transition: color 0.3s ease;
}
.dd-footer-final a:hover { color: #7fb9e6; }

@media (max-width: 1199px) {
    .dd-footer-grid { gap: 2em; }
    .dd-display-1 { font-size: 2.5rem; }
    .dd-display-2 { font-size: 2rem; }
    .dd-display-3 { font-size: 1.75rem; }
}
@media (max-width: 991px) {
    .dd-footer-grid { grid-template-columns: repeat(2, 1fr); gap: 2em; }
    .dd-footer { padding: 40px 0 30px; }
    .dd-section { padding: 3rem 0; }
    .dd-p-5 { padding: 2rem; }
}
@media (max-width: 575px) {
    .dd-footer-grid { grid-template-columns: 1fr; gap: 1.5em; }
    .dd-footer-final { flex-direction: column; gap: 10px; }
    .dd-display-1 { font-size: 2.2rem; }
    .dd-display-2 { font-size: 1.8rem; }
}

/* ── Skip Link ─────────────────────────────────────────── */
#skip-link a {
    position: absolute; top: -100px; left: 0;
    background: var(--dd-blue); color: #fff;
    padding: 8px 16px; z-index: 9999;
}
#skip-link a:focus { top: 0; }

/* ── Book Sidebar ─────────────────────────────────────── */
.dd-page-content { max-width: 900px; margin: 0 auto; padding: 2rem 20px; }
.dd-with-sidebar { display: flex; gap: 0; max-width: 1200px; margin: 0 auto; }
.dd-sidebar {
    width: 280px; min-width: 280px;
    background: var(--dd-bg-light);
    border-right: 1px solid var(--dd-border);
    padding: 2rem 1rem;
    position: sticky; top: 70px;
    max-height: calc(100vh - 70px); overflow-y: auto;
}
.dd-content { flex: 1; padding: 2rem; min-width: 0; }

.dd-sidebar-tree { list-style: none; padding: 0; margin: 0; }
.dd-sidebar-tree ul { list-style: none; padding-left: 16px; margin: 4px 0; display: none; }
.dd-sidebar-tree ul.open { display: block; }
.dd-sidebar-tree li { margin: 0; }
.dd-sidebar-tree a {
    display: block; padding: 4px 8px;
    color: #333; text-decoration: none;
    font-size: 14px; border-radius: 4px;
    transition: background 0.15s;
}
.dd-sidebar-tree a:hover { background: #e9ecef; }
.dd-sidebar-tree li.active > a {
    background: var(--dd-green); color: #fff; font-weight: 600;
}

@media (max-width: 767px) {
    .dd-with-sidebar { flex-direction: column; }
    .dd-sidebar {
        width: 100%; min-width: 0; position: static;
        max-height: none; border-right: none;
        border-bottom: 1px solid var(--dd-border);
        padding: 1rem;
    }
    .dd-content { padding: 1rem; }
}

/* ── Page Title ───────────────────────────────────────── */
.dd-page-title {
    font-size: 2rem; font-weight: 700; color: var(--dd-blue);
    margin: 0 0 1.5rem; padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--dd-border);
}

/* ── Book Nav (Prev/Next) ─────────────────────────────── */
.dd-book-nav {
    display: flex; justify-content: space-between;
    margin-top: 3rem; padding-top: 1.5rem;
    border-top: 1px solid var(--dd-border);
}
.dd-book-nav a {
    color: var(--dd-green); text-decoration: none;
    font-weight: 500; max-width: 45%;
}
.dd-book-nav a:hover { color: var(--dd-green-hover); }

/* ── Solutions Pages ──────────────────────────────────── */
:root { --dd-background-blue: #0d6efd; --text-dark: #1f2937; --text-light: #6b7280; --border-color: #e5e7eb; --bg-light: #f9fafb; }
.bg-dd-blue { background-color: var(--dd-background-blue) !important; }
.text-white { color: #fff !important; }
.text-primary { color: var(--dd-green); }
.dd-text-bold { font-weight: 700; }
.dd-text-muted-sm { font-size: 0.95rem; color: var(--text-light); }
.dd-note-text { font-size: 0.875rem; color: #9ca3af; margin-top: 1rem; font-style: italic; }
.dd-divider-white { height: 1px; background: rgba(255,255,255,0.2); width: 80px; margin: 25px auto; }
.dd-section-header { text-align: center; max-width: 700px; margin: 0 auto 50px auto; }
.dd-train-grid-2, .dd-train-grid-2-rev { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.dd-train-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.dd-train-cta { margin-top: 2rem; }
.dd-train-tagline { font-size: 1.5rem; font-weight: 600; margin-top: 1rem; color: #fff; }
.dd-list-cross, .dd-list-check { list-style: none; padding: 0; margin: 0; }
.dd-list-cross li, .dd-list-check li { position: relative; padding-left: 35px; margin-bottom: 12px; color: var(--text-dark); font-size: 1.05rem; }
.dd-list-cross li::before { content: "✕"; color: #dc3545; position: absolute; left: 0; font-weight: bold; }
.dd-list-check li::before { content: "✔"; color: var(--dd-green); position: absolute; left: 0; font-weight: bold; }
.dd-step-card { background: #fff; padding: 30px; border-radius: 8px; border: 1px solid var(--border-color); text-align: center; transition: transform 0.3s; }
.dd-step-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.dd-step-num { background: var(--dd-green); color: #fff; width: 45px; height: 45px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.2rem; margin: 0 auto 20px auto; }
.dd-step-card > h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 1rem; }
.dd-tags-cloud { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; }
.dd-tag { background: #e9ecef; padding: 6px 16px; border-radius: 20px; font-size: 0.95rem; }
.dd-compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: stretch; }
.dd-compare-card { padding: 40px; border-radius: 12px; position: relative; }
.dd-card-traditional { background: #f3f4f6; border: 1px solid #e5e7eb; color: #6b7280; }
.dd-card-traditional ul { list-style: none; padding: 0; }
.dd-card-traditional li { padding: 10px 0; border-bottom: 1px solid #e5e7eb; }
.dd-card-highlight { background: #fff; border: 2px solid var(--dd-green); box-shadow: 0 15px 30px rgba(0,0,0,0.08); }
.dd-card-highlight ul { list-style: none; padding: 0; }
.dd-card-highlight li { padding: 10px 0 10px 30px; border-bottom: 1px solid #f3f4f6; position: relative; font-weight: 500; color: var(--text-dark); }
.dd-card-highlight li::before { content: "✔"; color: var(--dd-green); position: absolute; left: 0; }
.dd-badge-popular { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--dd-green); color: #fff; padding: 4px 16px; border-radius: 20px; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.dd-narrow { max-width: 720px; margin: 0 auto; }

/* Self-Study & ML pages */
.hero { background: var(--bg-light); padding: 48px 20px; text-align: center; }
.hero p { max-width: 600px; margin: 0 auto 1.5rem; }
.why-matters { border-bottom: 1px solid var(--border-color); }
.why-matters p { max-width: 720px; margin: 0 auto; font-size: 15px; }
.benefits { padding: 48px 20px; }
.benefits h2 { margin-bottom: 40px; }
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; max-width: 1100px; margin: 0 auto; }
.benefit-card { background: var(--bg-light); border: 1px solid var(--border-color); border-radius: 6px; padding: 24px; text-align: center; transition: transform 0.3s, box-shadow 0.3s; }
.benefit-card:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.08); }
.benefit-icon { font-size: 36px; margin-bottom: 12px; display: inline-block; }
.benefit-card h3 { font-size: 18px; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; }
.benefit-card p { font-size: 14px; color: var(--text-light); line-height: 1.6; }
.ideal-for { padding: 40px 20px; background: var(--bg-light); border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); }
.ideal-for h2 { margin-bottom: 28px; }
.ideal-list { list-style: none; max-width: 550px; margin: 0 auto; }
.ideal-list li { color: var(--text-dark); font-size: 15px; padding: 6px 0 6px 28px; position: relative; line-height: 1.5; }
.ideal-list li::before { content: "✓"; position: absolute; left: 0; color: #0d7a6b; font-weight: bold; font-size: 16px; }
.cta-section { padding: 48px 20px; text-align: center; }
.cta-section h2 { margin-bottom: 12px; }
.cta-section p { font-size: 15px; margin-bottom: 24px; }

@media (max-width: 767px) {
    .dd-train-grid-2, .dd-train-grid-2-rev, .dd-train-grid-3, .dd-compare-grid { grid-template-columns: 1fr; gap: 30px; }
    .dd-train-grid-2-rev { display: flex; flex-direction: column-reverse; }
    .dd-card-highlight { top: 0; }
    .hero h1 { font-size: 32px; }
    .hero p { font-size: 15px; }
    .benefits h2, .ideal-for h2, .why-matters h2, .cta-section h2 { font-size: 26px; }
    .benefits-grid { grid-template-columns: 1fr; gap: 16px; }
    .benefits, .ideal-for, .hero { padding: 32px 20px; }
    .cta-section { padding: 36px 20px; }
}
