/* ==========================================================
   CRDB Landing Page — Niajiri CRDB
   Brand Colors:
     Primary Green : #3DAE2B
     Dark Green    : #215732
     Accent Green  : #E1F2E5
     Yellow        : #F9B641
     White         : #ffffff
   ========================================================== */

:root {
    --crdb-green:        #3DAE2B;
    --crdb-green-dark:   #215732;
    --crdb-green-muted:  #007041;
    --crdb-green-light:  #E1F2E5;
    --crdb-yellow:       #F9B641;
    --crdb-yellow-dark:  #FAAD29;
    --crdb-white:        #ffffff;
    --crdb-text:         #1a1a1a;
    --crdb-text-muted:   #555555;
    --crdb-border:       #e8e8e8;
    --crdb-bg-soft:      #f9fafb;
    --crdb-shadow:       0 4px 20px rgba(0, 0, 0, 0.08);
    --crdb-shadow-hover: 0 10px 36px rgba(0, 0, 0, 0.14);
    --crdb-radius:       14px;
    --crdb-transition:   all 0.28s ease;
}

/* ── Base ── */
.crdb-page {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--crdb-text);
    background: #ffffff;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.crdb-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ── Navbar ── */
.crdb-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(61, 174, 43, 0.10);
    padding: 0;
    box-shadow: 0 1px 0 rgba(0,0,0,0.06), 0 4px 24px rgba(0,0,0,0.04);
    transition: box-shadow 0.3s ease;
}

.crdb-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    gap: 24px;
}

.crdb-nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.crdb-nav-logo img {
    height: 40px;
    width: auto;
}

.crdb-nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 100%;
}

.crdb-nav-links li {
    display: flex;
    align-items: center;
    height: 100%;
    position: relative;
}

/* Regular nav link */
.crdb-nav-links li:not(:last-child) a {
    display: inline-flex;
    align-items: center;
    padding: 0 16px;
    height: 100%;
    color: #4a4a4a;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: color 0.2s ease;
    position: relative;
    white-space: nowrap;
}

.crdb-nav-links li:not(:last-child) a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--crdb-green);
    border-radius: 2px 2px 0 0;
    transform: scaleX(0);
    transition: transform 0.22s ease;
}

.crdb-nav-links li:not(:last-child) a:hover {
    color: var(--crdb-green);
    text-decoration: none;
}

.crdb-nav-links li:not(:last-child) a:hover::after {
    transform: scaleX(1);
}

/* Nav separator before login */
.crdb-nav-links li:last-child {
    margin-left: 12px;
    padding-left: 12px;
    border-left: 1px solid var(--crdb-border);
}

.crdb-btn-nav-login {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 22px;
    background: var(--crdb-green);
    color: #ffffff !important;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
    transition: var(--crdb-transition);
    white-space: nowrap;
    letter-spacing: 0.01em;
    box-shadow: 0 2px 8px rgba(61, 174, 43, 0.28);
}

.crdb-btn-nav-login:hover {
    background: var(--crdb-green-dark);
    transform: translateY(-1px);
    box-shadow: 0 5px 16px rgba(61, 174, 43, 0.40);
    text-decoration: none !important;
    color: #ffffff !important;
}

.crdb-nav-toggle {
    display: none;
    background: none;
    border: 1.5px solid var(--crdb-border);
    border-radius: 10px;
    padding: 9px 11px;
    cursor: pointer;
    color: var(--crdb-green);
    line-height: 0;
    transition: var(--crdb-transition);
}

.crdb-nav-toggle:hover {
    background: var(--crdb-green-light);
    border-color: var(--crdb-green);
}

/* ── Buttons ── */
.crdb-btn-primary {
    display: inline-block;
    padding: 13px 32px;
    background: var(--crdb-green);
    color: #ffffff;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid var(--crdb-green);
    transition: var(--crdb-transition);
    cursor: pointer;
}

.crdb-btn-primary:hover {
    background: var(--crdb-green-dark);
    border-color: var(--crdb-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(61, 174, 43, 0.35);
    color: #ffffff;
    text-decoration: none;
}

.crdb-btn-outline {
    display: inline-block;
    padding: 13px 32px;
    background: transparent;
    color: var(--crdb-green);
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--crdb-green);
    transition: var(--crdb-transition);
}

.crdb-btn-outline:hover {
    background: var(--crdb-green-light);
    color: var(--crdb-green-dark);
    text-decoration: none;
}

/* ── Section Base ── */
.crdb-section {
    padding: 88px 0;
}

.crdb-section-white { background: #ffffff; }
.crdb-section-soft  { background: var(--crdb-bg-soft); }
.crdb-section-light { background: var(--crdb-green-light); }

.crdb-section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--crdb-green);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
}

.crdb-section-label::before {
    content: '';
    display: block;
    width: 28px;
    height: 3px;
    background: var(--crdb-green);
    border-radius: 2px;
    flex-shrink: 0;
}

.crdb-section-title {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    color: var(--crdb-text);
    line-height: 1.15;
    margin-bottom: 16px;
}

.crdb-section-desc {
    font-size: 17px;
    color: var(--crdb-text-muted);
    line-height: 1.75;
    max-width: 600px;
}

.crdb-header-center {
    text-align: center;
    margin-bottom: 56px;
}

.crdb-header-center .crdb-section-desc {
    margin: 0 auto;
}

/* ── Hero ── */
.crdb-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 68px;
    background: linear-gradient(140deg, #f2fbf1 0%, #e8f5e9 35%, #f9fdfb 70%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.crdb-hero-deco-1 {
    position: absolute;
    top: -120px;
    right: -100px;
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, rgba(61, 174, 43, 0.10) 0%, transparent 68%);
    border-radius: 50%;
    pointer-events: none;
}

.crdb-hero-deco-2 {
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 440px;
    height: 440px;
    background: radial-gradient(circle, rgba(249, 182, 65, 0.08) 0%, transparent 68%);
    border-radius: 50%;
    pointer-events: none;
}

.crdb-hero-grid {
    display: grid;
    grid-template-columns: 48% 52%;
    gap: 56px;
    align-items: center;
    padding: 60px 0;
    position: relative;
    z-index: 1;
}

.crdb-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--crdb-green-light);
    color: var(--crdb-green);
    padding: 7px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 22px;
}

.crdb-hero-eyebrow-dot {
    width: 7px;
    height: 7px;
    background: var(--crdb-green);
    border-radius: 50%;
    flex-shrink: 0;
}

.crdb-hero-title {
    font-size: clamp(38px, 5vw, 60px);
    font-weight: 900;
    line-height: 1.08;
    color: var(--crdb-text);
    margin-bottom: 22px;
}

.crdb-hero-title .highlight {
    color: var(--crdb-green);
}

.crdb-hero-subtitle {
    font-size: 18px;
    color: var(--crdb-text-muted);
    line-height: 1.75;
    margin-bottom: 40px;
    max-width: 480px;
}

.crdb-hero-ctas {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.crdb-hero-stats {
    display: flex;
    gap: 36px;
    padding-top: 36px;
    border-top: 1px solid rgba(61, 174, 43, 0.18);
}

.crdb-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.crdb-stat-num {
    font-size: 30px;
    font-weight: 900;
    color: var(--crdb-green);
    line-height: 1;
}

.crdb-stat-lbl {
    font-size: 11px;
    font-weight: 600;
    color: var(--crdb-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

/* Hero Image Side */
.crdb-hero-visual {
    position: relative;
}

.crdb-hero-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.14);
    display: block;
}

.crdb-hero-float-card {
    position: absolute;
    bottom: 28px;
    left: -22px;
    background: #ffffff;
    border-radius: 14px;
    padding: 16px 20px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.13);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 220px;
}

.crdb-hero-float-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--crdb-green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--crdb-green);
    flex-shrink: 0;
}

.crdb-hero-float-text strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--crdb-text);
}

.crdb-hero-float-text span {
    font-size: 12px;
    color: var(--crdb-text-muted);
}

/* ── Motivation Card ── */
.crdb-motivation-section {
    padding: 64px 0;
    background: #ffffff;
}

.crdb-motivation-card {
    background: linear-gradient(135deg, #1d5029 0%, #3DAE2B 100%);
    border-radius: 22px;
    padding: 56px 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    box-shadow: 0 12px 48px rgba(33, 87, 50, 0.28);
    position: relative;
    overflow: hidden;
}

.crdb-motivation-card::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 280px;
    height: 280px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    pointer-events: none;
}

.crdb-motivation-card::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: 30%;
    width: 200px;
    height: 200px;
    background: rgba(249, 182, 65, 0.12);
    border-radius: 50%;
    pointer-events: none;
}

.crdb-motivation-body {
    flex: 1;
    position: relative;
    z-index: 1;
}

.crdb-motivation-eyebrow {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--crdb-yellow);
    margin-bottom: 14px;
}

.crdb-motivation-title {
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 16px;
}

.crdb-motivation-title .yellow {
    color: var(--crdb-yellow);
}

.crdb-motivation-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.75;
    max-width: 540px;
    margin-bottom: 32px;
}

.crdb-motivation-cta {
    display: inline-block;
    padding: 12px 30px;
    background: var(--crdb-yellow);
    color: #1a1a1a;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--crdb-transition);
}

.crdb-motivation-cta:hover {
    background: var(--crdb-yellow-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 182, 65, 0.45);
    text-decoration: none;
    color: #1a1a1a;
}

.crdb-motivation-logo-wrap {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.crdb-motivation-logo-wrap img {
    height: 160px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.88;
}

/* ── History Section ── */
.crdb-history-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.crdb-history-divider {
    width: 56px;
    height: 4px;
    background: var(--crdb-green);
    border-radius: 2px;
    margin: 24px 0 28px;
}

.crdb-history-body {
    font-size: 16px;
    color: var(--crdb-text-muted);
    line-height: 1.82;
    margin-bottom: 22px;
}

.crdb-history-img-wrap {
    position: relative;
}

.crdb-history-img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: var(--crdb-radius);
    display: block;
    box-shadow: 0 18px 56px rgba(0, 0, 0, 0.12);
}

.crdb-history-badge {
    position: absolute;
    bottom: -18px;
    right: -18px;
    background: var(--crdb-green);
    color: #ffffff;
    padding: 22px 28px;
    border-radius: var(--crdb-radius);
    text-align: center;
    box-shadow: 0 8px 24px rgba(61, 174, 43, 0.35);
    min-width: 130px;
}

.crdb-history-badge strong {
    display: block;
    font-size: 34px;
    font-weight: 900;
    line-height: 1;
}

.crdb-history-badge span {
    font-size: 13px;
    font-weight: 600;
    opacity: 0.9;
    display: block;
    margin-top: 2px;
}

/* ── Mission & Vision ── */
.crdb-mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.crdb-mv-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--crdb-shadow);
    transition: var(--crdb-transition);
}

.crdb-mv-card:hover {
    box-shadow: var(--crdb-shadow-hover);
    transform: translateY(-5px);
}

.crdb-mv-card-head {
    background: var(--crdb-green);
    padding: 26px 32px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.crdb-mv-card-head h3 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}

.crdb-mv-card-icon {
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, 0.22);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
}

.crdb-mv-card-body {
    padding: 28px 32px 36px;
}

.crdb-mv-card-body p {
    font-size: 16px;
    color: var(--crdb-text-muted);
    line-height: 1.82;
    margin: 0;
}

/* ── Core Values ── */
.crdb-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.crdb-values-row-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
    max-width: 760px;
    margin: 26px auto 0;
}

.crdb-value-card {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 18px;
    padding: 34px 28px 30px;
    text-align: center;
    transition: var(--crdb-transition);
    box-shadow: var(--crdb-shadow);
    position: relative;
    overflow: hidden;
}

.crdb-value-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--crdb-green), var(--crdb-yellow));
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.crdb-value-card:hover {
    box-shadow: var(--crdb-shadow-hover);
    transform: translateY(-5px);
    border-color: var(--crdb-green-light);
}

.crdb-value-card:hover::after {
    transform: scaleX(1);
}

.crdb-value-icon {
    width: 66px;
    height: 66px;
    background: var(--crdb-green-light);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--crdb-green);
    transition: var(--crdb-transition);
}

.crdb-value-card:hover .crdb-value-icon {
    background: var(--crdb-green);
    color: #ffffff;
}

.crdb-value-icon svg {
    width: 28px;
    height: 28px;
}

.crdb-value-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--crdb-text);
    margin-bottom: 10px;
}

.crdb-value-desc {
    font-size: 14px;
    color: var(--crdb-text-muted);
    line-height: 1.72;
    margin: 0;
}

/* ── Videos ── */
.crdb-videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.crdb-video-card {
    background: #ffffff;
    border-radius: var(--crdb-radius);
    overflow: hidden;
    box-shadow: var(--crdb-shadow);
    transition: var(--crdb-transition);
}

.crdb-video-card:hover {
    box-shadow: var(--crdb-shadow-hover);
    transform: translateY(-5px) scale(1.01);
}

.crdb-video-ratio {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #111;
}

.crdb-video-ratio iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.crdb-video-meta {
    padding: 16px 18px 18px;
}

.crdb-video-meta h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--crdb-text);
    line-height: 1.4;
    margin: 0 0 4px;
}

.crdb-video-meta p {
    font-size: 12px;
    color: var(--crdb-text-muted);
    margin: 0;
}

/* ── Footer ── */
.crdb-footer {
    background: var(--crdb-green-dark);
    color: #ffffff;
    padding-top: 68px;
}

.crdb-footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 52px;
    padding-bottom: 52px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.crdb-footer-brand img {
    height: 80px;
    width: auto;
    filter: brightness(0) invert(1);
    display: block;
    margin-bottom: 20px;
}

.crdb-footer-brand p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.75;
    max-width: 290px;
    margin: 0;
}

.crdb-footer-col-title {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--crdb-yellow);
    margin-bottom: 20px;
}

.crdb-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.crdb-footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    transition: var(--crdb-transition);
}

.crdb-footer-links a:hover {
    color: #ffffff;
    text-decoration: none;
}

.crdb-footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.crdb-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.72);
}

.crdb-footer-contact-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.crdb-footer-contact-item a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    transition: var(--crdb-transition);
}

.crdb-footer-contact-item a:hover {
    color: #ffffff;
}

.crdb-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    gap: 12px;
}

.crdb-footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
}

.crdb-footer-bottom a {
    font-size: 13px;
    color: var(--crdb-yellow);
    text-decoration: none;
    font-weight: 600;
    transition: var(--crdb-transition);
    white-space: nowrap;
}

.crdb-footer-bottom a:hover {
    color: var(--crdb-yellow-dark);
}

/* ── Login Page: Motivation Card ── */
.crdb-login-motivation {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 0 8px;
}

.crdb-login-motivation-tag {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--crdb-yellow);
}

.crdb-login-motivation-title {
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.3;
}

.crdb-login-motivation-title .yellow { color: var(--crdb-yellow); }

.crdb-login-motivation-bar {
    width: 44px;
    height: 3px;
    background: var(--crdb-yellow);
    border-radius: 2px;
}

.crdb-login-motivation-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.75;
    margin: 0;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .crdb-history-grid {
        gap: 52px;
    }
    .crdb-hero-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {

    .crdb-nav-links {
        display: none;
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        align-items: stretch;
        padding: 12px 20px 20px;
        border-bottom: 1px solid var(--crdb-border);
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.10);
        gap: 2px;
        z-index: 999;
        height: auto !important;
    }

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

    .crdb-nav-links li,
    .crdb-nav-links li:last-child {
        height: auto;
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        border-top: none;
    }

    .crdb-nav-links li:not(:last-child) a {
        display: block;
        padding: 10px 14px;
        height: auto;
        border-radius: 8px;
    }

    .crdb-nav-links li:not(:last-child) a::after {
        display: none;
    }

    .crdb-nav-links li:not(:last-child) a:hover {
        background: var(--crdb-green-light);
    }

    .crdb-btn-nav-login {
        display: block;
        text-align: center;
        margin-top: 6px;
        border-radius: 8px;
    }

    .crdb-nav-toggle {
        display: block;
    }

    .crdb-hero-grid {
        grid-template-columns: 1fr;
    }

    .crdb-hero-visual {
        display: none;
    }

    .crdb-hero {
        min-height: auto;
        padding: 100px 0 64px;
    }

    .crdb-section {
        padding: 64px 0;
    }

    .crdb-motivation-card {
        flex-direction: column;
        padding: 40px 28px;
        text-align: center;
    }

    .crdb-motivation-text {
        max-width: 100%;
    }

    .crdb-history-grid {
        grid-template-columns: 1fr;
    }

    .crdb-history-badge {
        bottom: 16px;
        right: 16px;
    }

    .crdb-mv-grid {
        grid-template-columns: 1fr;
    }

    .crdb-values-grid {
        grid-template-columns: 1fr 1fr;
    }

    .crdb-values-row-2 {
        grid-template-columns: 1fr 1fr;
        max-width: 100%;
        margin-top: 26px;
    }

    .crdb-videos-grid {
        grid-template-columns: 1fr 1fr;
    }

    .crdb-footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .crdb-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 520px) {
    .crdb-container {
        padding: 0 18px;
    }

    .crdb-hero-ctas {
        flex-direction: column;
        align-items: stretch;
    }

    .crdb-btn-primary,
    .crdb-btn-outline {
        text-align: center;
    }

    .crdb-hero-stats {
        gap: 20px;
        flex-wrap: wrap;
    }

    .crdb-values-grid {
        grid-template-columns: 1fr;
    }

    .crdb-values-row-2 {
        grid-template-columns: 1fr;
    }

    .crdb-videos-grid {
        grid-template-columns: 1fr;
    }

    .crdb-header-center {
        margin-bottom: 40px;
    }
}
