/*
 * BCNLIP Pages CSS
 * Global utility classes for internal pages
 */

/* ====================================================
   LAYOUT
   ==================================================== */
.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.page-hero {
    background: #1c1917;
    padding: 3rem 0 2.5rem;
    color: white;
}

.page-hero .breadcrumb {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #78716c;
    margin-bottom: 1rem;
}

.page-hero .breadcrumb a {
    color: #78716c;
    text-decoration: none;
}

.page-hero h1 {
    font-family: 'Courier New', Courier, monospace;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 1rem;
    color: white;
}

.page-hero h1 .accent {
    color: #ebb524;
}

.page-hero p {
    font-size: 1rem;
    color: #d6d3d1;
    max-width: 600px;
    margin: 0;
    line-height: 1.6;
}

/* ====================================================
   SECTIONS
   ==================================================== */
.section-white {
    background: #ffffff;
    padding: 5rem 0;
}

.section-stone {
    background: #fafaf9;
    padding: 5rem 0;
}

.section-stone-100 {
    background: #f5f5f4;
    padding: 5rem 0;
}

.section-dark {
    background: #1c1917;
    color: white;
    padding: 5rem 0;
}

.section-dark h2,
.section-dark h3 {
    color: white;
}

.section-dark p {
    color: #d6d3d1;
}

.section-accent {
    background: #ebb524;
    padding: 3rem 0;
}

.section-teal {
    background: #1C5263;
    color: white;
    padding: 5rem 0;
}

.section-teal h2,
.section-teal h3 {
    color: white;
}

.section-sm {
    padding: 3rem 0;
}

.section-title {
    font-family: 'Courier New', Courier, monospace;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: #1c1917;
    margin-bottom: 0.5rem;
}

.section-title .accent {
    color: #ebb524;
}

.section-subtitle {
    font-size: 1rem;
    color: #78716c;
    max-width: 600px;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.section-title-center {
    text-align: center;
}

.section-subtitle-center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* ====================================================
   GRIDS
   ==================================================== */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.grid-auto {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

/* ====================================================
   CARDS
   ==================================================== */
.card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.card-dark {
    background: #292524;
    border-radius: 12px;
    padding: 2rem;
    color: white;
}

.card-course {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.card-course:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.card-course img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.card-course-body {
    padding: 1.5rem;
}

.card-course-body h3 {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: #1c1917;
}

.card-course-body p {
    color: #78716c;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0 0 1rem;
}

.card-course-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: #78716c;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.card-course-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* ====================================================
   STATS
   ==================================================== */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1.5rem 1rem;
}

.stat-number {
    font-family: 'Courier New', Courier, monospace;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #ebb524;
    display: block;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #78716c;
}

.section-dark .stat-label {
    color: #a8a29e;
}

/* ====================================================
   BUTTONS
   ==================================================== */
.btn-primary {
    display: inline-block;
    background: #1c1917;
    color: white;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: background 0.2s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #292524;
    color: white;
}

.btn-accent {
    display: inline-block;
    background: #ebb524;
    color: #1c1917;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: background 0.2s;
    border: none;
    cursor: pointer;
}

.btn-accent:hover {
    background: #d4a320;
    color: #1c1917;
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: #1c1917;
    padding: 11px 27px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border: 2px solid #1c1917;
    transition: all 0.2s;
}

.btn-outline:hover {
    background: #1c1917;
    color: white;
}

.btn-outline-white {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 11px 27px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.5);
    transition: all 0.2s;
}

.btn-outline-white:hover {
    border-color: white;
    background: rgba(255,255,255,0.1);
}

.btn-full {
    display: block;
    width: 100%;
    text-align: center;
}

/* ====================================================
   VALUES / FEATURES LIST
   ==================================================== */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-list li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    font-size: 0.95rem;
    color: #44403c;
    line-height: 1.5;
}

.feature-list li::before {
    content: '→';
    color: #ebb524;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 0.05rem;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.check-list li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    font-size: 0.9rem;
    color: #44403c;
    line-height: 1.5;
}

.check-list li::before {
    content: '✓';
    color: #ebb524;
    font-weight: 700;
    flex-shrink: 0;
    background: rgba(235, 181, 36, 0.15);
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

/* ====================================================
   VALUES CARDS
   ==================================================== */
.value-card {
    background: white;
    border-radius: 12px;
    padding: 1.75rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.value-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(235, 181, 36, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: #ebb524;
    font-size: 1.25rem;
}

.value-card h3 {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1c1917;
    margin: 0 0 0.5rem;
}

.value-card p {
    font-size: 0.875rem;
    color: #78716c;
    margin: 0;
    line-height: 1.5;
}

/* ====================================================
   QUOTE / BLOCKQUOTE
   ==================================================== */
.quote-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.quote-text {
    font-family: 'Courier New', Courier, monospace;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    color: #1c1917;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.quote-label {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #ebb524;
    margin-bottom: 1.5rem;
}

/* ====================================================
   CONTACT SECTION
   ==================================================== */
.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item-icon {
    width: 3px;
    background: #ebb524;
    border-radius: 2px;
    flex-shrink: 0;
}

.contact-item-label {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #78716c;
    margin-bottom: 0.25rem;
}

.contact-item-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1c1917;
    margin-bottom: 0.15rem;
}

.contact-item-sub {
    font-size: 0.85rem;
    color: #78716c;
}

/* ====================================================
   PRICING TABLES
   ==================================================== */
.pricing-card {
    background: #292524;
    border-radius: 12px;
    padding: 2rem;
    color: white;
    position: relative;
}

.pricing-card.featured {
    border: 2px solid #ebb524;
}

.pricing-badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: #ebb524;
    color: #1c1917;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
}

.pricing-duration {
    font-size: 0.8rem;
    color: #a8a29e;
    margin-bottom: 0.25rem;
}

.pricing-price {
    font-family: 'Courier New', Courier, monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ebb524;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.pricing-price-old {
    font-size: 1rem;
    color: #78716c;
    text-decoration: line-through;
    margin-bottom: 0.25rem;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table tr {
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.pricing-table tr:last-child {
    border-bottom: none;
}

.pricing-table td {
    padding: 0.75rem 0.5rem;
    font-size: 0.9rem;
}

.pricing-table td:last-child {
    text-align: right;
    font-weight: 600;
    color: #ebb524;
    white-space: nowrap;
}

.pricing-table tr.highlighted td {
    background: rgba(235, 181, 36, 0.08);
}

.pricing-table tr.highlighted td:first-child {
    border-left: 3px solid #ebb524;
    padding-left: 0.75rem;
}

/* ====================================================
   LEVEL GRID
   ==================================================== */
.level-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.5rem;
}

.level-card {
    background: #292524;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    color: white;
}

.level-name {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ebb524;
    margin-bottom: 0.25rem;
}

.level-desc {
    font-size: 0.75rem;
    color: #a8a29e;
    line-height: 1.3;
}

.level-weeks {
    font-size: 0.7rem;
    color: #78716c;
    margin-top: 0.25rem;
}

/* ====================================================
   PHOTO GALLERY / IMAGE GRID
   ==================================================== */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.photo-grid img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

/* ====================================================
   FORM STYLES
   ==================================================== */
.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.form-label {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    color: #44403c;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid #e7e5e4;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #1c1917;
    background: white;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: #1c1917;
}

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

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* ====================================================
   LOCATION BOX
   ==================================================== */
.location-box {
    background: #f5f5f4;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.location-box h4 {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
}

.location-box p {
    font-size: 0.875rem;
    color: #78716c;
    margin: 0;
    line-height: 1.5;
}

/* ====================================================
   SOCIAL BUTTONS
   ==================================================== */
.social-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    border: 1.5px solid #e7e5e4;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #44403c;
    text-decoration: none;
    transition: all 0.2s;
}

.social-btn:hover {
    border-color: #1c1917;
    color: #1c1917;
}

/* ====================================================
   HOUSING OPTIONS
   ==================================================== */
.housing-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.housing-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.housing-card-body {
    padding: 1.5rem;
}

.housing-card h3 {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1c1917;
    margin: 0 0 0.75rem;
}

.housing-card p {
    font-size: 0.875rem;
    color: #78716c;
    line-height: 1.5;
    margin: 0 0 1rem;
}

.housing-price {
    font-size: 0.8rem;
    color: #78716c;
    margin-bottom: 1.25rem;
}

.housing-price strong {
    color: #ebb524;
    font-family: 'Courier New', Courier, monospace;
}

/* ====================================================
   INLINE QUOTE / HIGHLIGHT BOX
   ==================================================== */
.highlight-box {
    background: rgba(235, 181, 36, 0.1);
    border-left: 4px solid #ebb524;
    border-radius: 0 8px 8px 0;
    padding: 1.25rem 1.5rem;
    font-style: italic;
    color: #44403c;
    line-height: 1.6;
}

/* ====================================================
   INCLUDES GRID (¿Qué incluye?)
   ==================================================== */
.includes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.include-item {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    background: white;
    border: 1px solid #e7e5e4;
    border-radius: 8px;
    padding: 0.875rem 1rem;
    font-size: 0.875rem;
    color: #44403c;
    line-height: 1.4;
}

.include-icon {
    width: 2rem;
    height: 2rem;
    background: rgba(235, 181, 36, 0.15);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
    color: #ebb524;
}

/* ====================================================
   SCHEDULE CARDS
   ==================================================== */
.schedule-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.schedule-card {
    border: 1.5px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    padding: 1.75rem 1.5rem;
    text-align: center;
}

.schedule-time {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ebb524;
    margin-bottom: 0.5rem;
}

.schedule-label {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #a8a29e;
}

.schedule-note {
    text-align: center;
    font-size: 0.8rem;
    color: #78716c;
    margin-top: 1.5rem;
    font-style: italic;
}

/* ====================================================
   LEVEL GRID (9 cols)
   ==================================================== */
.level-grid-9 {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 0.5rem;
}

/* ====================================================
   ONLINE FEATURE CARDS
   ==================================================== */
.feature-card-online {
    background: white;
    border-radius: 10px;
    padding: 1.75rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.feature-card-online .f-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(235, 181, 36, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    color: #ebb524;
}

.feature-card-online h3 {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.05rem;
    font-weight: 700;
    color: #1c1917;
    margin: 0 0 0.5rem;
}

.feature-card-online p {
    font-size: 0.875rem;
    color: #78716c;
    margin: 0;
    line-height: 1.5;
}

/* ====================================================
   ONLINE PRICING CARDS
   ==================================================== */
.online-pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 820px;
    margin: 2.5rem auto 0;
}

.online-pricing-card {
    border: 1.5px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    padding: 2rem;
    color: white;
}

.online-pricing-card.featured {
    border-color: #ebb524;
}

.online-pricing-label {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #a8a29e;
    margin-bottom: 0.5rem;
}

.online-pricing-price {
    font-family: 'Courier New', Courier, monospace;
    font-size: 2.25rem;
    font-weight: 700;
    color: #ebb524;
    margin-bottom: 0.25rem;
    line-height: 1;
}

.online-pricing-sub {
    font-size: 0.8rem;
    color: #78716c;
    margin-bottom: 1.5rem;
}

.online-check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.online-check-list li {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    font-size: 0.875rem;
    color: #d6d3d1;
}

.online-check-list li::before {
    content: '✓';
    color: #ebb524;
    font-weight: 700;
    flex-shrink: 0;
}

/* ====================================================
   FORMAT CARDS (Clases Privadas)
   ==================================================== */
.format-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.format-card {
    border: 1.5px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    padding: 1.75rem;
    color: white;
    position: relative;
}

.format-card.featured {
    border-color: #ebb524;
}

.format-badge {
    display: inline-block;
    background: #ebb524;
    color: #1c1917;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    margin-bottom: 0.75rem;
}

.format-card h3 {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin: 0 0 0.5rem;
}

.format-card > p {
    font-size: 0.875rem;
    color: #a8a29e;
    margin: 0 0 1rem;
    line-height: 1.5;
}

.format-price {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ebb524;
    margin-bottom: 1.25rem;
}

.format-note {
    text-align: center;
    font-size: 0.8rem;
    color: #78716c;
    margin-top: 1.5rem;
    font-style: italic;
}

/* ====================================================
   ARRAIGO TYPES CARDS
   ==================================================== */
.arraigo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.arraigo-card {
    border: 1.5px solid #e7e5e4;
    border-radius: 12px;
    padding: 1.75rem;
    position: relative;
    background: white;
}

.arraigo-card.featured {
    border-color: #ebb524;
}

.arraigo-badge {
    display: inline-block;
    background: #ebb524;
    color: #1c1917;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    margin-bottom: 0.75rem;
}

.arraigo-card h3 {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1c1917;
    margin: 0 0 0.5rem;
}

.arraigo-card > p {
    font-size: 0.875rem;
    color: #78716c;
    margin: 0 0 1rem;
    line-height: 1.5;
}

.req-label {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
    color: #44403c;
    margin-bottom: 0.5rem;
}

.req-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.req-list li {
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
    font-size: 0.8rem;
    color: #44403c;
    line-height: 1.4;
}

.req-list li::before {
    content: '●';
    color: #ebb524;
    font-size: 0.5rem;
    flex-shrink: 0;
    margin-top: 0.35rem;
}

/* ====================================================
   LEVEL RECOMMENDATION CARD
   ==================================================== */
.levels-rec-card {
    background: #292524;
    border-radius: 12px;
    padding: 1.75rem;
    color: white;
}

.levels-rec-card h3 {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin: 0 0 1.25rem;
}

.level-row {
    padding: 0.875rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.level-row:last-of-type {
    border-bottom: none;
}

.level-row-name {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ebb524;
    min-width: 2.75rem;
    flex-shrink: 0;
}

.level-row-desc {
    font-size: 0.8rem;
    color: #a8a29e;
    line-height: 1.4;
    padding-top: 0.15rem;
}

/* ====================================================
   LEGAL NOTICE BOX
   ==================================================== */
.legal-notice {
    max-width: 650px;
    margin: 0 auto 4rem;
    background: rgba(235, 181, 36, 0.08);
    border-left: 4px solid #ebb524;
    border-radius: 0 8px 8px 0;
    padding: 1.25rem 1.5rem;
}

.legal-notice-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: #1c1917;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legal-notice p {
    font-size: 0.875rem;
    color: #44403c;
    line-height: 1.6;
    margin: 0;
}

/* ====================================================
   SECTION ACCENT CTA
   ==================================================== */
.cta-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-center h2 {
    font-family: 'Courier New', Courier, monospace;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #1c1917;
    margin: 0 0 0.75rem;
}

.cta-center p {
    font-size: 0.95rem;
    color: #44403c;
    margin: 0 0 2rem;
    line-height: 1.5;
}

/* ====================================================
   CARD LISTING (border-based, actividades/courses)
   ==================================================== */
.card-listing {
    background: white;
    border: 1px solid #e7e5e4;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    display: block;
    text-decoration: none;
    color: inherit;
}

.card-listing:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    color: inherit;
    text-decoration: none;
}

.card-listing.featured { border-color: #ebb524; }

.card-listing-img-wrap {
    position: relative;
    height: 208px;
    overflow: hidden;
}

.card-listing-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

.card-listing:hover .card-listing-img-wrap img { transform: scale(1.05); }

.card-listing-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #ebb524;
    color: #1c1917;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.2rem 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: 'Courier New', Courier, monospace;
}

.card-listing-body { padding: 1.5rem; background: white; }

.card-listing-category {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #ebb524;
    font-family: 'Courier New', Courier, monospace;
    margin-bottom: 0.25rem;
}

.card-listing-title {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1c1917;
    margin: 0 0 0.75rem;
}

.card-listing-desc {
    font-size: 0.875rem;
    color: #78716c;
    line-height: 1.5;
    margin: 0 0 1rem;
}

.card-listing-footer {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #78716c;
    padding-top: 1rem;
    border-top: 1px solid #f5f5f4;
    font-family: 'Courier New', Courier, monospace;
}

/* ====================================================
   LEVEL GRID V2 (10 levels, dark border-based)
   ==================================================== */
.level-grid-v2 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.level-card-v2 {
    background: #292524;
    border: 1px solid #44403c;
    padding: 1.25rem;
    text-align: center;
    transition: border-color 0.2s;
}

.level-card-v2:hover { border-color: #ebb524; }

.level-card-v2-name {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.level-card-v2-desc { font-size: 0.75rem; color: #a8a29e; margin-bottom: 0.5rem; }
.level-card-v2-weeks { font-size: 0.75rem; font-weight: 700; color: #ebb524; }

/* ====================================================
   INFO BOXES (border-based)
   ==================================================== */
.info-box {
    background: white;
    border: 1px solid #e7e5e4;
    padding: 1.5rem;
}

.info-box-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #ebb524;
    font-family: 'Courier New', Courier, monospace;
    margin-bottom: 0.5rem;
}

.info-box-title {
    font-family: 'Courier New', Courier, monospace;
    font-weight: 700;
    color: #1c1917;
    margin: 0 0 0.25rem;
    font-size: 1rem;
}

.info-box-text { font-size: 0.875rem; color: #78716c; margin: 0; }

/* ====================================================
   DOT LIST (yellow bullet points)
   ==================================================== */
.dot-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.dot-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #78716c;
    line-height: 1.4;
}

.dot-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #ebb524;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.4rem;
}

/* ====================================================
   HOUSING OPTION CARDS (border-based)
   ==================================================== */
.housing-option-card {
    background: white;
    border: 1px solid #e7e5e4;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.housing-option-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.housing-option-card img {
    width: 100%;
    height: 208px;
    object-fit: cover;
    display: block;
}

.housing-option-body { padding: 1.5rem; }

.housing-option-category {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #ebb524;
    font-family: 'Courier New', Courier, monospace;
    margin-bottom: 0.25rem;
}

.housing-option-title {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1c1917;
    margin: 0 0 0.75rem;
}

.housing-option-desc {
    font-size: 0.875rem;
    color: #78716c;
    line-height: 1.5;
    margin: 0 0 1rem;
}

.housing-option-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid #f5f5f4;
}

.housing-option-price {
    font-family: 'Courier New', Courier, monospace;
    font-weight: 700;
    color: #ebb524;
    font-size: 0.9rem;
}

.btn-consult {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    font-family: 'Courier New', Courier, monospace;
    border: 1px solid #1c1917;
    color: #1c1917;
    padding: 0.4rem 0.9rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.btn-consult:hover { background: #1c1917; color: white; }

/* ====================================================
   CTA DARK (dark bg, yellow border button)
   ==================================================== */
.cta-dark {
    background: #1c1917;
    padding: 4rem 0;
    text-align: center;
}

.cta-dark h2 {
    font-family: 'Courier New', Courier, monospace;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.cta-dark h2 .accent { color: #ebb524; }
.cta-dark p { color: #a8a29e; margin-bottom: 2rem; font-size: 1rem; }

.btn-accent-outline {
    display: inline-block;
    border: 2px solid #ebb524;
    color: #ebb524;
    background: transparent;
    padding: 14px 36px;
    font-size: 0.85rem;
    font-weight: 700;
    font-family: 'Courier New', Courier, monospace;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.btn-accent-outline:hover { background: #ebb524; color: #1c1917; }

/* ====================================================
   RESPONSIVE
   ==================================================== */
@media (max-width: 1024px) {
    .grid-4, .stats-row { grid-template-columns: repeat(2, 1fr); }
    .level-grid { grid-template-columns: repeat(3, 1fr); }
    .level-grid-9 { grid-template-columns: repeat(5, 1fr); }
    .level-grid-v2 { grid-template-columns: repeat(3, 1fr); }
    .format-cards-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .page-container { padding: 0 1.25rem; }
    .grid-2, .grid-3, .grid-4, .stats-row { grid-template-columns: 1fr; }
    .photo-grid { grid-template-columns: 1fr; }
    .form-grid-2 { grid-template-columns: 1fr; }
    .level-grid { grid-template-columns: repeat(2, 1fr); }
    .level-grid-9 { grid-template-columns: repeat(3, 1fr); }
    .level-grid-v2 { grid-template-columns: repeat(2, 1fr); }
    .includes-grid { grid-template-columns: 1fr; }
    .schedule-cards { grid-template-columns: 1fr; }
    .online-pricing-grid { grid-template-columns: 1fr; }
    .format-cards-grid { grid-template-columns: 1fr; }
    .arraigo-grid { grid-template-columns: 1fr; }
    .section-white, .section-stone, .section-stone-100,
    .section-dark, .section-teal { padding: 3rem 0; }
    .social-buttons { gap: 0.5rem; }
}

/* ====================================================
   GROUP B: VISADO / NIE / EXÁMENES COMPONENTS
   ==================================================== */

/* Numbered docs list */
.doc-numbered-list { display: flex; flex-direction: column; gap: 0; }
.doc-numbered-item {
    display: grid;
    grid-template-columns: 2.5rem 1fr;
    gap: 1rem;
    align-items: start;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.doc-numbered-item:last-child { border-bottom: none; }
.doc-number { font-family: 'Courier New', Courier, monospace; font-size: 0.75rem; font-weight: 700; color: #ebb524; padding-top: 0.15rem; }
.doc-item-title { font-size: 0.9rem; font-weight: 600; color: white; margin: 0 0 0.15rem; line-height: 1.4; }
.doc-item-sub { font-size: 0.8rem; color: #a8a29e; line-height: 1.4; margin: 0; }
.doc-numbered-list.light .doc-numbered-item { border-bottom-color: #e7e5e4; }
.doc-numbered-list.light .doc-item-title { color: #1c1917; }

/* Alert boxes */
.alert-box { border-radius: 8px; padding: 1rem 1.25rem; display: flex; gap: 0.75rem; align-items: flex-start; margin: 0.75rem 0; }
.alert-box-yellow { background: rgba(235, 181, 36, 0.1); border: 1px solid rgba(235, 181, 36, 0.3); }
.alert-box-yellow p { font-size: 0.875rem; color: #44403c; line-height: 1.5; margin: 0; }
.alert-icon { color: #ebb524; font-size: 1rem; flex-shrink: 0; margin-top: 0.1rem; }

/* Notice boxes */
.notice-box-dark { background: #292524; border-radius: 8px; padding: 1.5rem; }
.notice-box-dark h4 { font-family: 'Courier New', Courier, monospace; font-size: 0.95rem; font-weight: 700; color: #ebb524; margin: 0 0 0.5rem; }
.notice-box-dark p { font-size: 0.85rem; color: #a8a29e; line-height: 1.5; margin: 0; }

/* Process steps */
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem 2rem; }
.process-step { display: flex; flex-direction: column; }
.step-number { font-family: 'Courier New', Courier, monospace; font-size: 2rem; font-weight: 700; color: #ebb524; line-height: 1; margin-bottom: 0.75rem; }
.step-title { font-weight: 700; font-size: 0.95rem; color: #1c1917; margin: 0 0 0.4rem; }
.step-desc { font-size: 0.85rem; color: #78716c; line-height: 1.5; margin: 0; }

/* Exam cards */
.exam-cards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.exam-card { background: white; border: 1.5px solid #e7e5e4; border-radius: 12px; padding: 1.5rem; display: flex; flex-direction: column; position: relative; }
.exam-card-badge { display: inline-block; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #1c1917; background: #ebb524; padding: 0.2rem 0.5rem; border-radius: 4px; margin-bottom: 0.75rem; width: fit-content; }
.exam-card-icon { position: absolute; top: 1.5rem; right: 1.5rem; color: #ebb524; font-size: 1.25rem; }
.exam-card-name { font-family: 'Courier New', Courier, monospace; font-size: 1.5rem; font-weight: 700; color: #1c1917; margin: 0 0 0.25rem; }
.exam-card-source { font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: #78716c; margin: 0 0 0.5rem; }
.exam-card-subtitle { font-size: 0.85rem; font-weight: 600; color: #44403c; margin: 0 0 0.75rem; }
.exam-card-desc { font-size: 0.85rem; color: #78716c; line-height: 1.5; margin: 0 0 1rem; flex: 1; }
.exam-levels { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1rem; }
.exam-level { font-size: 0.7rem; font-weight: 600; background: #f5f5f4; color: #44403c; padding: 0.2rem 0.5rem; border-radius: 4px; }
.exam-card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.exam-tag { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: #ebb524; font-weight: 700; }

/* Countries grid (NIE) */
.countries-grid-box { background: white; border: 1.5px solid #e7e5e4; border-radius: 12px; padding: 1.5rem; margin-bottom: 1.5rem; }
.countries-grid-box h4 { font-family: 'Courier New', Courier, monospace; font-size: 0.9rem; font-weight: 700; color: #1c1917; margin: 0 0 1rem; }
.countries-list { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.country-tag { font-size: 0.75rem; background: #f5f5f4; color: #44403c; padding: 0.2rem 0.6rem; border-radius: 4px; }
.tarjeta-box { background: #292524; border-radius: 12px; padding: 1.5rem; }
.tarjeta-box h4 { font-family: 'Courier New', Courier, monospace; font-size: 0.85rem; font-weight: 700; color: #ebb524; text-transform: uppercase; letter-spacing: 0.08em; margin: 0 0 0.75rem; }
.tarjeta-box ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.tarjeta-box ul li { font-size: 0.875rem; color: #a8a29e; padding-left: 1rem; position: relative; }
.tarjeta-box ul li::before { content: '•'; color: #ebb524; position: absolute; left: 0; }

/* Formats box */
.formats-box { background: white; border-radius: 12px; padding: 1.75rem 2rem; }
.formats-box h3 { font-family: 'Courier New', Courier, monospace; font-size: 1rem; font-weight: 700; color: #1c1917; margin: 0 0 1.25rem; padding-bottom: 0.75rem; border-bottom: 1px solid #e7e5e4; }
.format-item { padding: 0.875rem 0; border-bottom: 1px solid #e7e5e4; }
.format-item:last-child { border-bottom: none; padding-bottom: 0; }
.format-title { font-size: 0.9rem; font-weight: 700; color: #1c1917; margin: 0 0 0.2rem; }
.format-desc { font-size: 0.8rem; color: #78716c; margin: 0; }

/* DELE level cards */
.dele-levels-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.dele-level-card { background: white; border: 1.5px solid #e7e5e4; border-radius: 8px; padding: 1.25rem; }
.dele-level-name { font-family: 'Courier New', Courier, monospace; font-size: 1.1rem; font-weight: 700; color: #1c1917; margin: 0 0 0.25rem; }
.dele-level-desc { font-size: 0.8rem; color: #78716c; margin: 0; }

/* Other exams sidebar */
.other-exam-card { background: #292524; border-radius: 8px; padding: 1.25rem; margin-bottom: 1rem; }
.other-exam-card:last-child { margin-bottom: 0; }
.other-exam-name { font-family: 'Courier New', Courier, monospace; font-size: 1.1rem; font-weight: 700; color: #ebb524; margin: 0 0 0.25rem; }
.other-exam-desc { font-size: 0.8rem; color: #a8a29e; line-height: 1.4; margin: 0 0 0.5rem; }
.other-exam-tag { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: #78716c; margin: 0; }

/* Responsive Group B */
@media (max-width: 1024px) {
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .exam-cards-grid { grid-template-columns: 1fr; }
    .dele-levels-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .process-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .exam-cards-grid { grid-template-columns: 1fr; }
    .dele-levels-grid { grid-template-columns: repeat(2, 1fr); }
    .doc-numbered-item { grid-template-columns: 2rem 1fr; }
}
