/* Reset and base styles for the template */
html {
    scroll-behavior: auto;
}

.mc-container {
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"!important;
}
.mc-container button {
    font-family: inherit;
}
button{
    text-transform: capitalize;
}
.mc-header {
    background: #ffffff;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eaeaea;
    position: sticky;
    top: 0;
    z-index: 99;
}
.mc-logo {
    display: flex;
    flex-direction: column;
}
.mc-logo span {
    color: #dba236;
    font-weight: 700;
    font-size: 16px;
    margin-top: -5px;
}
.mc-logo-brand {
    font-size: 24px;
    font-weight: 800;
    color: #2563eb;
    line-height: 1;
}
.mc-tabs {
    display: flex;
    background: #f8f9fc;
    border-radius: 8px;
    padding: 5px;
    border: 1px solid #eaeaea;
}
.mc-tab {
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    color: #4a5568;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    background: transparent;
}
.mc-tab.active {
    background: #1f5fbf;
    color: #ffffff;
    box-shadow: 0 2px 4px rgba(29, 78, 216, 0.2);
}
.mc-actions {
    display: flex;
    gap: 15px;
}
.mc-btn-outline {
    padding: 10px 20px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    color: #1e293b;
    background: #ffffff;
    cursor: pointer;
    transition: background 0.2s;
}
.mc-btn-outline:hover {
    background: #f1f5f9;
}
.mc-btn-primary {
    padding: 10px 20px;
    background: #d49a2a;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    color: #111827;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(212, 154, 42, 0.2);
    transition: opacity 0.2s;
}
.mc-btn-primary:hover {
    opacity: 0.9;
}

/* Content Area */
.mc-content-wrapper {
    background: #0f2a44; /* Deep Navy from screenshot */
    min-height: calc(100vh - 80px); /* adjust based on header height */
    color: #ffffff;
}
.mc-pane {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}
.mc-pane.active {
    display: block;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Career Unconference Layout */
.grid-layout {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 60px;
    max-width: 1300px;
    margin: 0 auto;
}

.hero {
    padding: 40px;
    align-items: center;
}

.mc-badge {
    display: inline-block;
    padding: 8px 20px;
    background: #253a50;
    border-radius: 50px;
    border: 1px solid #3c526a;
    color: #d49a2a;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 30px;
}
.mc-title {
    font-size: 64px;
    line-height: 1.05;
    font-weight: 800;
    margin-bottom: 30px;
    letter-spacing: -1px;
    color: #fff;
}
.mc-desc {
    font-size: 18px;
    line-height: 1.6;
    color: #cbd5e1;
    margin-bottom: 25px;
    max-width: 95%;
}
.mc-desc strong {
    color: #ffffff;
}
.mc-meta-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 35px 0;
}
.mc-meta-pill {
    padding: 10px 24px;
    background: #253a50;
    border: 1px solid #3c526a;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: #f1f5f9;
}
.mc-cta-group {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}
.mc-cta-primary {
    padding: 16px 28px;
    background: #d49a2a;
    color: #111827;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    transition: transform 0.2s;
    border: none;
    cursor: pointer;
}
.mc-cta-primary:hover {
    transform: translateY(-2px);
}
.mc-cta-secondary {
    padding: 16px 28px;
    background: #2a3d54;
    color: #ffffff;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    transition: background 0.2s;
    border: none;
    cursor: pointer;
}
.mc-cta-secondary:hover {
    background: #344863;
}

/* Stats Section */
.mc-stats-group {
    display: flex;
    gap: 20px;
    margin-top: 50px;
}
.mc-stat-box {
    background: #253a50; /* Match the pill background or slightly darker */
    border: 1px solid #3c526a;
    border-radius: 12px;
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.mc-stat-label {
    font-size: 11px;
    font-weight: 700;
    color: #cbd5e1;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.mc-stat-value {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 4px;
}
.mc-stat-value.text-gold {
    color: #d49a2a;
}
.mc-stat-desc {
    font-size: 13px;
    color: #cbd5e1;
}

/* Card Section */
.mc-card-wrapper {
    background: #2b3d50; 
    padding: 15px;
    border-radius: 24px;
    border: 1px solid #3c526a;
}
.mc-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px;
    color: #1e293b;
}
.mc-card-subtitle {
    font-size: 12px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    display: block;
}
.mc-card-title {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 30px;
    color: #0f172a;
    letter-spacing: -0.5px;
}
.mc-card-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.mc-card-item {
    padding: 20px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.6;
    color: #475569;
}
.mc-card-item-highlight {
    background: #fef9c3;
    border-color: #fde047;
    color: #334155;
}
.mc-card-item-highlight strong {
    color: #0f172a;
}
.mc-card-action {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.mc-card-btn-primary {
    width: 100%;
    padding: 18px;
    background: #d49a2a;
    color: #111827;
    font-weight: 700;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.2s;
}
.mc-card-btn-primary:hover {
    background: #ca8a04;
}
.mc-card-btn-outline {
    padding: 16px;
    background: transparent;
    color: #1e293b;
    font-weight: 600;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.2s;
}
.mc-card-btn-outline:hover {
    background: #f1f5f9;
}

button.mc-tab:hover {
    background: #fff;
    color: #4a5568;
}

button.mc-tab.active:hover {
    background: #1f5fbf;
    color: #fff;
}

.mc-cta-primary:hover {
    color: #fff;
}

/* Relevance Section */
.mc-relevance-section {
    background: #ffffff;
    padding: 40px;
}
.mc-relevance-container {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
}
.mc-relevance-badge {
    display: inline-block;
    color: #94a3b8;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 25px;
}
.mc-target-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    border-bottom: 1px solid #00000012;
    padding-bottom: 40px;
    margin-bottom: 40px;
}
.mc-target-badge {
    padding: 12px 24px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #4a5568;
    background: #f8fafc;
}
.mc-section-subtitle {
    display: block;
    color: #3b82f6;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.mc-section-title {
    font-size: 40px;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 30px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
.mc-section-desc {
    font-size: 18px;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Value Cards */
.mc-value-cards {
    display: flex;
    gap: 30px;
    text-align: left;
}
.mc-value-card {
    flex: 1;
    padding: 25px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
}
.mc-value-card.highlight {
    background: #1e60c4;
    border-color: #1e60c4;
}
.mc-value-card-subtitle {
    font-size: 12px;
    font-weight: 700;
    color: #3b82f6;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}
.mc-value-card.highlight .mc-value-card-subtitle {
    color: #fcd34d;
}
.mc-value-card-title {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.3;
    margin: 10px 0;
}
.mc-value-card.highlight .mc-value-card-title {
    color: #ffffff;
}
.mc-value-card-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}
.mc-value-card.highlight .mc-value-card-desc {
    color: #e2e8f0;
}
/* Speaker Experience Section */
.mc-speaker-section {
    background: #f8fafc;
    padding: 80px 40px;
}
.mc-speaker-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.mc-speaker-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    text-align: left;
}
.mc-speaker-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 30px;
}
.mc-speaker-photo {
    background: #f1f0e8;
    height: 200px;
    border-radius: 12px;
    margin-bottom: 25px;
}
.mc-speaker-title {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
    line-height: 1.2;
}
.mc-speaker-role {
    display: block;
    font-size: 13px;
    color: #1e60c4;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 20px;
}
.mc-speaker-company {
    color: #64748b;
    font-weight: 500;
}
.mc-speaker-desc {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}
.mc-speaker-cta {
    margin-top: 50px;
    text-align: center;
}
.mc-cta-primary-large {
    padding: 18px 36px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 12px;
}

/* Agenda / Alur Acara Section */
.mc-agenda-section {
    background: #ffffff;
    padding: 80px 40px;
}
.mc-agenda-container {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
}
.mc-agenda-list {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}
.mc-agenda-item {
    display: flex;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 30px 40px;
    align-items: center;
}
.mc-agenda-time-col {
    flex: 0 0 200px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.mc-agenda-badge {
    background: #eff6ff;
    color: #1d4ed8;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    border-radius: 20px;
    display: inline-block;
    width: max-content;
}
.mc-agenda-time {
    font-size: 20px;
    font-weight: 900;
    color: #0f172a;
}
.mc-agenda-content-col {
    flex: 1;
    padding-left: 30px;
    border-left: 1px solid #e2e8f0;
}
.mc-agenda-title {
    font-size: 24px;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.3;
    margin: 0;
}
.mc-agenda-desc {
    font-size: 16px;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

/* Testimonials Section */
.mc-testimonial-section {
    background: #0f2a44; /* Dark background from screenshot */
    padding: 80px 40px;
    color: #ffffff;
}
.mc-testimonial-container {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
}
.mc-testimonial-subtitle {
    display: block;
    color: #fcd34d; /* Yellow/Gold subtitle */
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.mc-testimonial-title {
    font-size: 36px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 25px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.mc-testimonial-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #cbd5e1; /* Light gray text */
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.mc-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.mc-testimonial-card {
    background: rgba(255, 255, 255, 0.05); /* Slight bright overlay */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: left;
    position: relative;
}
.mc-quote-icon {
    font-family: Georgia, serif;
    font-size: 60px;
    font-weight: 900;
    color: #fcd34d;
    line-height: 1;
    margin-bottom: 20px;
    opacity: 0.9;
}
.mc-testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: #e2e8f0;
    margin: 0;
}

/* Journey Section */
.mc-journey-section {
    background: #ffffff;
    padding: 80px 40px;
    text-align: center;
}
.mc-journey-container {
    max-width: 1300px;
    margin: 0 auto;
}
.mc-journey-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    margin-bottom: 40px;
}
.mc-journey-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
}
.mc-journey-card.highlight-gold {
    background: #fffbeb;
    border-color: #fde68a;
}
.mc-journey-step {
    display: block;
    font-size: 12px;
    font-weight: 800;
    color: #3b82f6;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.mc-journey-card.highlight-gold .mc-journey-step {
    color: #d97706;
}
.mc-journey-title {
    font-size: 24px;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.3;
    margin-bottom: 15px;
}
.mc-journey-desc {
    font-size: 15px;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}
.mc-journey-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}
.mc-btn-outline {
    background: transparent;
    color: #475569;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 12px;
    border: 1px solid #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
}
.mc-btn-outline:hover {
    background: #f1f5f9;
    color: #0f172a;
}
.mc-btn-outline-gold {
    background: transparent;
    color: #b45309;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 12px;
    border: 1px solid #fcd34d;
    cursor: pointer;
    transition: all 0.3s ease;
}
.mc-btn-outline-gold:hover {
    background: #fffbeb;
}

/* Top Up Section */
.mc-topup-section {
    background: #f8fafc;
    padding: 80px 40px;
}
.mc-topup-container {
    max-width: 1300px;
    margin: 0 auto;
}
.mc-topup-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 50px;
    text-align: left;
}
.mc-topup-subtitle {
    display: block;
    font-size: 12px;
    font-weight: 800;
    color: #3b82f6;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.mc-topup-title {
    font-size: 28px;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.3;
    margin-bottom: 20px;
}
.mc-topup-desc {
    font-size: 16px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 30px;
}
.mc-topup-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.mc-topup-badge {
    background: #ffffff;
    color: #475569;
    font-size: 13.5px;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
}

/* Conference Pass Section */
.mc-pass-section {
    background: #0f2a44; /* Match dark hero background */
    padding: 80px 40px;
    color: #ffffff;
    text-align: center;
}
.mc-pass-container {
    max-width: 1200px;
    margin: 0 auto;
}
.mc-pass-subtitle {
    display: block;
    color: #fcd34d;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.mc-pass-title {
    font-size: 36px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 25px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.mc-pass-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #cbd5e1;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.mc-pass-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center;
}
.mc-pass-card {
    border-radius: 24px;
    text-align: left;
    display: flex;
    flex-direction: column;
}
.mc-pass-card.dark-card {
    background: #253a50;
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.mc-pass-card.highlight-card {
    background: #ffffff;
    color: #0f172a;
    border: 3px solid #fcd34d;
    position: relative;
    padding: 0;
}
.mc-pass-badge {
    background: #fffbeb;
    color: #d97706;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 10px 0;
    text-align: center;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}
.mc-pass-inner {
    padding: 40px 30px;
}
.mc-pass-tier {
    font-size: 13px;
    font-weight: 700;
    color: #cbd5e1;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    display: block;
    text-transform: uppercase;
}
.mc-pass-name {
    font-size: 24px;
    font-weight: 900;
    margin: 0;
}
.mc-pass-card.dark-card .mc-pass-name {
    color: #ffffff;
}
.mc-pass-card.highlight-card .mc-pass-name {
    color: #0f172a;
}
.mc-pass-price {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 20px;
}
.mc-pass-card.dark-card .mc-pass-price {
    color: #ffffff;
}
.mc-pass-price.highlight-price {
    color: #1d4ed8;
    font-size: 48px;
}
.mc-pass-card-desc {
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
}
.mc-pass-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}
.mc-pass-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: #475569;
    margin-bottom: 15px;
    line-height: 1.4;
}
.mc-pass-features li svg {
    flex-shrink: 0;
    margin-top: 2px;
}
.mc-btn-white {
    background: #ffffff;
    color: #0f172a;
    padding: 16px;
    font-size: 16px;
    font-weight: 800;
    border-radius: 12px;
    border: none;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
}
.mc-btn-white:hover {
    background: #f1f5f9;
}
.mc-btn-gold {
    background: #d49a2a;
    color: #0f172a;
    padding: 18px;
    font-size: 16px;
    font-weight: 800;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}
.mc-btn-gold:hover {
    background: #b8860b;
}

/* Action Trigger (Cashback) Section */
.mc-action-section {
    background: #fffbf0;
    padding: 80px 40px;
}
.mc-action-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.mc-action-subtitle {
    display: block;
    color: #d49a2a;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.mc-action-title {
    font-size: 36px;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 25px;
}
.mc-action-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 20px;
}
.mc-action-desc strong {
    color: #0f172a;
    font-weight: 800;
}
.mc-action-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-direction: row;
    flex-wrap: wrap;
}
.mc-btn-action-primary {
    box-shadow: 0 4px 14px rgba(212, 154, 42, 0.4);
}
.mc-btn-white-outline {
    background: #ffffff;
    color: #0f172a;
    border: 1px solid #cbd5e1;
    padding: 16px 24px;
    font-size: 15px;
    font-weight: 800;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.mc-btn-white-outline:hover {
    background: #f1f5f9;
}
.mc-action-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}
.mc-action-card-title {
    font-size: 14px;
    font-weight: 800;
    color: #94a3b8;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    margin-top: 0;
}
.mc-action-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.mc-action-steps li {
    background: #fffcf2;
    border: 1px solid #fde68a;
    padding: 18px 24px;
    border-radius: 12px;
    font-size: 15px;
    color: #334155;
    font-weight: 500;
}

/* Webinar Series Pane Styles */
#webinar {
    background: #1e3a8a; /* Different shade of blue for webinar */
}
.mc-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}
.mc-hero-tag {
    color: #cbd5e1;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    background: #ffffff24;
}
.mc-webinar-card-wrapper {
    background: rgba(255, 255, 255, 0.1);
    padding: 24px;
    border-radius: 30px;
}
.mc-webinar-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    color: #0f172a;
}
.mc-webinar-card-title {
    font-size: 13px;
    font-weight: 800;
    color: #94a3b8;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    margin-top: 0;
}
.mc-webinar-steps {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}
.mc-webinar-step {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    font-size: 14px;
    color: #475569;
    line-height: 1.5;
}
.mc-webinar-step strong {
    font-weight: 800;
    color: #0f172a;
}
.mc-webinar-step.highlight {
    background: #fffcf2;
    border-color: #fde68a;
}
.mc-webinar-card-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.mc-btn-blue {
    background: #2563eb;
    color: #ffffff;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.mc-btn-blue:hover {
    background: #1d4ed8;
}
.mc-btn-white-outline-blue {
    background: #ffffff;
    color: #0f172a;
    border: 1px solid #e2e8f0;
    padding: 16px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.mc-btn-white-outline-blue:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

/* Final Call Section */
.mc-final-section {
    background: #0f2a44; /* Dark background */
    padding: 100px 40px;
    text-align: center;
    color: #ffffff;
}
.mc-final-container {
    max-width: 900px;
    margin: 0 auto;
}
.mc-final-subtitle {
    display: block;
    color: #d49a2a;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.mc-final-title {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #fff;
}
.mc-final-desc {
    font-size: 17px;
    line-height: 1.6;
    color: #cbd5e1;
    margin-bottom: 20px;
}
.mc-final-desc strong {
    color: #ffffff;
    font-weight: 800;
}
.mc-final-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
    align-items: center;
}
.mc-btn-final {
    padding: 18px 32px;
    font-size: 16px;
    border-radius: 12px;
}
.mc-btn-outline-light {
    background: transparent;
    color: #ffffff;
    border: 1px solid #475569;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}
.mc-btn-outline-light:hover {
    background: rgba(255,255,255,0.05);
    border-color: #94a3b8;
}

span.mc-badge.badge-webinar {
    background: #ffffff24;
    color: #f2c94c;
}

/* Mengapa Webinar Series Section */
.mc-why-webinar-section {
    background: #ffffff;
    padding: 100px 40px;
    color: #0f172a;
    text-align: center;
}
.mc-why-webinar-container {
    max-width: 1200px;
    margin: 0 auto;
}
.mc-why-webinar-header {
    max-width: 800px;
    margin: 0 auto 60px;
}
.mc-why-webinar-subtitle {
    display: block;
    color: #2563eb; /* Blue primary */
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.mc-why-webinar-title {
    font-size: 36px;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #0f172a;
}
.mc-why-webinar-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #475569;
}
.mc-why-webinar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.mc-why-webinar-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 30px;
    text-align: left;
    transition: all 0.3s ease;
}
.mc-why-webinar-card:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border-color: #cbd5e1;
}
.mc-why-webinar-card-label {
    display: block;
    color: #2563eb;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.mc-why-webinar-card-text {
    font-size: 15px;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1024px) {
    .grid-layout {
        grid-template-columns: 1fr;
    }
    .mc-stats-group {
        flex-direction: row;
        gap: 12px;
        text-align: center;
        justify-content: center;
    }
    .mc-stat-box {
        padding: 15px;
    }
    .mc-header {
        flex-direction: column;
        gap: 20px;
    }
    .mc-actions {
        width: 100%;
        justify-content: center;
    }
    .mc-tabs {
        width: 100%;
        overflow-x: auto;
    }
    .mc-tab {
        padding: 6px;
    }
    .mc-title {
        font-size: 48px;
    }
    .mc-header{
        padding: 20px;
    }
    .hero,.mc-relevance-section,.mc-agenda-section,.mc-testimonial-section,.mc-journey-section,.mc-topup-section,.mc-pass-section,.mc-action-section,.mc-final-section,.mc-why-webinar-section {
        padding: 20px;
    }
    .mc-card {
        padding: 15px;
    }
    .mc-value-cards {
        flex-direction: column;
    }
    .mc-section-title {
        font-size: 32px;
    }
    .mc-speaker-grid {
        grid-template-columns: 1fr;
    }
    .mc-agenda-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 25px;
    }
    .mc-agenda-time-col {
        flex: none;
        width: 100%;
        margin-bottom: 20px;
    }
    .mc-agenda-content-col {
        padding-left: 0;
        border-left: none;
    }
    .mc-testimonial-grid {
        grid-template-columns: 1fr;
    }
    .mc-testimonial-title {
        font-size: 28px;
    }
    .mc-journey-grid {
        grid-template-columns: 1fr;
    }
    .mc-journey-actions {
        flex-direction: column;
    }
    .mc-topup-card {
        padding: 30px;
    }
    .mc-pass-grid {
        grid-template-columns: 1fr;
    }
    .mc-pass-title {
        font-size: 28px;
    }
    .mc-action-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .mc-action-card {
        padding: 30px;
    }
    .mc-action-title {
        font-size: 28px;
    }
    .mc-final-title {
        font-size: 32px;
    }
    .mc-final-actions {
        flex-direction: column;
    }
    .mc-webinar-card-wrapper {
        padding: 16px;
    }
    .mc-webinar-card {
        padding: 24px;
    }
    .mc-why-webinar-grid {
        grid-template-columns: 1fr;
    }
    .mc-why-webinar-title {
        font-size: 28px;
    }

    /* Webinar Options Responsive */
    .mc-webinar-options-grid {
        grid-template-columns: 1fr!important;
    }
    .mc-webinar-options-section {
        padding: 40px 20px;
    }
    .mc-webinar-options-title {
        font-size: 28px;
    }
    .mc-webinar-option-card.highlight-card {
        transform: scale(1);
    }
    .mc-webinar-option-card.highlight-card:hover {
        transform: translateY(-5px);
    }

    /* Rencana Jadwal + Others Responsive */
    .mc-topup-card {
        padding: 30px 20px;
    }
    .mc-topup-title {
        font-size: 28px;
    }
    .mc-agenda-section > div:last-child {
        grid-template-columns: 1fr 1fr !important;
    }
    .mc-final-container {
        padding: 40px 20px !important;
    }
    .mc-final-actions {
        flex-direction: column;
    }
} /* <--- Added this to close the media query properly instead of engulfing the new styles */

/* Webinar Options Section */
.mc-webinar-options-section {
    padding: 60px 40px;
    background: #f8fafc;
    text-align: center;
}
.mc-webinar-options-container {
    max-width: 1100px;
    margin: 0 auto;
}
.mc-webinar-options-subtitle {
    display: inline-block;
    color: #2563eb;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.mc-webinar-options-title {
    font-size: 38px;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 15px;
}
.mc-webinar-options-desc {
    font-size: 16px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 50px;
}
.mc-webinar-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}
.mc-webinar-option-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: left;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
.mc-webinar-option-card.highlight-card {
    border: 2px solid #fbbf24;
    position: relative;
    padding: 0;
    transform: scale(1.03);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}
.mc-webinar-option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}
.mc-webinar-option-card.highlight-card:hover {
    transform: scale(1.03) translateY(-5px);
}
.mc-webinar-option-badge {
    position: absolute;
    top: -15px;
    left: 40px;
    background: #fef3c7;
    color: #d97706;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid #fde68a;
}
.mc-webinar-option-inner {
    padding: 50px 40px 40px;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.mc-webinar-option-label {
    display: block;
    color: #3b82f6;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.mc-webinar-option-price {
    font-size: 42px;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 15px;
}
.mc-webinar-option-name {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 5px;
}
.mc-webinar-option-title-alt {
    font-size: 32px;
    font-weight: 900;
    color: #2563eb;
    margin-bottom: 15px;
}
.mc-webinar-option-desc {
    color: #475569;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
}
.mc-webinar-option-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex-grow: 1;
}
.mc-webinar-option-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #475569;
    line-height: 1.5;
}
.mc-webinar-option-features li svg {
    flex-shrink: 0;
    margin-top: 2px;
}
.mc-btn-block {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}
.mc-btn-blue {
    background: #2563eb;
    color: #fff;
}
.mc-btn-blue:hover {
    background: #1d4ed8;
}
.mc-btn-dark {
    background: #0f172a;
    color: #fff;
}
.mc-btn-dark:hover {
    background: #000;
}
    .mc-btn-gold {
        background: #d9a016; /* matching earlier gold */
        color: #fff;
    }
    .mc-btn-gold:hover {
        background: #b58512;
    }

/* Top Up Section CSS */
.mc-topup-section {
    background: #f8fafc; /* match previous sections or leave default */
    padding: 80px 40px;
}
.mc-topup-container {
    max-width: 1000px;
    margin: 0 auto;
}
.mc-topup-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 30px;
    text-align: left;
}
.mc-topup-subtitle {
    display: block;
    color: #2563eb;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.mc-topup-title {
    font-size: 22px;
    font-weight: 900;
    line-height: 1.3;
    color: #0f172a;
    margin-bottom: 20px;
}
.mc-topup-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #475569;
    margin: 0 0 20px;
    margin-inline: auto;
}
.mc-topup-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.mc-topup-actions .mc-btn-outline {
    background: #ffffff;
    padding: 14px 24px;
    font-weight: 600;
    border-radius: 50px;
    color: #334155;
    border-color: #cbd5e1;
}
.mc-topup-actions .mc-btn-outline:hover {
    background: #f1f5f9;
}

/* --- Extracted from tab-webinar-series.php --- */
.mc-mb-30 {
    margin-bottom: 30px;
}
.mc-btn-schedule-webinar {
    padding: 16px 28px;
    border-radius: 12px;
    font-weight: 700;
    background: #ffffff24;
}
.mc-webinar-agenda-header {
    text-align: center;
    margin-bottom: 40px;
}
.mc-webinar-agenda-subtitle {
    display: block;
    color: #3b82f6;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.mc-webinar-agenda-title {
    font-size: 38px;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 20px;
}
.mc-webinar-agenda-desc {
    font-size: 16px;
    color: #475569;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}
.mc-webinar-dates-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}
.mc-webinar-date-item {
    padding: 20px;
    text-align: center;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    color: #334155;
}
.mc-webinar-next-container {
    background: #143e83;
    border-radius: 20px;
    padding: 40px;
    text-align: left;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    margin: 25px auto;
}
.mc-webinar-final-subtitle {
    display: block;
    color: #eab308;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.mc-webinar-final-title {
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.3;
}
.mc-webinar-final-desc {
    font-size: 16px;
    color: #e2e8f0;
    max-width: 800px;
    margin-bottom: 40px;
    line-height: 1.6;
}
.mc-webinar-final-actions-left {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.mc-btn-webinar-primary {
    background: #d9a016;
    color: #000;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s;
}
.mc-btn-webinar-primary:hover {
    opacity: 0.9;
}
.mc-btn-webinar-secondary {
    background: rgba(255,255,255,0.1);
    color: #fff;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.3);
    cursor: pointer;
    transition: background 0.2s;
}
.mc-btn-webinar-secondary:hover {
    background: rgba(255,255,255,0.2);
}
.mc-faq-section-webinar {
    background: #f7fbff;
}
.mc-faq-container-webinar {
    padding: 80px 20px;
    max-width: 900px;
    margin: 0 auto;
}
.mc-faq-header-webinar {
    text-align: center;
    margin-bottom: 40px;
}
.mc-faq-subtitle-webinar {
    display: block;
    color: #3b82f6;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.mc-faq-title-webinar {
    font-size: 32px;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 20px;
}
.mc-faq-desc-webinar {
    font-size: 16px;
    color: #64748b;
}
.mc-faq-list-webinar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.mc-faq-item-webinar {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 25px 30px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}
.mc-faq-question-webinar {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    margin: 10px 0;
}
.mc-faq-answer-webinar {
    font-size: 15px;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 1024px) {
    .mc-webinar-dates-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .mc-webinar-dates-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Intimate Dialogue Tab Styles --- */
#intimate {
    background: #fdfaf3; /* Light cream/yellowish background based on image */
}
.intimate-hero {
    padding-top: 60px;
    padding-bottom: 60px;
}
.intimate-badge {
    background: #ffffff;
    color: #d49a2a; /* Gold text */
    border: 1px solid #fde68a; /* Light gold border */
}
.intimate-title {
    color: #0f172a; /* Dark blue/black */
    font-size: 64px;
    margin-bottom: 25px;
}
.intimate-desc {
    color: #475569; /* Darker gray for readability on light bg */
}
.intimate-desc strong {
    color: #0f172a; /* Make bold text black */
}
.intimate-tags {
    margin-bottom: 40px;
}
.intimate-tag {
    background: #ffffff;
    color: #475569;
    border: 1px solid #e2e8f0;
}
.intimate-btn-primary {
    background: #d49a2a;
    color: #111827;
    box-shadow: 0 4px 14px rgba(212, 154, 42, 0.4);
}
.intimate-btn-primary:hover {
    background: #ca8a04;
    color: #111827;
}
.intimate-btn-secondary {
    background: #ffffff;
    color: #0f172a;
    border: 1px solid #e2e8f0;
    padding: 16px 28px;
    border-radius: 12px;
    font-weight: 700;
}
.intimate-btn-secondary:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

/* Card Styles */
.intimate-card-wrapper {
    background: transparent;
    padding: 0;
}
.intimate-card {
    background: #ffffff;
    box-shadow: 0 20px 50px rgba(0,0,0,0.06); /* Pronounced soft shadow */
    border: 1px solid #e2e8f0;
    padding: 35px;
}
.intimate-card-title {
    color: #94a3b8;
}
.intimate-step-yellow {
    background: #fffcf2;
    border-color: #fde68a;
    color: #475569;
}
.intimate-step-blue {
    background: #f0f7ff; /* Very Light blue */
    border-color: #dbeafe; /* Light blue border */
    color: #475569;
}
.intimate-card-actions {
    flex-direction: row; /* Make them side-by-side */
    flex-wrap: wrap;
}
.intimate-btn-action-primary {
    background: #d49a2a;
    color: #111827;
    border: none;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    text-align: center;
}
.intimate-btn-action-primary:hover {
    background: #ca8a04;
}
.intimate-btn-action-secondary {
    background: #ffffff;
    color: #0f172a;
    border: 1px solid #e2e8f0;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    text-align: center;
}
.intimate-btn-action-secondary:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

/* --- Mengapa Intimate Section --- */
.mc-why-intimate-section {
    background: #ffffff;
    padding: 80px 40px;
    color: #0f172a;
    text-align: center;
}
.mc-why-intimate-container {
    max-width: 1200px;
    margin: 0 auto;
}
.mc-why-intimate-header {
    max-width: 800px;
    margin: 0 auto 60px;
}
.mc-why-intimate-subtitle {
    display: block;
    color: #2563eb;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.mc-why-intimate-title {
    font-size: 34px;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #0f172a;
}
.mc-why-intimate-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #475569;
}
.mc-why-intimate-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.mc-why-intimate-card {
    background: #ffffff;
    border: 1px solid #fde68a;
    border-radius: 20px;
    padding: 30px;
    text-align: left;
    transition: all 0.3s ease;
}
.mc-why-intimate-card:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border-color: #d49a2a;
}
.mc-why-intimate-card-label {
    display: block;
    color: #d9a016; /* Gold/brown text */
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.mc-why-intimate-card-text {
    font-size: 15px;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

.mc-intimate-topup-section {
    background: #fff;
}

.mc-intimate-topup-section .mc-topup-card {
    background: #FFF8E6;
}

.mc-intimate-dates-grid .mc-webinar-date-item {
    background: #fff8e6;
}

@media (max-width: 1024px) {
    .mc-why-intimate-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .mc-why-intimate-grid {
        grid-template-columns: 1fr;
    }
    .mc-why-intimate-section {
        padding: 40px 20px;
    }
    .mc-why-intimate-title {
        font-size: 28px;
    }
}

/* --- Intimate Options Section --- */
.intimate-options-section {
    padding: 80px 40px;
    background: #fdfaf3; /* light cream */
    text-align: center;
}
.intimate-options-container {
    max-width: 1100px;
    margin: 0 auto;
}
.intimate-options-subtitle {
    display: inline-block;
    color: #2563eb;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.intimate-options-title {
    font-size: 38px;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 25px;
}
.intimate-options-desc {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 50px;
}
.intimate-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}
.intimate-option-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: left;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
.intimate-option-card.highlight-card {
    border: 2px solid #fde68a; /* Yellow/Gold border */
    position: relative;
    transform: scale(1.03);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    padding: 40px 30px;
}
.intimate-option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}
.intimate-option-card.highlight-card:hover {
    transform: scale(1.03) translateY(-5px);
}
.intimate-option-badge {
    background: #fffcf2;
    color: #d9a016;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 20px;
    border: 1px solid #fde68a;
}
.intimate-option-label {
    display: block;
    color: #d9a016; /* Gold/brown text */
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.intimate-option-price {
    font-size: 38px;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 15px;
}
.intimate-option-name {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 5px;
}
.intimate-option-title-alt {
    font-size: 28px;
    font-weight: 900;
    color: #d9a016; /* Gold color */
    margin-bottom: 25px;
}
.intimate-option-desc {
    color: #475569;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
}
.intimate-option-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex-grow: 1;
}
.intimate-option-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #475569;
    line-height: 1.5;
}
.intimate-option-features li svg {
    flex-shrink: 0;
    margin-top: 2px;
}
.intimate-btn-gold {
    background: #d49a2a;
    color: #111827;
    padding: 16px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    width: 100%;
    text-align: center;
}
.intimate-btn-gold:hover {
    background: #ca8a04;
}
.intimate-btn-dark {
    background: #0f172a;
    color: #ffffff;
    padding: 16px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    width: 100%;
    text-align: center;
}
.intimate-btn-dark:hover {
    background: #000;
}
@media (max-width: 1024px) {
    .intimate-options-grid {
        grid-template-columns: 1fr;
    }
    .intimate-options-section {
        padding: 40px 20px;
    }
    .intimate-options-title {
        font-size: 28px;
    }
    .intimate-option-card.highlight-card {
        transform: scale(1);
    }
    .intimate-option-card.highlight-card:hover {
        transform: translateY(-5px);
    }
}
