/* =============================================================================
   RealEstateNemo.com - Custom Styles
   Light, coastal-inspired palette
   ============================================================================= */

/* -----------------------------------------------------------------------------
   CSS Custom Properties (Variables)
   ----------------------------------------------------------------------------- */
:root {
    /* Colors */
    --primary: #1f3a68;
    --primary-dark: #162a4a;
    --primary-light: #3f5d96;
    --accent: #c84a4a;
    --accent-light: #e56a6a;
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --nav-bg: #203b6d;
    --nav-text: #f5f7fb;
    
    /* Light Theme Surfaces */
    --bg-dark: #f7f6f4;
    --bg-dark-subtle: #eef2f7;
    --bg-dark-elevated: #ffffff;
    --bg-card: #ffffff;
    --bg-card-hover: #f1f4fa;
    
    /* Text Colors */
    --text-primary: #1f2937;
    --text-secondary: #374151;
    --text-muted: #6b7280;
    
    /* Border Colors */
    --border-color: #e5e7eb;
    --border-light: #d5d9e0;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #1f3a68 0%, #c84a4a 100%);
    --gradient-accent: linear-gradient(135deg, #c84a4a 0%, #e56a6a 100%);
    --gradient-dark: linear-gradient(180deg, #f7f6f4 0%, #eef2f7 100%);
    
    /* Typography */
    --font-display: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --section-padding: 5rem;
    --card-padding: 2rem;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.18);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.22);
    --shadow-glow: 0 0 20px rgba(31, 58, 104, 0.25);
}

/* -----------------------------------------------------------------------------
   Base Styles
   ----------------------------------------------------------------------------- */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-weight: 450;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.015em;
}

.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.025em;
}

.lead {
    font-weight: 450;
}

a {
    color: var(--primary-light);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary);
}

/* -----------------------------------------------------------------------------
   Navbar
   ----------------------------------------------------------------------------- */
.navbar {
    background: var(--nav-bg);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid var(--border-light);
    padding: 1rem 0;
    transition: all var(--transition-normal);
}

.navbar-brand {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--nav-text);
}

.navbar-brand .brand-accent {
    color: var(--accent-light);
}

.nav-link {
    color: var(--nav-text) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color var(--transition-fast);
}

.nav-link:hover,
.nav-link:focus {
    color: #ffffff !important;
}

.dropdown-menu {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 0.5rem;
}

.dropdown-item {
    color: var(--text-secondary);
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
}

.dropdown-item:hover {
    background: var(--bg-card-hover);
    color: var(--text-primary);
}

.dropdown-divider {
    border-color: var(--border-color);
}

/* -----------------------------------------------------------------------------
   Hero Section
   ----------------------------------------------------------------------------- */
.hero-section {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    padding: 9rem 0 4rem;
    background: var(--gradient-dark);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-video {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-cta .btn {
    padding: 1rem 2rem;
}

/* -----------------------------------------------------------------------------
   Page Headers
   ----------------------------------------------------------------------------- */
.page-header {
    padding: 8rem 0 3rem;
    background: var(--gradient-dark);
    border-bottom: 1px solid var(--border-color);
}

.pillar-header {
    padding-bottom: 4rem;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 1rem;
}

.breadcrumb-item a {
    color: var(--text-muted);
}

.breadcrumb-item.active {
    color: var(--text-secondary);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--text-muted);
}

/* -----------------------------------------------------------------------------
   Badge Styles
   ----------------------------------------------------------------------------- */
.badge-accent {
    background: var(--gradient-accent);
    color: #fff;
    font-weight: 600;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sold-out-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 10;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
}

/* -----------------------------------------------------------------------------
   Text Gradient
   ----------------------------------------------------------------------------- */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* -----------------------------------------------------------------------------
   Sections
   ----------------------------------------------------------------------------- */
.py-6 {
    padding-top: var(--section-padding);
    padding-bottom: var(--section-padding);
}

.bg-dark-gradient {
    background: var(--gradient-dark);
}

.bg-dark-subtle {
    background: var(--bg-dark-subtle);
}

/* -----------------------------------------------------------------------------
   Pillar Cards (Homepage)
   ----------------------------------------------------------------------------- */
.pillar-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: var(--card-padding);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.pillar-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.pillar-card:hover::before {
    opacity: 1;
}

.pillar-card.pillar-media::before {
    background: var(--gradient-accent);
}

.pillar-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.pillar-media .pillar-icon {
    background: var(--gradient-accent);
}

.pillar-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.pillar-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.pillar-stats .stat {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* -----------------------------------------------------------------------------
   Video Placeholder
   ----------------------------------------------------------------------------- */
.video-placeholder {
    background: var(--bg-card);
    border: 2px dashed var(--border-light);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    text-align: center;
    color: var(--text-muted);
    transition: all var(--transition-normal);
}

.video-placeholder:hover {
    border-color: var(--primary);
    background: var(--bg-card-hover);
}

.video-placeholder-content i {
    color: var(--primary);
    opacity: 0.7;
}

.video-placeholder.aspect-16-9 {
    aspect-ratio: 16 / 9;
    min-height: unset;
}

.video-placeholder-sm {
    background: var(--bg-dark-subtle);
    border: 1px dashed var(--border-color);
    border-radius: 0.75rem;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.video-placeholder-sm i {
    font-size: 2rem;
    color: var(--primary);
    opacity: 0.6;
}

/* -----------------------------------------------------------------------------
   Feature List
   ----------------------------------------------------------------------------- */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* -----------------------------------------------------------------------------
   Cards
   ----------------------------------------------------------------------------- */
.sidebar-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 1.5rem;
}

.cta-card {
    border-color: var(--primary);
    position: relative;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

/* -----------------------------------------------------------------------------
   Journey Cards
   ----------------------------------------------------------------------------- */
.journey-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    transition: all var(--transition-normal);
}

.journey-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.journey-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
}

.journey-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--bg-dark-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.property-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
}

.property-highlights li {
    padding: 0.35rem 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* -----------------------------------------------------------------------------
   Stats Grid
   ----------------------------------------------------------------------------- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.stat-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-light);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* -----------------------------------------------------------------------------
   Opportunity/Deal Cards
   ----------------------------------------------------------------------------- */
.opportunity-card,
.deal-card,
.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.opportunity-card:hover,
.deal-card:hover,
.service-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.opportunity-image,
.deal-image {
    position: relative;
    height: 180px;
    background: var(--bg-dark-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.opportunity-image .badge,
.deal-image .badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.opportunity-image .project-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Logo-style images (e.g. Cielo Abierto) — center & contain instead of cover */
.opportunity-image-contain {
    background: #f7f3ee;
}

.opportunity-image .project-photo-contain {
    object-fit: contain;
    padding: 1rem;
}

.opportunity-body,
.deal-body,
.service-card {
    padding: 1.5rem;
}

.service-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 1rem;
}

.opportunity-stats,
.deal-stats {
    margin-top: 1rem;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.stat-row:last-child {
    border-bottom: none;
}

.stat-row .label {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.stat-row .value {
    color: var(--text-primary);
    font-weight: 500;
}

.stat-row .value.highlight {
    color: var(--primary-light);
}

/* -----------------------------------------------------------------------------
   Deal Details Panel
   ----------------------------------------------------------------------------- */
.deal-details-panel {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-dark-subtle);
    border-radius: 0.75rem;
}

.detail-item i {
    font-size: 1.25rem;
    color: var(--primary);
    margin-top: 0.25rem;
}

.detail-item .label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.detail-item .value {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-top: 0.25rem;
}

.detail-item.highlight {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

/* -----------------------------------------------------------------------------
   Photo Placeholders
   ----------------------------------------------------------------------------- */
.photo-placeholder {
    background: var(--bg-dark-subtle);
    border: 1px dashed var(--border-color);
    border-radius: 0.75rem;
    aspect-ratio: 4 / 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    gap: 0.5rem;
}

.photo-placeholder i {
    font-size: 2rem;
    opacity: 0.5;
}

.photo-placeholder span {
    font-size: 0.75rem;
}

/* -----------------------------------------------------------------------------
   Property Cards
   ----------------------------------------------------------------------------- */
.property-card-large {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    overflow: hidden;
}

.property-image-placeholder {
    position: relative;
    height: 100%;
    min-height: 300px;
    background: var(--bg-dark-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.property-card-body {
    padding: 2rem;
}

.property-stats-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.property-stats-inline span {
    font-size: 0.875rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

/* -----------------------------------------------------------------------------
   Property Sidebar
   ----------------------------------------------------------------------------- */
.property-details-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.property-details-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.property-details-list li:last-child {
    border-bottom: none;
}

.property-details-list .label {
    color: var(--text-muted);
}

.property-details-list .value {
    font-weight: 500;
}

/* -----------------------------------------------------------------------------
   Update Cards
   ----------------------------------------------------------------------------- */
.update-card {
    background: var(--bg-dark-subtle);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 1rem;
    margin-bottom: 1rem;
    transition: all var(--transition-fast);
}

.update-card:hover {
    border-color: var(--primary);
}

.update-date {
    display: inline-block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

/* -----------------------------------------------------------------------------
   Process Steps
   ----------------------------------------------------------------------------- */
.process-step {
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin: 0 auto 1rem;
}

/* -----------------------------------------------------------------------------
   Pricing Cards
   ----------------------------------------------------------------------------- */
.pricing-card {
    background: var(--bg-dark-subtle);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 1.5rem;
    height: 100%;
    position: relative;
    transition: all var(--transition-normal);
}

.pricing-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.tier-name {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.tier-price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: 1rem;
}

.tier-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tier-features li {
    padding: 0.35rem 0;
    font-size: 0.875rem;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.tier-features li i {
    margin-top: 0.2rem;
}

.pricing-preview .from-price {
    font-weight: 600;
    color: var(--primary-light);
}

/* -----------------------------------------------------------------------------
   Timeline Steps
   ----------------------------------------------------------------------------- */
.timeline-steps {
    position: relative;
}

.timeline-step {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    position: relative;
}

.timeline-step::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 50px;
    bottom: -10px;
    width: 2px;
    background: var(--border-color);
}

.timeline-step:last-child::before {
    display: none;
}

.timeline-step .step-number {
    width: 50px;
    height: 50px;
    min-width: 50px;
    margin: 0;
}

.timeline-step .step-content h6 {
    margin-bottom: 0.5rem;
}

/* -----------------------------------------------------------------------------
   Episode Cards
   ----------------------------------------------------------------------------- */
.episode-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.episode-card:hover {
    border-color: var(--primary);
}

.episode-info {
    padding: 1rem;
}

.episode-date {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.episode-card-large {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.episode-card-large:hover {
    border-color: var(--primary);
}

.episode-thumbnail {
    position: relative;
    height: 100%;
    min-height: 200px;
    overflow: hidden;
    background: #000;
}

.episode-thumbnail img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.episode-card-large:hover .episode-thumbnail img {
    transform: scale(1.05);
}

.episode-play,
.clip-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 3rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
    pointer-events: none;
    opacity: 0.85;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.episode-card-large:hover .episode-play,
.clip-card:hover .clip-play {
    opacity: 1;
    transform: scale(1.08);
}

.clip-card:hover .clip-thumbnail img {
    transform: scale(1.05);
}

.episode-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
}

.episode-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.episode-actions {
    display: flex;
    gap: 0.5rem;
}

/* Clip Cards */
.clip-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.clip-card:hover {
    border-color: var(--accent);
}

.clip-thumbnail {
    position: relative;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    background: #000;
}

.clip-thumbnail img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.clip-badge {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
}

.clip-content {
    padding: 1rem;
}

.clip-date {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

/* Podcast Stats */
.podcast-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.podcast-stat {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
}

/* Topics List */
.topics-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.topics-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* -----------------------------------------------------------------------------
   Loan Type & Feature Cards
   ----------------------------------------------------------------------------- */
.loan-type-card,
.feature-card {
    background: var(--bg-dark-subtle);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 1rem;
    display: flex;
    align-items: center;
}

/* -----------------------------------------------------------------------------
   Quick Stats List
   ----------------------------------------------------------------------------- */
.quick-stats-list,
.quick-facts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-stats-list li,
.quick-facts-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.quick-stats-list li:last-child,
.quick-facts-list li:last-child {
    border-bottom: none;
}

.quick-stats-list i,
.quick-facts-list i {
    font-size: 1.25rem;
}

/* Starting Price */
.starting-price {
    text-align: center;
}

.starting-price .price {
    display: block;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-light);
}

.starting-price .tier-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Included Items */
.included-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
}

/* -----------------------------------------------------------------------------
   Forms
   ----------------------------------------------------------------------------- */
.form-control,
.form-select {
    background: var(--bg-dark-subtle);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    transition: all var(--transition-fast);
}

.form-control:focus,
.form-select:focus {
    background: var(--bg-dark);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
    color: var(--text-primary);
}

.form-control::placeholder {
    color: var(--text-muted);
}

.form-label {
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

/* -----------------------------------------------------------------------------
   Buttons
   ----------------------------------------------------------------------------- */
.btn-primary {
    background: var(--gradient-primary);
    border: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: all var(--transition-normal);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-outline-light {
    border-color: var(--border-light);
    color: var(--text-secondary);
}

.btn-outline-light:hover {
    background: var(--text-primary);
    border-color: var(--text-primary);
    color: var(--bg-dark);
}

.btn-outline-secondary {
    border-color: var(--border-color);
    color: var(--text-secondary);
}

.btn-outline-secondary:hover {
    background: var(--bg-card);
    border-color: var(--border-light);
    color: var(--text-primary);
}

/* -----------------------------------------------------------------------------
   Footer
   ----------------------------------------------------------------------------- */
.footer {
    background: var(--bg-dark-subtle);
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 1.25rem;
}

.footer-brand .brand-accent {
    color: var(--primary);
}

.social-links a {
    color: var(--text-muted);
    font-size: 1.25rem;
    transition: color var(--transition-fast);
}

.social-links a:hover {
    color: var(--primary);
}

.footer h6 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--text-primary);
}

/* -----------------------------------------------------------------------------
   Debug Footer
   ----------------------------------------------------------------------------- */
.debug-footer {
    background: #e8eef7;
    border-top: 1px solid var(--border-light);
    padding: 0.75rem 0;
    font-size: 0.75rem;
}

.debug-footer details {
    cursor: pointer;
}

.debug-footer summary {
    color: var(--primary);
    font-weight: 600;
}

.debug-footer pre {
    background: #f5f7fb;
    padding: 0.5rem;
    border-radius: 0.25rem;
    margin: 0.5rem 0;
    color: #0f172a;
    font-size: 0.7rem;
}

/* -----------------------------------------------------------------------------
   Admin Styles
   ----------------------------------------------------------------------------- */
.admin-header {
    background: var(--bg-dark-subtle);
    border-bottom: 1px solid var(--border-color);
    padding: 6rem 0 2rem;
}

.admin-login-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
}

.stat-card-small {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 1rem;
    text-align: center;
}

.stat-card-small.total {
    background: var(--gradient-primary);
    border: none;
}

.stat-card-small .stat-value {
    font-size: 1.5rem;
    font-weight: 700;
}

.stat-card-small .stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: capitalize;
}

.stat-card-small.total .stat-label {
    color: rgba(255, 255, 255, 0.8);
}

.filter-bar {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 1rem;
}

.leads-table {
    border-radius: 0.75rem;
    overflow: hidden;
}

.leads-table th {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 1rem;
}

.leads-table td {
    padding: 1rem;
    vertical-align: middle;
    border-bottom: 1px solid var(--border-color);
}

.admin-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 1.5rem;
}

.admin-card .card-title {
    margin-bottom: 1rem;
}

.info-item {
    margin-bottom: 0.5rem;
}

.info-item label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-item span {
    color: var(--text-primary);
}

.message-text {
    white-space: pre-wrap;
    word-wrap: break-word;
}

.url-text {
    word-break: break-all;
    font-size: 0.875rem;
}

.extra-json {
    background: var(--bg-dark-subtle);
    padding: 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.8rem;
    color: var(--primary-light);
}

.ai-summary-card {
    border-color: var(--accent);
}

.ai-summary-text {
    background: var(--bg-dark-subtle);
    padding: 1rem;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.6;
    border-left: 3px solid var(--accent);
}

/* -----------------------------------------------------------------------------
   Thanks Page
   ----------------------------------------------------------------------------- */
.min-vh-75 {
    min-height: 75vh;
}

.thanks-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 3rem;
}

.next-steps-card {
    background: var(--bg-dark-subtle);
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: left;
}

.next-steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.next-steps-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

/* -----------------------------------------------------------------------------
   Contact Page
   ----------------------------------------------------------------------------- */
.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
}

.contact-info li a {
    color: var(--primary-light);
}

/* -----------------------------------------------------------------------------
   About Page
   ----------------------------------------------------------------------------- */
.about-image-placeholder {
    background: var(--bg-card);
    border: 2px dashed var(--border-light);
    border-radius: 1rem;
    aspect-ratio: 4 / 5;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-muted);
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 1.5rem;
}

/* Coming Soon */
.coming-soon-box {
    background: var(--bg-card);
    border: 1px dashed var(--border-light);
    border-radius: 1rem;
    padding: 3rem;
}

/* -----------------------------------------------------------------------------
   CTA Section
   ----------------------------------------------------------------------------- */
.cta-section {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

/* -----------------------------------------------------------------------------
   Accordion
   ----------------------------------------------------------------------------- */
.accordion-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border-color);
}

.accordion-button {
    background: transparent;
    color: var(--text-primary);
    font-weight: 600;
    padding: 1rem 0;
}

.accordion-button:not(.collapsed) {
    background: transparent;
    color: var(--primary);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button::after {
    filter: none;
}

.accordion-body {
    padding: 0 0 1rem;
}

/* -----------------------------------------------------------------------------
   Calendly Modal
   ----------------------------------------------------------------------------- */
.calendly-mock {
    text-align: center;
    padding: 2rem;
}

.calendly-mock h4 {
    color: var(--text-primary);
}

/* -----------------------------------------------------------------------------
   Alerts
   ----------------------------------------------------------------------------- */
.alert-info {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    color: var(--primary-light);
}

.alert-secondary {
    background: var(--bg-dark-subtle);
    border-color: var(--border-color);
    color: var(--text-secondary);
}

/* -----------------------------------------------------------------------------
   Responsive Adjustments
   ----------------------------------------------------------------------------- */
@media (max-width: 991.98px) {
    .hero-section {
        padding-top: 6rem;
    }
    
    .page-header {
        padding-top: 6rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .cta-sidebar {
        margin-top: 2rem;
    }
}

@media (max-width: 767.98px) {
    .display-3 {
        font-size: 2.5rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .hero-section {
        min-height: auto;
        padding-bottom: 3rem;
    }
    
    .py-6 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    
    .pillar-card,
    .journey-card {
        padding: 1.5rem;
    }
    
    .property-card-large .row {
        flex-direction: column;
    }
    
    .property-image-placeholder {
        min-height: 200px;
    }
}

/* Homepage pillar cards (photo-led) */
.pillar-card-photo {
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    height: 100%;
}

.pillar-card-photo:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.18);
    color: inherit;
}

.pillar-card-photo-img {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #0c0c0c;
}

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

.pillar-card-photo:hover .pillar-card-photo-img img {
    transform: scale(1.04);
}

.pillar-card-photo-body {
    padding: 1.5rem 1.5rem 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.pillar-eyebrow {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.pillar-card-photo h3 {
    font-size: 1.4rem;
    margin-bottom: 0.6rem;
}

.pillar-card-photo p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.pillar-cta {
    color: var(--primary);
    font-weight: 600;
    margin-top: auto;
    align-self: flex-start;
}

.pillar-card-photo:hover .pillar-cta {
    text-decoration: underline;
}

/* Gradient fallback for pillars without a real photo yet
   Drop a JPG into static/img/pillars/<key>.jpg and replace the pillar-fallback
   div with an <img> to use a real photo. */
.pillar-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: rgba(255, 255, 255, 0.92);
    text-align: center;
    padding: 1rem;
    position: relative;
    overflow: hidden;
}

.pillar-fallback::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 25% 30%, rgba(255, 255, 255, 0.18), transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1), transparent 50%);
    pointer-events: none;
}

.pillar-fallback i {
    font-size: 3rem;
    opacity: 0.95;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.pillar-fallback-label {
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    opacity: 0.85;
    position: relative;
    z-index: 1;
}

.pillar-fallback-detroit {
    background: linear-gradient(135deg, #1a2c4f 0%, #2c4a7a 50%, #4a6ba8 100%);
}

.pillar-fallback-lending {
    background: linear-gradient(135deg, #1f5c4d 0%, #2c8268 50%, #3aab83 100%);
}

.pillar-fallback-nemology {
    background: linear-gradient(135deg, #1c1c1c 0%, #2e2e2e 50%, #4a3535 100%);
}

.pillar-fallback-zone {
    background: linear-gradient(135deg, #2a1245 0%, #4a1d6b 50%, #7a2d96 100%);
}

/* Nemology brand banner */
.nemology-banner {
    position: relative;
    width: 100%;
    aspect-ratio: 21 / 6;
    max-height: 360px;
    overflow: hidden;
    background: #0a0d12;
}

.nemology-banner img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.nemology-banner-overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
    color: #f4f1ea;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-align: center;
}

/* Zone service card with photo header */
.service-card-photo {
    padding: 0;
    overflow: hidden;
}

.service-card-photo-wrap {
    aspect-ratio: 16 / 10;
    background: #111;
    overflow: hidden;
}

.service-card-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.service-card-photo:hover .service-card-photo-wrap img {
    transform: scale(1.04);
}

.service-card-photo .service-card-body {
    padding: 1.5rem;
}

/* Fallback gradient header used on service cards without a real photo. */
.service-card-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.95);
    font-size: 3.5rem;
    position: relative;
    overflow: hidden;
}

.service-card-fallback::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.18), transparent 55%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08), transparent 55%);
    pointer-events: none;
}

.service-card-fallback i {
    position: relative;
    z-index: 1;
}

.service-card-fallback-0 { background: linear-gradient(135deg, #1f3a68 0%, #2c5fa3 100%); }
.service-card-fallback-1 { background: linear-gradient(135deg, #1f5c4d 0%, #3aab83 100%); }
.service-card-fallback-2 { background: linear-gradient(135deg, #4a2c5a 0%, #8a4ea8 100%); }
.service-card-fallback-3 { background: linear-gradient(135deg, #5a2c2c 0%, #b85050 100%); }

/* "Why Choose The Zone" — single hero photo */
.zone-hero-photo {
    margin: 0;
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: 1rem;
    overflow: hidden;
    background: #0c0c0c;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
}

.zone-hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.zone-hero-photo figcaption {
    position: absolute;
    inset: auto 0 0 0;
    padding: 0.85rem 1.25rem;
    color: #f4f1ea;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.78) 100%);
}

/* About page portrait */
.about-portrait {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 1.25rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.18);
}

/* Homepage hero portrait */
.hero-portrait {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 1.5rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

/* Homepage "Latest from Nemology" cards (live YouTube thumbnails) */
.home-episode-card {
    display: block;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 0.85rem;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.home-episode-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
    color: inherit;
}

.home-episode-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #000;
    overflow: hidden;
}

.home-episode-thumb img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.home-episode-card:hover .home-episode-thumb img {
    transform: scale(1.04);
}

.home-episode-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.92);
    font-size: 3rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
    pointer-events: none;
    opacity: 0.85;
}

.home-episode-card:hover .home-episode-play {
    opacity: 1;
}

.home-episode-info {
    padding: 1rem 1.25rem 1.25rem;
}

.home-episode-info .episode-date {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
}

.home-episode-info h5 {
    font-size: 1rem;
    line-height: 1.35;
    margin: 0;
}

/* Pillar page hero photo (e.g. Colombia Projects flag) */
.pillar-hero-photo {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 1.25rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

/* ===========================================================================
   Nativo deal page
   =========================================================================== */

.nativo-hero {
    position: relative;
    background: radial-gradient(circle at top right, rgba(20, 60, 30, 0.55), transparent 60%),
                linear-gradient(135deg, #0d1f12 0%, #1c2c1f 60%, #2a3a2a 100%);
    color: #f4f1ea;
    padding: 6rem 0 4rem;
    overflow: hidden;
}

.nativo-hero .breadcrumb,
.nativo-hero .breadcrumb a,
.nativo-hero .breadcrumb-item.active {
    color: rgba(244, 241, 234, 0.75);
}

.nativo-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    letter-spacing: 0.02em;
    line-height: 1.05;
}

.nativo-hero .lead {
    color: rgba(244, 241, 234, 0.85);
    max-width: 38rem;
}

.nativo-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.nativo-hero-actions .btn {
    border-radius: 999px;
    padding: 0.65rem 1.4rem;
    font-weight: 600;
}

/* Make outline buttons visible against the dark green Nativo hero. The
   global .btn-outline-light is too muted on this background. */
.nativo-hero-actions .btn-outline-light {
    color: #f4f1ea;
    border-color: rgba(244, 241, 234, 0.55);
    background: transparent;
}

.nativo-hero-actions .btn-outline-light:hover {
    color: #0d1f12;
    background: #f4f1ea;
    border-color: #f4f1ea;
}

/* Instagram brand button — used for the IG CTA in hero + renders sections */
.btn.btn-instagram,
a.btn-instagram {
    color: #fff !important;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
    border: 0 !important;
    font-weight: 600;
}

.btn.btn-instagram:hover,
.btn.btn-instagram:focus,
a.btn-instagram:hover,
a.btn-instagram:focus {
    color: #fff !important;
    filter: brightness(1.08);
}

.nativo-hero-video {
    aspect-ratio: 9 / 16;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
    background: #000;
}

.nativo-hero-video iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.nativo-section {
    padding: 4.5rem 0;
}

.nativo-section--dark {
    background: #0f1410;
    color: #ece9e2;
}

.nativo-section--dark p,
.nativo-section--dark .lead {
    color: rgba(236, 233, 226, 0.82);
}

.nativo-section h2 {
    font-family: var(--font-display);
    font-weight: 600;
}

.nativo-section--dark h2,
.nativo-section--dark h3,
.nativo-section--dark h4 {
    color: #f4f1ea;
}

.nativo-section--dark .text-muted {
    color: rgba(244, 241, 234, 0.65) !important;
}

.nativo-section-sub {
    color: rgba(244, 241, 234, 0.7);
    font-size: 1rem;
    margin: 0;
}

/* Light form card sitting inside a dark Nativo section: force dark text so the
   heading + helper text are readable on the white background. */
.nativo-form-card,
.nativo-form-card h1,
.nativo-form-card h2,
.nativo-form-card h3,
.nativo-form-card h4,
.nativo-form-card h5,
.nativo-form-card label,
.nativo-form-card p {
    color: #1f2937;
}

.nativo-form-card .form-label {
    color: #374151;
    font-weight: 500;
}

.nativo-form-card p.small {
    color: #6b7280;
}

.nativo-prose {
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 52rem;
    margin: 0 auto;
}

.nativo-prose ul {
    padding-left: 1.25rem;
}

.nativo-prose ul li {
    margin-bottom: 0.4rem;
}

/* Why Invest pills */
.nativo-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 0 1.25rem;
}

.nativo-pills::-webkit-scrollbar {
    height: 6px;
}

.nativo-pills::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.nativo-pill {
    flex: 0 0 220px;
    aspect-ratio: 1 / 1;
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 1.25rem;
    color: #f4f1ea;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    position: relative;
}

.nativo-pill:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    color: #fff;
}

.nativo-pill .pill-headline {
    font-family: var(--font-display);
    font-size: 1.9rem;
    font-weight: 600;
    line-height: 1.05;
    margin-bottom: 0.5rem;
}

.nativo-pill .pill-sub {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(244, 241, 234, 0.75);
}

.nativo-pill .pill-arrow {
    position: absolute;
    bottom: 0.85rem;
    right: 1rem;
    opacity: 0.6;
}

.nativo-deck-card {
    background: linear-gradient(135deg, #1b2a1d, #0f1813);
    color: #f4f1ea;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 1.5rem;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.nativo-deck-card .btn {
    margin-top: 1rem;
}

/* Renders gallery — featured + grid */
.nativo-render-feature {
    display: block;
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
    color: inherit;
}

.nativo-render-feature img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.nativo-render-feature:hover img {
    transform: scale(1.03);
}

.nativo-render-feature .nativo-render-caption {
    position: absolute;
    inset: auto 0 0 0;
    padding: 1.5rem 2rem;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.85) 100%);
    color: #f4f1ea;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.nativo-render-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 576px) {
    .nativo-render-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .nativo-render-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.nativo-render-tile {
    position: relative;
    display: block;
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.nativo-render-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.nativo-render-tile:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.25);
}

.nativo-render-tile:hover img {
    transform: scale(1.05);
}

.render-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: -0.01em;
}

.render-eyebrow {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(244, 241, 234, 0.75);
}

.nativo-render-feature .render-title {
    font-size: 1.5rem;
}

/* FAQ accordion */
.nativo-faq {
    max-width: 48rem;
    margin: 0 auto;
}

.nativo-faq .accordion-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.nativo-faq .accordion-button {
    background: transparent;
    color: #f4f1ea;
    font-weight: 600;
    padding: 1.1rem 1.25rem;
}

.nativo-faq .accordion-button:not(.collapsed) {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    box-shadow: none;
}

.nativo-faq .accordion-button:focus {
    box-shadow: none;
}

.nativo-faq .accordion-button::after {
    filter: invert(1) grayscale(1) brightness(2);
}

.nativo-faq .accordion-body {
    color: rgba(244, 241, 234, 0.82);
    line-height: 1.7;
}

.nativo-faq .accordion-body ul {
    padding-left: 1.25rem;
}

/* Founding team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.team-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.25rem;
    overflow: hidden;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.45);
}

.team-card-photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    background: #111;
}

.team-card-meta {
    padding: 1rem 1.25rem 1.25rem;
}

.team-card-meta .role {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(244, 241, 234, 0.7);
    margin-bottom: 0.4rem;
}

.team-card-meta .name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: #f4f1ea;
    margin: 0;
}

/* Office map */
.nativo-office {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: stretch;
}

@media (min-width: 992px) {
    .nativo-office {
        grid-template-columns: 1fr 1fr;
    }
}

.nativo-office iframe {
    width: 100%;
    min-height: 320px;
    border: 0;
    border-radius: 1.25rem;
}

.nativo-office-info {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.25rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Soundtrack card */
.soundtrack-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.5rem;
    padding: 1.25rem;
    max-width: 480px;
    margin: 0 auto;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.soundtrack-card iframe {
    width: 100%;
    height: 380px;
    border: 0;
    border-radius: 1rem;
}

/* Coming soon variant on opportunity card */
.opportunity-coming-soon {
    opacity: 0.85;
}

