/* ==========================================================================
   DesignsDeal Home v2 — design system for the Gutenberg rebuild
   Primary #513DEB · Bricolage Grotesque display · Manrope body · 1300px grid
   Scope: everything is prefixed .ddv2- so it can never leak into old pages.
   ========================================================================== */

:root {
	--ddv2-primary: #513DEB;
	--ddv2-primary-hover: #4330C9;
	--ddv2-primary-soft: #EEEBFF;
	--ddv2-primary-50: #F7F5FF;
	--ddv2-secondary: #7C6CF2;
	--ddv2-secondary-soft: #F3F1FF;
	--ddv2-accent: #FFB547;
	--ddv2-accent-soft: #FFF4E1;
	--ddv2-success: #22C55E;
	--ddv2-success-soft: #DCFCE7;
	--ddv2-error: #EF4444;
	--ddv2-error-soft: #FEE2E2;
	--ddv2-ink: #111111;
	--ddv2-ink-soft: #374151;
	--ddv2-body: #555555;
	--ddv2-muted: #8A91A1;
	--ddv2-surface: #F4F6FA;
	--ddv2-surface-2: #E9EBF1;
	--ddv2-line: #D9DCE3;
	--ddv2-dark: #101014;
	--ddv2-radius: 24px;
	--ddv2-radius-sm: 14px;
	--ddv2-shadow-soft: 0 8px 30px rgba(0, 0, 0, .08);
	--ddv2-shadow-float: 0 20px 60px rgba(0, 0, 0, .12);
	--ddv2-font-display: 'Bricolage Grotesque', 'Manrope', system-ui, sans-serif;
	--ddv2-font-body: 'Manrope', system-ui, sans-serif;
}

/* ---- Section scaffolding ------------------------------------------------ */
.ddv2-section {
	font-family: var(--ddv2-font-body);
	color: var(--ddv2-body);
	padding: 112px 24px;
}
.ddv2-section > .ddv2-inner,
.ddv2-inner {
	max-width: 1300px;
	margin-left: auto;
	margin-right: auto;
}
.ddv2-section.is-surface { background: var(--ddv2-surface); }
.ddv2-section.is-dark { background: var(--ddv2-dark); color: #B9BCC9; }

.ddv2-section h1, .ddv2-section h2, .ddv2-section h3, .ddv2-section h4 {
	font-family: var(--ddv2-font-display);
	color: var(--ddv2-ink);
	letter-spacing: -0.02em;
	margin: 0;
	font-weight: 800;
}
.ddv2-section p { margin: 0; }
.ddv2-section .ddv2-highlight { color: var(--ddv2-primary); }
.ddv2-section .ddv2-highlight-2 { color: var(--ddv2-secondary); }

/* Section heading block (title + subtitle, centered) */
.ddv2-sec-head { text-align: center; max-width: 820px; margin: 0 auto 56px; }
.ddv2-sec-head h2 { font-size: clamp(32px, 4.5vw, 52px); line-height: 1.12; }
.ddv2-sec-head p { font-size: 19px; line-height: 1.7; margin-top: 16px; color: var(--ddv2-body); }

/* ---- Buttons ------------------------------------------------------------ */
.ddv2-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.ddv2-btns.is-center { justify-content: center; }
.ddv2-btn .wp-block-button__link,
a.ddv2-btn-link {
	background: var(--ddv2-primary);
	color: #fff !important;
	font-family: var(--ddv2-font-body);
	font-weight: 700;
	font-size: 17px;
	padding: 17px 34px;
	border-radius: var(--ddv2-radius-sm);
	text-decoration: none;
	display: inline-block;
	transition: background .15s, transform .1s;
	border: 0;
}
.ddv2-btn .wp-block-button__link:hover { background: var(--ddv2-primary-hover); }
.ddv2-btn-ghost .wp-block-button__link {
	background: #fff;
	color: var(--ddv2-ink) !important;
	border: 1.5px solid var(--ddv2-line);
	font-weight: 700;
	font-size: 17px;
	padding: 16px 32px;
	border-radius: var(--ddv2-radius-sm);
	transition: border-color .15s;
}
.ddv2-btn-ghost .wp-block-button__link:hover { border-color: var(--ddv2-primary); }

/* ---- Badges / pills ------------------------------------------------------ */
.ddv2-pill {
	display: inline-flex; align-items: center; gap: 8px;
	background: var(--ddv2-primary-soft); color: var(--ddv2-primary);
	font-size: 14.5px; font-weight: 700;
	padding: 9px 18px; border-radius: 999px;
}
.ddv2-pill.is-purple { background: var(--ddv2-secondary-soft); color: var(--ddv2-secondary); }
.ddv2-pill.is-amber { background: var(--ddv2-accent-soft); color: #B97A14; }
.ddv2-pill.is-dark { background: var(--ddv2-ink); color: #fff; }

/* ---- Media / placeholder images ----------------------------------------- */
.ddv2-media img {
	width: 100%; height: auto; display: block;
	border-radius: var(--ddv2-radius-sm);
}
.ddv2-media { margin: 0; }

/* ---- Cards --------------------------------------------------------------- */
.ddv2-card {
	background: #fff;
	border: 1px solid var(--ddv2-line);
	border-radius: var(--ddv2-radius);
	padding: 28px;
	box-shadow: var(--ddv2-shadow-soft);
}

/* ==========================================================================
   01 · NAVBAR
   ========================================================================== */
.ddv2-nav { position: sticky; top: 0; z-index: 90; background: rgba(255,255,255,.92); backdrop-filter: blur(12px); border-bottom: 1px solid var(--ddv2-line); padding: 0 24px; }
.ddv2-nav .ddv2-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 76px; }
.ddv2-nav-logo img { height: 40px; width: auto; display: block; }
.ddv2-nav-links { display: flex; gap: 32px; list-style: none; margin: 0; padding: 0; }
.ddv2-nav-links a { color: var(--ddv2-ink); font-weight: 600; font-size: 15.5px; text-decoration: none; }
.ddv2-nav-links a:hover { color: var(--ddv2-primary); }
.ddv2-nav-actions { display: flex; align-items: center; gap: 20px; }
.ddv2-nav-actions .ddv2-login { color: var(--ddv2-ink); font-weight: 700; font-size: 15.5px; text-decoration: none; }
.ddv2-nav-actions .ddv2-login:hover { color: var(--ddv2-primary); }
.ddv2-nav-actions a.ddv2-btn-link { padding: 12px 24px; font-size: 15.5px; }
@media (max-width: 900px) { .ddv2-nav-links { display: none; } }

/* ==========================================================================
   02 · HERO
   ========================================================================== */
.ddv2-hero { padding-top: 72px; padding-bottom: 96px; }
.ddv2-hero .ddv2-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; }
.ddv2-hero h1 { font-size: clamp(38px, 5.2vw, 66px); line-height: 1.07; }
.ddv2-hero .ddv2-hero-sub { font-size: 19.5px; line-height: 1.7; margin-top: 24px; max-width: 540px; }
.ddv2-hero .ddv2-btns { margin-top: 36px; }
.ddv2-hero .ddv2-pill { margin-bottom: 28px; }
.ddv2-hero-visual { position: relative; }
.ddv2-hero-visual img { border-radius: var(--ddv2-radius); width: 100%; height: auto; display: block; }
.ddv2-hero-chip {
	position: absolute; background: #fff; border-radius: 16px;
	box-shadow: var(--ddv2-shadow-float); padding: 16px 20px;
	font-size: 14.5px; font-weight: 600; color: var(--ddv2-ink);
}
.ddv2-hero-chip.is-top { top: 28px; right: -18px; max-width: 300px; }
.ddv2-hero-chip.is-bottom { bottom: 32px; left: -22px; }
.ddv2-hero-chip .ddv2-chip-label { display: flex; align-items: center; gap: 8px; font-weight: 700; }
.ddv2-hero-chip .ddv2-chip-msg { background: var(--ddv2-surface); border-radius: 10px; padding: 10px 12px; margin-top: 10px; font-weight: 500; color: var(--ddv2-ink-soft); }
.ddv2-hero-chip .ddv2-chip-msg.is-ai { background: var(--ddv2-primary-soft); color: var(--ddv2-primary-hover); }
.ddv2-stars { color: var(--ddv2-accent); letter-spacing: 2px; font-size: 16px; }
/* feature mini-cards row */
.ddv2-hero-feats { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; margin-top: 72px; }
.ddv2-hero-feats .ddv2-feat { background: #fff; border: 1px solid var(--ddv2-line); border-radius: 18px; padding: 22px 20px; }
.ddv2-hero-feats .ddv2-feat h3 { font-size: 16.5px; margin-top: 12px; font-family: var(--ddv2-font-body); font-weight: 800; }
.ddv2-hero-feats .ddv2-feat p { font-size: 14px; line-height: 1.55; margin-top: 6px; color: var(--ddv2-muted); }
.ddv2-icon-tile { width: 42px; height: 42px; border-radius: 12px; background: var(--ddv2-primary-soft); display: flex; align-items: center; justify-content: center; color: var(--ddv2-primary); font-size: 19px; }
@media (max-width: 1024px) { .ddv2-hero .ddv2-hero-grid { grid-template-columns: 1fr; } .ddv2-hero-feats { grid-template-columns: repeat(2, 1fr); } .ddv2-hero-chip.is-top { right: 8px; } .ddv2-hero-chip.is-bottom { left: 8px; } }

/* ==========================================================================
   03 · TWO WAYS TO LEARN  +  12 · ENROLL (shared card language)
   ========================================================================== */
.ddv2-paths { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: stretch; }
.ddv2-path { position: relative; display: flex; flex-direction: column; }
.ddv2-path .ddv2-path-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.ddv2-path h3 { font-size: 26px; margin: 22px 0 4px; }
.ddv2-path ul { list-style: none; margin: 16px 0 0; padding: 0; display: grid; gap: 12px; }
.ddv2-path ul li { display: flex; gap: 10px; align-items: flex-start; font-size: 16px; color: var(--ddv2-ink-soft); font-weight: 600; }
.ddv2-path ul li::before { content: "✓"; color: var(--ddv2-success); font-weight: 800; flex-shrink: 0; }
.ddv2-path .ddv2-btns { margin-top: 26px; }
.ddv2-path .ddv2-btn .wp-block-button__link { width: 100%; text-align: center; }
.ddv2-path.is-featured { border: 2px solid var(--ddv2-primary); }
.ddv2-path .ddv2-price-row { display: flex; justify-content: space-between; align-items: center; background: var(--ddv2-surface); border-radius: 12px; padding: 14px 18px; margin-top: 16px; font-weight: 700; color: var(--ddv2-ink); }
.ddv2-path .ddv2-price-row .ddv2-price-note { font-size: 13.5px; color: var(--ddv2-muted); font-weight: 600; }
.ddv2-path .ddv2-price-old { color: var(--ddv2-muted); text-decoration: line-through; font-weight: 600; margin-right: 8px; }
.ddv2-popular { position: absolute; top: -16px; left: 50%; transform: translateX(-50%); z-index: 2; }
/* Best-for comparison strip */
.ddv2-bestfor { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 32px; }
.ddv2-bestfor h4 { font-size: 18px; margin-bottom: 14px; }
.ddv2-bestfor ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.ddv2-bestfor ul li { display: flex; gap: 10px; font-size: 15.5px; font-weight: 600; color: var(--ddv2-ink-soft); }
.ddv2-bestfor ul li::before { content: "✓"; color: var(--ddv2-success); font-weight: 800; }
@media (max-width: 900px) { .ddv2-paths, .ddv2-bestfor { grid-template-columns: 1fr; } }

/* ==========================================================================
   04 · WILL AI REPLACE — comparison columns
   ========================================================================== */
.ddv2-ai-cols { display: grid; grid-template-columns: 1fr auto 1fr; gap: 28px; align-items: stretch; }
.ddv2-ai-col h3 { font-size: 22px; margin-bottom: 18px; text-align: center; }
.ddv2-ai-col ul { list-style: none; margin: 18px 0 0; padding: 18px 0 0; border-top: 1px solid var(--ddv2-line); display: grid; gap: 12px; }
.ddv2-ai-col ul li { display: flex; gap: 10px; font-weight: 600; color: var(--ddv2-ink-soft); font-size: 15.5px; }
.ddv2-ai-col.is-negative ul li::before { content: "✕"; color: var(--ddv2-error); font-weight: 800; }
.ddv2-ai-col.is-positive ul li::before { content: "✓"; color: var(--ddv2-success); font-weight: 800; }
.ddv2-ai-bridge { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; max-width: 150px; text-align: center; font-size: 14px; font-weight: 700; color: var(--ddv2-primary); }
.ddv2-ai-bridge .ddv2-arrow { font-size: 34px; line-height: 1; }
.ddv2-ai-callout { margin-top: 32px; text-align: center; padding: 40px; }
.ddv2-ai-callout h3 { font-size: 26px; }
.ddv2-ai-callout p { margin-top: 12px; font-size: 17px; max-width: 620px; margin-left: auto; margin-right: auto; }
@media (max-width: 900px) { .ddv2-ai-cols { grid-template-columns: 1fr; } .ddv2-ai-bridge { max-width: none; } .ddv2-ai-bridge .ddv2-arrow { transform: rotate(90deg); } }

/* ==========================================================================
   05 · WHY DIFFERENT — 4 feature cards
   06 · HOW YOU LEARN / 08 JOURNEY / 09 MASTERY / 10 CAREERS — numbered grids
   ========================================================================== */
.ddv2-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.ddv2-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.ddv2-gcard h3 { font-size: 20px; margin-top: 18px; }
.ddv2-gcard p { font-size: 15.5px; line-height: 1.65; margin-top: 8px; }
.ddv2-gcard .ddv2-num { font-family: var(--ddv2-font-display); font-weight: 800; font-size: 15px; color: var(--ddv2-primary); background: var(--ddv2-primary-soft); border-radius: 10px; padding: 6px 12px; display: inline-block; }
.ddv2-gcard .ddv2-media { margin-top: 18px; }
.ddv2-callout-band { text-align: center; padding: 44px 32px; background: var(--ddv2-primary-soft); border-radius: var(--ddv2-radius); margin-top: 40px; }
.ddv2-callout-band h3 { font-size: 24px; }
.ddv2-callout-band p { margin-top: 10px; font-size: 16.5px; }
.ddv2-career-path { display: flex; justify-content: center; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: 22px; font-weight: 700; color: var(--ddv2-ink); }
.ddv2-career-path .ddv2-step-pill { background: #fff; border: 1.5px solid var(--ddv2-line); border-radius: 999px; padding: 10px 20px; font-size: 15px; }
.ddv2-career-path .ddv2-sep { color: var(--ddv2-primary); font-weight: 800; }
@media (max-width: 900px) { .ddv2-grid-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .ddv2-grid-3, .ddv2-grid-2 { grid-template-columns: 1fr; } }

/* ==========================================================================
   07 · TESTIMONIALS — restyle the live reviews grid to v2 tokens
   ========================================================================== */
.ddv2-reviews .dd-rev-grid { columns: 3; column-gap: 28px; }
.ddv2-reviews .dd-rev-card { border-radius: var(--ddv2-radius); border-color: var(--ddv2-line); box-shadow: var(--ddv2-shadow-soft); }
.ddv2-reviews .dd-rev-avatar { background: linear-gradient(135deg, var(--ddv2-primary), var(--ddv2-secondary)); }
@media (max-width: 900px) { .ddv2-reviews .dd-rev-grid { columns: 2; } }
@media (max-width: 620px) { .ddv2-reviews .dd-rev-grid { columns: 1; } }

/* ==========================================================================
   11 · INSTRUCTOR — split profile
   ========================================================================== */
.ddv2-instructor-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center; }
.ddv2-instructor-grid .ddv2-pill { margin-bottom: 20px; }
.ddv2-instructor-grid h3 { font-size: clamp(28px, 3.4vw, 40px); }
.ddv2-instructor-grid .ddv2-role { color: var(--ddv2-primary); font-weight: 700; font-size: 17px; margin-top: 10px; }
.ddv2-instructor-grid .ddv2-bio { font-size: 17px; line-height: 1.75; margin-top: 20px; }
@media (max-width: 900px) { .ddv2-instructor-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   13 · FAQ — native details/summary accordion
   ========================================================================== */
.ddv2-faq-list { max-width: 860px; margin: 0 auto; display: grid; gap: 14px; }
.ddv2-faq-list details { background: #fff; border: 1px solid var(--ddv2-line); border-radius: 16px; padding: 0; overflow: hidden; }
.ddv2-faq-list summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 22px 26px; font-family: var(--ddv2-font-body); font-weight: 800; font-size: 17px; color: var(--ddv2-ink); }
.ddv2-faq-list summary::-webkit-details-marker { display: none; }
.ddv2-faq-list summary::after { content: "+"; font-size: 24px; color: var(--ddv2-primary); font-weight: 600; transition: transform .2s; flex-shrink: 0; }
.ddv2-faq-list details[open] summary::after { transform: rotate(45deg); }
.ddv2-faq-list details p { padding: 0 26px 22px; font-size: 16px; line-height: 1.7; }
.ddv2-faq-cta { text-align: center; margin-top: 48px; }
.ddv2-faq-cta h3 { font-size: 24px; }
.ddv2-faq-cta p { margin: 10px 0 22px; }

/* ==========================================================================
   14 · FOOTER — dark CTA + nav grid + trust bar
   ========================================================================== */
.ddv2-footer { background: var(--ddv2-dark); color: #B9BCC9; padding: 96px 24px 40px; font-family: var(--ddv2-font-body); }
.ddv2-footer h2, .ddv2-footer h3, .ddv2-footer h4 { color: #fff; font-family: var(--ddv2-font-display); margin: 0; }
.ddv2-footer .ddv2-foot-cta { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; padding-bottom: 64px; border-bottom: 1px solid rgba(255,255,255,.12); }
.ddv2-footer .ddv2-foot-cta h2 { font-size: clamp(30px, 3.8vw, 44px); line-height: 1.15; }
.ddv2-footer .ddv2-foot-cta p { margin-top: 16px; font-size: 17px; line-height: 1.7; }
.ddv2-footer .ddv2-btns { margin-top: 0; justify-content: flex-end; }
.ddv2-footer .ddv2-btn-ghost .wp-block-button__link { background: transparent; color: #fff !important; border-color: rgba(255,255,255,.25); }
.ddv2-foot-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; padding: 56px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.ddv2-foot-grid h4 { font-size: 16.5px; margin-bottom: 18px; }
.ddv2-foot-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.ddv2-foot-grid a { color: #B9BCC9; text-decoration: none; font-size: 15px; }
.ddv2-foot-grid a:hover { color: #fff; }
.ddv2-foot-trust { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding: 32px 0; border-bottom: 1px solid rgba(255,255,255,.12); font-weight: 600; color: #D9DCE9; font-size: 15px; }
.ddv2-foot-trust span { display: flex; align-items: center; gap: 10px; }
.ddv2-foot-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 32px; font-size: 14px; }
.ddv2-foot-bottom a { color: #B9BCC9; text-decoration: none; margin-left: 22px; }
.ddv2-foot-bottom a:hover { color: #fff; }
@media (max-width: 900px) { .ddv2-footer .ddv2-foot-cta { grid-template-columns: 1fr; } .ddv2-footer .ddv2-btns { justify-content: flex-start; } .ddv2-foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .ddv2-foot-grid { grid-template-columns: 1fr; } }

/* ---- Small screens: section rhythm -------------------------------------- */
@media (max-width: 780px) {
	.ddv2-section { padding: 72px 20px; }
	.ddv2-sec-head { margin-bottom: 40px; }
}

/* Canvas: force white behind all v2 sections (theme kit uses a cream body bg) */
body.ddv2-canvas { background: #fff !important; }
.ddv2-section { background: #fff; }
.ddv2-section.is-surface { background: var(--ddv2-surface); }
.ddv2-section.is-dark, .ddv2-footer { background: var(--ddv2-dark); }

/* Theme kit overrides heading colors at higher specificity — force footer white */
.ddv2-footer h2, .ddv2-footer h3, .ddv2-footer h4,
.ddv2-footer .wp-block-heading { color: #fff !important; }

/* ==========================================================================
   02b · HERO v2 — centered, floating deco graphics, 90vw feature bar
   ========================================================================== */
.ddv2-hero.is-centered { position: relative; overflow: hidden; text-align: center; padding: 88px 24px 96px; }
.ddv2-hero.is-centered .ddv2-hero-content { position: relative; z-index: 2; max-width: 980px; margin: 0 auto; }
.ddv2-hero.is-centered h1 { font-size: clamp(42px, 6.2vw, 80px); line-height: 1.08; }
.ddv2-hero.is-centered .ddv2-hero-sub { max-width: 680px; margin: 26px auto 0; }
.ddv2-hero.is-centered .ddv2-btns { justify-content: center; margin-top: 38px; }
.ddv2-ai-underline { text-decoration: underline; text-decoration-color: var(--ddv2-primary); text-decoration-thickness: 6px; text-underline-offset: 10px; }
/* floating decorative graphics */
.ddv2-hero-deco { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.ddv2-hero-deco .ddv2-f { position: absolute; opacity: .85; animation: ddv2Float 8s ease-in-out infinite; will-change: transform; }
@keyframes ddv2Float { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-16px) rotate(3deg); } }
.ddv2-f1 { top: 15%; left: 6%; animation-duration: 9s; }
.ddv2-f2 { top: 11%; left: 21%; animation-duration: 7s; animation-delay: .8s; }
.ddv2-f3 { top: 42%; left: 9%; animation-duration: 11s; animation-delay: 1.5s; }
.ddv2-f4 { bottom: 30%; left: 4%; animation-duration: 8s; animation-delay: .4s; }
.ddv2-f5 { top: 30%; left: 29%; animation-duration: 6.5s; }
.ddv2-f6 { top: 12%; right: 23%; animation-duration: 7.5s; animation-delay: 1.2s; }
.ddv2-f7 { top: 27%; right: 11%; animation-duration: 9s; animation-delay: .6s; }
.ddv2-f8 { bottom: 26%; right: 6%; animation-duration: 8.5s; animation-delay: 1.8s; }
.ddv2-f9 { top: 7%; right: 7%; animation-duration: 6s; }
.ddv2-f10 { bottom: 38%; right: 27%; animation-duration: 7s; animation-delay: 2s; }
@media (max-width: 900px) { .ddv2-f2, .ddv2-f5, .ddv2-f6, .ddv2-f10 { display: none; } .ddv2-hero-deco .ddv2-f { opacity: .4; } }
@media (max-width: 640px) { .ddv2-hero-deco { display: none; } .ddv2-hero.is-centered { padding: 64px 20px 56px; } }
@media (prefers-reduced-motion: reduce) { .ddv2-hero-deco .ddv2-f { animation: none; } }
/* 4-item feature bar, 90% of screen */
.ddv2-hero-featbar { position: relative; z-index: 2; width: min(90vw, 1400px); margin: 88px auto 0; background: #fff; border: 1px solid var(--ddv2-line); border-radius: 22px; box-shadow: var(--ddv2-shadow-soft); display: grid; grid-template-columns: repeat(4, 1fr); text-align: left; }
.ddv2-hero-featbar .ddv2-feat { display: flex; align-items: center; gap: 14px; padding: 26px 28px; border-left: 1px solid var(--ddv2-surface-2); }
.ddv2-hero-featbar .ddv2-feat:first-child { border-left: 0; }
.ddv2-hero-featbar .ddv2-feat h3 { font-family: var(--ddv2-font-body); font-size: 16px; font-weight: 800; margin: 0; }
.ddv2-hero-featbar .ddv2-feat p { font-size: 13.5px; color: var(--ddv2-muted); margin-top: 4px; line-height: 1.5; }
.ddv2-feat-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; background: var(--ddv2-surface); }
.ddv2-feat-icon.is-ai { background: linear-gradient(135deg, var(--ddv2-primary), var(--ddv2-secondary)); }
@media (max-width: 1024px) { .ddv2-hero-featbar { grid-template-columns: 1fr 1fr; } .ddv2-hero-featbar .ddv2-feat:nth-child(3) { border-left: 0; } }
@media (max-width: 620px) { .ddv2-hero-featbar { grid-template-columns: 1fr; } .ddv2-hero-featbar .ddv2-feat { border-left: 0; border-top: 1px solid var(--ddv2-surface-2); } .ddv2-hero-featbar .ddv2-feat:first-child { border-top: 0; } }

/* Hero heading: two lines on desktop ("... UI/UX Designer," / "Powered by AI") */
.ddv2-hero.is-centered .ddv2-hero-content { max-width: 1240px; }
.ddv2-hero.is-centered h1 { font-size: clamp(36px, 4.6vw, 64px); line-height: 1.12; }

/* ==========================================================================
   v3 review fixes
   ========================================================================== */
/* Hero: new one-line headline, 5.4em / heaviest weight on desktop */
.ddv2-hero.is-centered h1 { font-size: 5.4em; font-weight: 900; line-height: 1.05; }
@media (max-width: 1100px) { .ddv2-hero.is-centered h1 { font-size: 3.4em; } }
@media (max-width: 620px) { .ddv2-hero.is-centered h1 { font-size: 2.5em; } }
/* Section headings: 2.6em / 700 everywhere */
.ddv2-sec-head h2 { font-size: 2.6em; font-weight: 700; }
/* Feature strip: remove dead space above, tighten padding */
.ddv2-hero-featbar { margin-top: 56px; }
.ddv2-hero-featbar .ddv2-feat { padding: 22px 26px; }
.ddv2-hero-featbar .ddv2-feat .wp-block-group { margin: 0 !important; }
/* Kill theme block-gap margins inside every ddv2 grid → equal heights */
.ddv2-paths > *, .ddv2-grid-2 > *, .ddv2-grid-3 > *, .ddv2-ai-cols > *,
.ddv2-hero-featbar > *, .ddv2-bestfor > * { margin-top: 0 !important; margin-bottom: 0 !important; }
/* Media inside cards: fixed 16:9 so every card lines up */
.ddv2-card .ddv2-media img { aspect-ratio: 16 / 9; object-fit: cover; }
/* Pin path-card CTAs to the bottom */
.ddv2-path > .wp-block-buttons { margin-top: auto !important; padding-top: 26px; }
/* Pills: align inline SVGs */
.ddv2-pill svg { flex-shrink: 0; }
.ddv2-dot { width: 10px; height: 10px; border-radius: 50%; background: #E5484D; display: inline-block; }
/* Accent underline ("the designer who does") */
.ddv2-underline-accent { text-decoration: underline; text-decoration-color: var(--ddv2-accent); text-decoration-thickness: 4px; text-underline-offset: 6px; color: var(--ddv2-primary); }
/* Will-AI v2: icon+title row, bottom points row */
.ddv2-ai-title { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 18px; }
.ddv2-ai-title h3 { margin: 0 !important; }
.ddv2-ai-title > * { margin: 0 !important; }
.ddv2-ai-points { display: flex; gap: 14px; border-top: 1px solid var(--ddv2-line); margin-top: 20px; padding-top: 18px; }
.ddv2-ai-points span { display: flex; align-items: flex-start; gap: 8px; flex: 1; font-size: 14.5px; font-weight: 600; color: var(--ddv2-ink-soft); line-height: 1.4; }
.ddv2-ai-points svg { flex-shrink: 0; margin-top: 1px; }
.ddv2-ai-col { display: flex; flex-direction: column; }
.ddv2-ai-col .ddv2-media { margin-top: 0; }
.ddv2-ai-col .ddv2-ai-points { margin-top: auto; padding-top: 18px; }
@media (max-width: 900px) { .ddv2-ai-points { flex-direction: column; } }
/* Will-AI callout: art + left-aligned text */
.ddv2-ai-callout2 { display: flex; align-items: center; gap: 36px; text-align: left; }
.ddv2-ai-callout2 .ddv2-callout-text > * { margin: 0 !important; }
.ddv2-ai-callout2 .ddv2-callout-text p { margin-top: 10px !important; }
@media (max-width: 780px) { .ddv2-ai-callout2 { flex-direction: column; text-align: center; } }
/* Dark "Why Different" section */
.ddv2-section.is-dark .ddv2-sec-head h2, .ddv2-section.is-dark .ddv2-sec-head h2 span { color: #fff; }
.ddv2-section.is-dark .ddv2-sec-head h2 .ddv2-highlight { color: #9D8DFF; }
.ddv2-section.is-dark .ddv2-sec-head p { color: #A9AEC4; }
.ddv2-card.is-dark-card { background: #1B1B24; border-color: rgba(255,255,255,.09); box-shadow: none; }
.ddv2-card.is-dark-card h3 { color: #fff; }
.ddv2-card.is-dark-card p { color: #A9AEC4; }

/* ==========================================================================
   v4: section rebuilds to match approved designs
   ========================================================================== */
/* 07 · How You Will Learn — horizontal timeline */
.ddv2-hl-track { position: relative; display: grid; grid-template-columns: repeat(6, 1fr); justify-items: center; margin-bottom: 48px; }
.ddv2-hl-track::before { content: ""; position: absolute; left: 9%; right: 9%; top: 50%; height: 2px; background: #C9D2F4; }
.ddv2-hl-num { position: relative; z-index: 1; width: 54px; height: 54px; border-radius: 50%; background: #fff; border: 1px solid var(--ddv2-line); box-shadow: var(--ddv2-shadow-sm, 0 2px 8px rgba(0,0,0,.05)); display: flex; align-items: center; justify-content: center; color: var(--ddv2-primary); font-weight: 800; font-size: 15px; }
.ddv2-hl-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 22px; }
.ddv2-hl-grid > * { margin: 0 !important; }
.ddv2-hl-item { text-align: center; }
.ddv2-hl-icon { width: 92px; height: 92px; border-radius: 50%; background: #fff; box-shadow: var(--ddv2-shadow-soft); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.ddv2-hl-item h3 { font-family: var(--ddv2-font-body); font-size: 17px; font-weight: 800; margin: 0 0 10px !important; }
.ddv2-hl-item p { font-size: 14.5px; line-height: 1.6; color: var(--ddv2-body); margin: 0 !important; }
@media (max-width: 1024px) { .ddv2-hl-track { display: none; } .ddv2-hl-grid { grid-template-columns: repeat(3, 1fr); row-gap: 40px; } }
@media (max-width: 620px) { .ddv2-hl-grid { grid-template-columns: 1fr 1fr; } }
/* 08 · Journey — vertical zigzag timeline */
.ddv2-journey { position: relative; max-width: 1080px; margin: 0 auto; }
.ddv2-journey::before { content: ""; position: absolute; left: 50%; top: 10px; bottom: 240px; width: 2px; background: #C9D2F4; transform: translateX(-50%); }
.ddv2-jitem { position: relative; width: calc(50% - 48px); margin-bottom: 36px !important; }
.ddv2-jitem.is-left { margin-right: auto; }
.ddv2-jitem.is-right { margin-left: auto; }
.ddv2-jitem::after { content: ""; position: absolute; top: calc(50% - 10px); width: 16px; height: 16px; background: #fff; border: 3px solid var(--ddv2-primary); border-radius: 50%; }
.ddv2-jitem.is-left::after { right: -58px; }
.ddv2-jitem.is-right::after { left: -58px; }
.ddv2-jcard { display: flex; gap: 18px; align-items: flex-start; background: #fff; border: 1px solid var(--ddv2-line); border-radius: 20px; padding: 24px; box-shadow: var(--ddv2-shadow-soft); }
.ddv2-jcard > * { margin: 0 !important; }
.ddv2-jcard .ddv2-jthumb { width: 88px; flex-shrink: 0; }
.ddv2-jcard .ddv2-jthumb img { aspect-ratio: 1 / 1; object-fit: cover; border-radius: 12px; }
.ddv2-jnum { color: var(--ddv2-primary); font-weight: 800; font-size: 13px; letter-spacing: 2px; }
.ddv2-jtext h3 { font-size: 19px; margin: 6px 0 6px !important; }
.ddv2-jtext p { font-size: 15px; line-height: 1.6; }
.ddv2-jend { position: relative; text-align: center; padding-top: 12px; }
.ddv2-jend > * { margin: 0 !important; }
.ddv2-jend .ddv2-jend-media { display: flex; justify-content: center; margin-bottom: 20px !important; }
.ddv2-jend .ddv2-jend-media img { width: 124px; height: 124px; aspect-ratio: 1/1; object-fit: cover; border-radius: 50%; border: 8px solid var(--ddv2-primary-soft); }
.ddv2-jend h3 { color: var(--ddv2-primary); font-size: 22px; }
.ddv2-jend p { margin-top: 8px !important; }
@media (max-width: 780px) {
	.ddv2-journey::before { left: 12px; transform: none; }
	.ddv2-jitem, .ddv2-jitem.is-left, .ddv2-jitem.is-right { width: auto; margin-left: 44px !important; margin-right: 0 !important; }
	.ddv2-jitem.is-left::after, .ddv2-jitem.is-right::after { left: -40px; right: auto; }
}
/* 09 · Mastery — dark callout band */
.ddv2-callout-band.is-dark-band { background: var(--ddv2-dark); }
.ddv2-callout-band.is-dark-band h3 { color: #fff !important; }
.ddv2-callout-band.is-dark-band p { color: #A9AEC4; }
/* 10 · Careers — icon tiles + rocket callout */
.ddv2-ctile { width: 56px; height: 56px; border-radius: 16px; background: var(--ddv2-primary-soft); display: flex; align-items: center; justify-content: center; margin-bottom: 4px; }
.ddv2-ctile.is-amber { background: var(--ddv2-accent-soft); }
.ddv2-career-callout { background: var(--ddv2-surface); border: 1px solid var(--ddv2-surface-2); border-radius: var(--ddv2-radius); padding: 36px 40px; margin-top: 40px; }
.ddv2-career-callout > * { margin: 0 !important; }
.ddv2-career-callout-head { display: flex; align-items: center; gap: 22px; text-align: left; }
.ddv2-career-callout-head > * { margin: 0 !important; }
.ddv2-rocket-tile { width: 60px; height: 60px; border-radius: 16px; background: linear-gradient(135deg, var(--ddv2-primary), var(--ddv2-secondary)); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ddv2-career-callout-text h3 { font-size: 21px; margin: 0 !important; }
.ddv2-career-callout-text p { margin: 6px 0 0 !important; font-size: 16px; }
.ddv2-career-path { margin-top: 28px; }
.ddv2-career-path .ddv2-sep { display: inline-flex; align-items: center; }
/* 13 · FAQ — two-column with numbered accordion */
.ddv2-underline-primary { text-decoration: underline; text-decoration-thickness: 5px; text-underline-offset: 10px; }
.ddv2-faq-grid { display: grid; grid-template-columns: .42fr .58fr; gap: 44px; align-items: start; }
.ddv2-faq-grid > * { margin: 0 !important; }
.ddv2-faq-side .ddv2-faq-illustration img { aspect-ratio: 4 / 3.4; object-fit: cover; border-radius: 20px; }
.ddv2-faq-help { display: flex; align-items: center; gap: 20px; margin-top: 28px !important; }
.ddv2-faq-help > * { margin: 0 !important; }
.ddv2-faq-help-text h3 { font-size: 18px; margin: 0 !important; }
.ddv2-faq-help-text p { font-size: 14.5px; margin: 6px 0 0 !important; line-height: 1.55; }
.ddv2-faq-help .ddv2-btn .wp-block-button__link { padding: 13px 24px; font-size: 15px; background: var(--ddv2-secondary); }
.ddv2-faq-list { max-width: none; margin: 0; counter-reset: ddv2faq; }
.ddv2-faq-list details { counter-increment: ddv2faq; }
.ddv2-faq-list summary::before { content: counter(ddv2faq, decimal-leading-zero); width: 38px; height: 38px; border-radius: 50%; background: var(--ddv2-primary-soft); color: var(--ddv2-primary); display: flex; align-items: center; justify-content: center; font-size: 13.5px; font-weight: 700; flex-shrink: 0; }
.ddv2-faq-list summary { justify-content: flex-start; }
.ddv2-faq-list summary::after { margin-left: auto; width: 36px; height: 36px; border: 1px solid var(--ddv2-line); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--ddv2-ink); }
.ddv2-faq-list details[open] { background: var(--ddv2-primary-soft); border-color: transparent; }
.ddv2-faq-list details p { padding-left: 80px; }
.ddv2-faq-banner { display: flex; align-items: center; gap: 32px; background: var(--ddv2-primary-soft); border-radius: var(--ddv2-radius); padding: 40px 44px; margin-top: 48px; text-align: left; }
.ddv2-faq-banner > * { margin: 0 !important; }
.ddv2-faq-banner .ddv2-faq-banner-art { width: 96px; flex-shrink: 0; }
.ddv2-faq-banner .ddv2-faq-banner-art img { aspect-ratio: 1/1; object-fit: cover; border-radius: 50%; }
.ddv2-faq-banner-text h3 { font-size: 22px; margin: 0 !important; }
.ddv2-faq-banner-text p { margin: 8px 0 18px !important; }
@media (max-width: 900px) { .ddv2-faq-grid { grid-template-columns: 1fr; } .ddv2-faq-banner { flex-direction: column; text-align: center; } .ddv2-faq-list details p { padding-left: 26px; } }

/* ==========================================================================
   v5: colorful graphics + typography upgrades
   ========================================================================== */
/* 08 · Journey: 150px SVG art, Inter headings 24px, body 18px */
.ddv2-jcard .ddv2-jart { width: 150px; flex-shrink: 0; display: block; }
.ddv2-jcard .ddv2-jart svg { width: 100%; height: auto; display: block; }
.ddv2-jtext h3 { font-family: 'Inter', var(--ddv2-font-body), sans-serif; font-size: 24px; font-weight: 800; }
.ddv2-jtext p { font-size: 18px; line-height: 1.65; }
.ddv2-jend .ddv2-jend-art { display: flex; justify-content: center; margin-bottom: 24px; }
.ddv2-jend .ddv2-jend-art svg { width: 150px; height: 150px; }
.ddv2-jend h3 { font-size: 40px; }
.ddv2-jend p { font-size: 22px; margin-top: 10px !important; }
.ddv2-journey::before { bottom: 300px; }
@media (max-width: 780px) {
	.ddv2-jcard { flex-direction: column; }
	.ddv2-jcard .ddv2-jart { width: 120px; }
	.ddv2-jend h3 { font-size: 28px; }
	.ddv2-jend p { font-size: 18px; }
}
/* 09 · Mastery: primary-blue callout band */
.ddv2-callout-band.is-primary-band { background: var(--ddv2-primary); }
.ddv2-callout-band.is-primary-band h3 { color: #fff !important; }
.ddv2-callout-band.is-primary-band p { color: #E4E0FF; }
.ddv2-card.is-dark-card .ddv2-media img { opacity: .92; }
/* 10 · Careers: icon + title row, no tile background */
.ddv2-chead { display: flex; align-items: center; gap: 16px; margin-bottom: 6px; }
.ddv2-chead > * { margin: 0 !important; }
.ddv2-chead h3 { font-size: 21px; }
.ddv2-cicon { width: 48px; height: 48px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.ddv2-cicon svg { width: 46px; height: 46px; }
.ddv2-ccard p { margin-top: 10px !important; }
.ddv2-career-callout.is-minimal { background: var(--ddv2-surface); border: 1px solid var(--ddv2-surface-2); border-radius: var(--ddv2-radius); padding: 34px 40px; margin-top: 40px; }
.ddv2-career-path.is-large { margin-top: 0; }
.ddv2-career-path.is-large .ddv2-step-pill { font-size: 18px; padding: 14px 28px; font-weight: 800; }

/* Instructor: multi-paragraph bio spacing */
.ddv2-instructor-grid .ddv2-bio + .ddv2-bio { margin-top: 16px !important; }

/* ==========================================================================
   v6: Enroll section — dark, big pricing, merged best-for
   ========================================================================== */
.ddv2-enroll .ddv2-path-title { font-size: 40px !important; color: #fff !important; margin: 6px 0 18px !important; }
.ddv2-enroll .ddv2-path ul li { font-size: 22px; color: #D5D8E8; }
.ddv2-enroll .ddv2-path { padding: 34px; }
.ddv2-pill.is-closed { background: rgba(239,68,68,.14); color: #FF9B9B; }
.ddv2-pill.is-closed .ddv2-dot { background: #EF4444; }
/* price emphasis */
.ddv2-price-block { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 18px; padding: 22px 26px; margin-top: 22px; }
.ddv2-price-old { display: block; font-size: 36px; font-weight: 600; color: #8A91A1; text-decoration: line-through; line-height: 1.2; }
.ddv2-price-new { display: block; font-size: 55px; font-weight: 800; color: #fff; line-height: 1.15; font-family: var(--ddv2-font-display); }
.ddv2-price-note { display: block; margin-top: 6px; font-size: 15px; font-weight: 600; color: #A9AEC4; }
/* full-width CTAs */
.ddv2-enroll .ddv2-path .ddv2-btns, .ddv2-enroll .ddv2-path .wp-block-button { width: 100%; }
.ddv2-enroll .ddv2-path .ddv2-btn .wp-block-button__link { width: 100%; text-align: center; font-size: 19px; padding: 19px 34px; }
/* best-for inside card */
.ddv2-bestfor-in { margin-top: 26px; border-top: 1px solid rgba(255,255,255,.1); padding-top: 22px; }
.ddv2-bestfor-in h4 { color: #fff; font-family: var(--ddv2-font-display); font-size: 19px; margin: 0 0 12px; }
.ddv2-bestfor-in ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.ddv2-bestfor-in ul li { display: flex; gap: 10px; font-size: 16.5px; font-weight: 600; color: #D5D8E8; }
.ddv2-bestfor-in ul li::before { content: "✓"; color: var(--ddv2-success); font-weight: 800; }
.ddv2-enroll .ddv2-popular { background: var(--ddv2-primary) !important; color: #fff; }
@media (max-width: 620px) { .ddv2-price-new { font-size: 42px; } .ddv2-price-old { font-size: 28px; } .ddv2-enroll .ddv2-path-title { font-size: 30px !important; } }

/* v6b: enroll card differentiation + strict row alignment */
.ddv2-enroll .ddv2-path { border-width: 2px; }
.ddv2-enroll .ddv2-path.is-featured { background: #211D36; border-color: var(--ddv2-primary); }
.ddv2-enroll .ddv2-path.is-featured .ddv2-btn .wp-block-button__link { background: var(--ddv2-secondary); }
.ddv2-enroll .ddv2-path.is-featured .ddv2-btn .wp-block-button__link:hover { background: #6A5AE8; }
.ddv2-enroll .ddv2-popular.is-closed { background: #2A1215 !important; color: #FF9B9B !important; border: 1px solid rgba(239, 68, 68, .4); }
/* level rows: identical zone heights in both cards */
.ddv2-enroll .ddv2-path-title { min-height: 52px; }
.ddv2-enroll .ddv2-path ul { min-height: 138px; align-content: start; }
.ddv2-enroll .ddv2-price-block { min-height: 152px; }

/* v7: FAQ — tight gaps, Inter, no numbers, 24px answers */
.ddv2-faq-list { gap: 10px; }
.ddv2-faq-list summary::before { content: none; }
.ddv2-faq-list summary { font-family: 'Inter', var(--ddv2-font-body), sans-serif; font-size: 18px; font-weight: 700; padding: 18px 22px; }
.ddv2-faq-list details p { font-family: 'Inter', var(--ddv2-font-body), sans-serif; font-size: 24px; line-height: 1.55; color: var(--ddv2-ink-soft); padding: 0 24px 16px; }
.ddv2-faq-list details p + p { margin-top: 4px !important; }
@media (max-width: 900px) { .ddv2-faq-list details p { font-size: 19px; padding: 0 22px 14px; } }

/* v8: FAQ left column — big heading, WhatsApp CTA */
.ddv2-faq-help { flex-direction: column; align-items: flex-start; gap: 4px; }
.ddv2-faq-help-text h3 { font-size: 40px !important; line-height: 1.15; }
.ddv2-faq-help-text p { font-size: 17px; margin-top: 12px !important; }
.ddv2-btn-wa .wp-block-button__link { background: #25D366 !important; display: inline-flex; align-items: center; gap: 10px; }
.ddv2-btn-wa .wp-block-button__link:hover { background: #1EBE5A !important; }
.ddv2-btn-wa svg { flex-shrink: 0; }

/* v8b: kill theme block-gap between FAQ rows — true 10px spacing */
.ddv2-faq-list > * { margin: 0 !important; }
.ddv2-faq-list details { margin: 0 !important; }

/* v8c: FAQ typography + open-state colors (from DevTools review) */
.ddv2-faq-list summary { font-family: 'Inter', var(--ddv2-font-body), sans-serif; font-size: 22px; font-weight: 600; padding: 18px 22px; }
.ddv2-faq-list details p { font-family: 'Inter', var(--ddv2-font-body), sans-serif; font-size: 21px; line-height: 1.55; color: var(--ddv2-ink-soft); padding: 0 24px 16px; }
.ddv2-faq-list details[open] { background: #f5f4fe; border-color: #cfc8f5; }

/* v9: dark theme retune — navy dark bg, translucent blended cards */
:root { --ddv2-dark: #1b1b34; }
.ddv2-card.is-dark-card { background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .08); }
.ddv2-card.is-dark-card p { color: #B9BDD4; }
/* enroll featured card: stays distinct but blends with the navy */
.ddv2-enroll .ddv2-path.is-featured { background: rgba(124, 108, 242, .16); }

/* ==========================================================================
   v10: Enroll — premium treatment for the top-selling section
   ========================================================================== */
/* soft primary glow behind the cards */
.ddv2-section.is-dark.ddv2-enroll { background: radial-gradient(900px 520px at 72% 18%, rgba(81, 61, 235, .22), transparent 65%), radial-gradient(700px 420px at 15% 85%, rgba(124, 108, 242, .12), transparent 60%), var(--ddv2-dark); }
/* cards: glass gradient, crisper borders */
.ddv2-enroll .ddv2-path { background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .03)); border: 1px solid rgba(255, 255, 255, .14); border-radius: 28px; }
.ddv2-enroll .ddv2-path.is-featured { background: linear-gradient(180deg, rgba(124, 108, 242, .24), rgba(81, 61, 235, .08)); border: 1.5px solid rgba(157, 141, 255, .7); box-shadow: 0 24px 90px rgba(81, 61, 235, .35); }
/* brighter body text */
.ddv2-enroll .ddv2-path ul li { color: #E8EAF6; }
/* price block: the hero — dark inset, glowing numbers, save badge */
.ddv2-enroll .ddv2-price-block { position: relative; background: rgba(10, 10, 26, .45); border: 1px solid rgba(255, 255, 255, .14); }
.ddv2-price-old { color: #9BA0C4; }
.ddv2-price-new { text-shadow: 0 0 40px rgba(157, 141, 255, .45); }
.ddv2-price-note { color: #B9BDD4; }
.ddv2-save-badge { position: absolute; top: 20px; right: 20px; background: var(--ddv2-success); color: #06210F; font-weight: 800; font-size: 13.5px; letter-spacing: .06em; padding: 7px 14px; border-radius: 999px; }
@media (max-width: 640px) { .ddv2-save-badge { position: static; display: inline-block; margin-bottom: 12px; } }
/* CTAs: gradient primary on recorded, white-on-purple for featured */
.ddv2-enroll .ddv2-path .ddv2-btn .wp-block-button__link { background: linear-gradient(135deg, #6A57F5, #513DEB); box-shadow: 0 12px 34px rgba(81, 61, 235, .45); }
.ddv2-enroll .ddv2-path .ddv2-btn .wp-block-button__link:hover { background: linear-gradient(135deg, #5A46E8, #4330C9); }
.ddv2-enroll .ddv2-path.is-featured .ddv2-btn .wp-block-button__link { background: #fff !important; color: var(--ddv2-primary) !important; box-shadow: 0 12px 34px rgba(0, 0, 0, .35); }
.ddv2-enroll .ddv2-path.is-featured .ddv2-btn .wp-block-button__link:hover { background: #EEEBFF !important; }
/* Best For: readable label treatment */
.ddv2-bestfor-in { border-top: 1px solid rgba(255, 255, 255, .16); }
.ddv2-bestfor-in h4 { color: #9D8DFF; font-family: var(--ddv2-font-body); font-size: 14px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.ddv2-bestfor-in ul li { color: #E8EAF6; }
/* Registration Closed pill: stronger contrast on navy */
.ddv2-enroll .ddv2-popular.is-closed { background: #451518 !important; color: #FFB4B4 !important; border-color: rgba(239, 68, 68, .55); }

/* v10b: enroll heading gradient + spacing after list removal */
.ddv2-grad-text { background: linear-gradient(90deg, #9D8DFF, #3B82F6); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.ddv2-enroll .ddv2-path .ddv2-media { margin-bottom: 6px; }
.ddv2-enroll .ddv2-price-block { margin-top: 18px; min-height: 0; }

/* AI tile mark — was the last inline style in the patterns */
.ddv2-feat-icon .ddv2-ai-mark { color: #fff; font-weight: 800; font-size: 17px; font-family: var(--ddv2-font-body); }
.ddv2-nav.is-navbar { padding: 0 24px; }

/* ==========================================================================
   v11: Enroll — primary-blue section, two separate cards (original gap
   restored), recolored white Recorded / dark Live. Colors only.
   ========================================================================== */
.ddv2-section.is-dark.ddv2-enroll {
	background: var(--ddv2-primary) !important;
	background-image:
		linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px) !important;
	background-size: 42px 42px !important;
}

.ddv2-enroll .ddv2-paths { gap: 32px; }
.ddv2-enroll .ddv2-path,
.ddv2-enroll .ddv2-path.is-featured { border-radius: 28px !important; }

/* Recorded Course = white card */
.ddv2-enroll .ddv2-path:first-child { background: #fff !important; border: none !important; box-shadow: 0 24px 60px rgba(0,0,0,.25) !important; }
.ddv2-enroll .ddv2-path:first-child .ddv2-path-title { color: #14122B !important; }
.ddv2-enroll .ddv2-path:first-child .ddv2-media img { border: 1px solid #ECEAFB; }
.ddv2-enroll .ddv2-path:first-child .ddv2-price-block { background: #F7F6FE !important; border: 1px solid #ECEAFB !important; }
.ddv2-enroll .ddv2-path:first-child .ddv2-price-old { color: #9CA3AF !important; }
.ddv2-enroll .ddv2-path:first-child .ddv2-price-new { color: #4935DF !important; text-shadow: none !important; }
.ddv2-enroll .ddv2-path:first-child .ddv2-price-note { color: #6B7280 !important; }
.ddv2-enroll .ddv2-path:first-child ul li,
.ddv2-enroll .ddv2-path:first-child .ddv2-bestfor-in ul li { color: #374151 !important; }
.ddv2-enroll .ddv2-path:first-child .ddv2-bestfor-in { border-top: 1px solid #ECEAFB !important; }
.ddv2-enroll .ddv2-path:first-child .ddv2-bestfor-in h4 { color: #4935DF !important; }
.ddv2-enroll .ddv2-path:first-child .ddv2-btn .wp-block-button__link { background: #513DEB !important; box-shadow: none !important; }
.ddv2-enroll .ddv2-path:first-child .ddv2-btn .wp-block-button__link:hover { background: #4935DF !important; }

/* Live Online Classes = dark card (near-black, matching course-page pricing) */
.ddv2-enroll .ddv2-path.is-featured { background: #121212 !important; box-shadow: 0 24px 60px rgba(0,0,0,.35) !important; }

/* ==========================================================================
   Mobile — smaller border-radius on remaining hardcoded (non-token) boxes
   ========================================================================== */
@media (max-width: 640px) {
	.ddv2-hero-feats .ddv2-feat,
	.ddv2-hero-featbar,
	.ddv2-jcard,
	.ddv2-faq-side .ddv2-faq-illustration img,
	.ddv2-price-block,
	.ddv2-enroll .ddv2-path,
	.ddv2-enroll .ddv2-path.is-featured { border-radius: 14px !important; }
	.ddv2-btn-wa .wp-block-button__link { justify-content: center; }
}
