/* ===================================
   HOSPITALITY INVESTMENT PLATFORM CSS
   =================================== */

/* Hero Section */
.hip-hero {
    background: linear-gradient(135deg, #0A1828 0%, #1e3a5f 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hip-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23ffffff" fill-opacity="0.02" x="0" y="0" width="100" height="100"/><rect fill="%23ffffff" fill-opacity="0.02" x="100" y="100" width="100" height="100"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.trust-badges-top {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.trust-badges-top .badge {
    background: rgba(255, 215, 0, 0.15);
    color: var(--gold-primary);
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid var(--gold-primary);
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.2;
    margin-bottom: 24px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 19px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Value Proposition Section */
.value-prop-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.lead-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 24px;
}

.comparison-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 48px;
}

.comparison-column {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.comparison-column h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--navy-primary);
}

.challenge-list li,
.advantage-list li {
    margin-bottom: 16px;
    padding-left: 0;
}

.advantage-list {
    list-style: none;
    padding: 0;
}

.advantage-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.advantage-list .icon {
    font-size: 20px;
    flex-shrink: 0;
}

.advantage-list strong {
    color: var(--navy-primary);
}

/* How It Works Section */
.how-it-works-section {
    padding: 80px 0;
    background: white;
}

.steps-container {
    display: grid;
    gap: 40px;
    margin-top: 48px;
}

.step-card {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 16px;
    border-left: 4px solid var(--gold-primary);
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 40px;
    width: 48px;
    height: 48px;
    background: var(--gold-primary);
    color: var(--navy-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(201, 168, 92, 0.3);
}

.step-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    margin-top: 16px;
    color: var(--navy-primary);
}

.step-card p {
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 16px;
}

.step-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.step-list li {
    padding: 12px 0;
    padding-left: 24px;
    position: relative;
    color: var(--gray-700);
    line-height: 1.6;
}

.step-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold-primary);
    font-weight: bold;
}

.step-detail {
    margin-top: 20px;
    padding: 16px;
    background: white;
    border-radius: 8px;
    border-left: 3px solid var(--gold-primary);
    font-size: 15px;
    color: var(--gray-600);
}

.accreditation-requirements {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 24px 0;
}

.requirement-box {
    background: white;
    padding: 24px;
    border-radius: 12px;
    border: 2px solid var(--gold-primary);
}

.requirement-box h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--navy-primary);
}

.requirement-box ul {
    list-style: none;
    padding: 0;
}

.requirement-box li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--gray-700);
}

.requirement-box li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold-primary);
    font-weight: bold;
}

.token-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 32px 0;
}

.token-box {
    background: white;
    padding: 28px;
    border-radius: 12px;
    border: 2px solid var(--gold-primary);
    text-align: center;
}

.token-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.token-box h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--navy-primary);
}

.token-box p {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.6;
}

.distribution-sources {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.distribution-sources li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    color: var(--gray-700);
}

.distribution-sources li::before {
    content: '💰';
    position: absolute;
    left: 0;
    font-size: 18px;
}

/* Investment Opportunities Section */
.investment-opps-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.token-detail-section {
    background: white;
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-top: 40px;
}

.token-detail-section h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--navy-primary);
}

.intro-text {
    font-size: 17px;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 32px;
}

.token-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin: 40px 0;
}

.feature-column h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--navy-primary);
}

.feature-column ul {
    list-style: none;
    padding: 0;
}

.feature-column li {
    padding: 10px 0;
    padding-left: 24px;
    position: relative;
    color: var(--gray-700);
    font-size: 15px;
    line-height: 1.6;
}

.feature-column li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gold-primary);
    font-size: 20px;
    font-weight: bold;
}

.minimum-investment-callout {
    background: var(--gold-light);
    padding: 20px 32px;
    border-radius: 12px;
    text-align: center;
    font-size: 18px;
    color: var(--navy-primary);
    margin-top: 32px;
}

/* Returns Section */
.returns-section {
    padding: 80px 0;
    background: white;
}

.returns-breakdown {
    display: grid;
    gap: 48px;
    margin-top: 48px;
}

.return-source {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 16px;
}

.return-source h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: var(--navy-primary);
}

.return-source > p {
    font-size: 16px;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 24px;
}

.revenue-mechanics,
.ancillary-categories,
.appreciation-mechanisms {
    margin-top: 24px;
}

.revenue-mechanics h4,
.ancillary-categories h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--navy-primary);
}

.revenue-mechanics ul,
.ancillary-categories ul {
    list-style: none;
    padding: 0;
}

.revenue-mechanics li,
.ancillary-categories li {
    padding: 10px 0;
    padding-left: 24px;
    position: relative;
    color: var(--gray-700);
    line-height: 1.6;
}

.revenue-mechanics li::before,
.ancillary-categories li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold-primary);
    font-weight: bold;
}

.disclaimer-box {
    background: rgba(255, 215, 0, 0.1);
    border-left: 4px solid var(--gold-primary);
    padding: 16px 20px;
    margin-top: 20px;
    border-radius: 8px;
    color: var(--gray-700);
    font-size: 15px;
}

.appreciation-mechanisms {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.mechanism {
    background: white;
    padding: 24px;
    border-radius: 12px;
    border: 2px solid #e0e0e0;
}

.mechanism h4 {
    font-size: 17px;
    margin-bottom: 12px;
    color: var(--navy-primary);
}

.mechanism p {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.6;
}

.detail-text {
    margin-top: 16px;
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Eligibility Section */
.eligibility-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.eligibility-requirements {
    margin-top: 48px;
}

.requirement-section {
    background: white;
    padding: 48px;
    border-radius: 16px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.requirement-section h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: var(--navy-primary);
}

.requirement-section > p {
    font-size: 16px;
    color: var(--gray-700);
    margin-bottom: 32px;
}

.qualification-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.qualification-box {
    background: #f8f9fa;
    padding: 28px;
    border-radius: 12px;
    border: 2px solid var(--gold-primary);
    text-align: center;
}

.qual-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.qualification-box h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--navy-primary);
}

.qualification-box p {
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.6;
}

.institutional-requirements {
    list-style: none;
    padding: 0;
    margin-top: 24px;
}

.institutional-requirements li {
    padding: 16px 0;
    padding-left: 28px;
    position: relative;
    color: var(--gray-700);
    font-size: 16px;
    line-height: 1.7;
    border-bottom: 1px solid #e0e0e0;
}

.institutional-requirements li:last-child {
    border-bottom: none;
}

.institutional-requirements li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold-primary);
    font-size: 20px;
    font-weight: bold;
}

.verification-process-section {
    background: white;
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.verification-process-section h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: var(--navy-primary);
}

.verification-process-section > p {
    font-size: 16px;
    color: var(--gray-700);
    margin-bottom: 32px;
}

.verification-steps {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
    margin: 24px 0;
}

.verification-steps li {
    counter-increment: step-counter;
    padding: 16px 0;
    padding-left: 48px;
    position: relative;
    color: var(--gray-700);
    font-size: 16px;
    line-height: 1.7;
}

.verification-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    width: 32px;
    height: 32px;
    background: var(--gold-primary);
    color: var(--navy-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
}

.timeline-note {
    margin-top: 24px;
    padding: 16px 20px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    color: var(--gray-700);
    font-size: 15px;
}

/* Comparison Section */
.comparison-section {
    padding: 80px 0;
    background: white;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin: 48px 0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.comparison-table thead {
    background: var(--navy-primary);
    color: white;
}

.comparison-table th {
    padding: 20px 16px;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
}

.comparison-table td {
    padding: 18px 16px;
    border-bottom: 1px solid #e0e0e0;
    font-size: 14px;
    color: var(--gray-700);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background: #f8f9fa;
}

.comparison-table .highlight-col {
    background: rgba(255, 215, 0, 0.1);
    font-weight: 600;
    color: var(--navy-primary);
}

.comparison-analysis {
    margin-top: 48px;
}

.analysis-box {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 16px;
    border-left: 4px solid var(--gold-primary);
}

.analysis-box h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--navy-primary);
}

.analysis-box > p {
    font-size: 16px;
    color: var(--gray-700);
    margin-bottom: 20px;
    line-height: 1.7;
}

.analysis-box > ul {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}

.analysis-box > ul li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: var(--gray-700);
    line-height: 1.6;
}

.analysis-box > ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold-primary);
    font-size: 18px;
    font-weight: bold;
}

.use-cases {
    background: white;
    padding: 24px;
    border-radius: 12px;
    margin-top: 24px;
}

.use-cases h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--navy-primary);
}

.use-cases ul {
    list-style: none;
    padding: 0;
}

.use-cases li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--gray-700);
    font-size: 15px;
}

.use-cases li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold-primary);
    font-weight: bold;
}

/* Regulatory Section */
.regulatory-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.regulatory-content {
    margin-top: 48px;
}

.regulatory-pillar {
    background: white;
    padding: 48px;
    border-radius: 16px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.regulatory-pillar h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: var(--navy-primary);
}

.regulatory-pillar > p {
    font-size: 16px;
    color: var(--gray-700);
    margin-bottom: 32px;
    line-height: 1.7;
}

.compliance-category {
    margin-bottom: 32px;
}

.compliance-category h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--navy-primary);
}

.compliance-category ul {
    list-style: none;
    padding: 0;
}

.compliance-category li {
    padding: 10px 0;
    padding-left: 24px;
    position: relative;
    color: var(--gray-700);
    line-height: 1.6;
}

.compliance-category li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold-primary);
    font-weight: bold;
}

.legal-framework {
    display: grid;
    gap: 24px;
    margin-top: 24px;
}

.framework-section {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 12px;
}

.framework-section h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--navy-primary);
}

.framework-section ul {
    list-style: none;
    padding: 0;
}

.framework-section li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--gray-700);
    font-size: 15px;
    line-height: 1.6;
}

.framework-section li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold-primary);
    font-weight: bold;
}

.transparency-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 24px;
}

.feature-item {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 12px;
    border: 2px solid var(--gold-primary);
}

.feature-item h4 {
    font-size: 17px;
    margin-bottom: 12px;
    color: var(--navy-primary);
}

.feature-item p {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.6;
}

/* Current Opportunities Section */
.current-opps-section {
    padding: 80px 0;
    background: white;
}

.featured-property {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
    position: relative;
    border: 3px solid var(--gold-primary);
}

.property-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-primary);
    color: var(--navy-primary);
    padding: 8px 24px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.featured-property h3 {
    font-size: 32px;
    margin-bottom: 32px;
    margin-top: 16px;
    color: var(--navy-primary);
    text-align: center;
}

.property-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 32px;
}

.detail-section {
    background: white;
    padding: 28px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.detail-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--navy-primary);
    border-bottom: 2px solid var(--gold-primary);
    padding-bottom: 8px;
}

.detail-section ul {
    list-style: none;
    padding: 0;
}

.detail-section li {
    padding: 10px 0;
    color: var(--gray-700);
    font-size: 15px;
    line-height: 1.6;
}

.property-cta {
    background: white;
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.property-cta p {
    font-size: 15px;
    color: var(--gray-700);
    margin-bottom: 16px;
    line-height: 1.6;
}

.status-text {
    font-size: 17px;
    font-weight: 600;
    color: var(--gold-dark);
    margin-bottom: 24px;
}

.pipeline-properties {
    margin-top: 64px;
}

.pipeline-properties h3 {
    font-size: 28px;
    margin-bottom: 32px;
    color: var(--navy-primary);
    text-align: center;
}

.pipeline-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pipeline-card {
    background: #f8f9fa;
    padding: 32px;
    border-radius: 12px;
    border-top: 4px solid var(--gold-primary);
    position: relative;
}

.pipeline-status {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--gold-primary);
    color: var(--navy-primary);
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
}

.pipeline-card h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--navy-primary);
    margin-top: 8px;
}

.pipeline-card ul {
    list-style: none;
    padding: 0;
}

.pipeline-card li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: var(--gray-700);
    font-size: 14px;
    line-height: 1.6;
}

.pipeline-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gold-primary);
    font-weight: bold;
}

.waitlist-section {
    background: linear-gradient(135deg, #0A1828 0%, #1e3a5f 100%);
    padding: 48px;
    border-radius: 16px;
    margin-top: 64px;
    text-align: center;
    color: white;
}

.waitlist-section h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: white;
}

.waitlist-section p {
    font-size: 16px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.9);
}

.waitlist-benefits {
    list-style: none;
    padding: 0;
    margin: 24px auto;
    max-width: 600px;
    text-align: left;
}

.waitlist-benefits li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    color: rgba(255, 255, 255, 0.95);
    font-size: 15px;
    line-height: 1.6;
}

.waitlist-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold-primary);
    font-size: 20px;
    font-weight: bold;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 48px;
}

.faq-category {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.faq-category h3 {
    font-size: 24px;
    margin-bottom: 24px;
    color: var(--navy-primary);
    border-bottom: 2px solid var(--gold-primary);
    padding-bottom: 12px;
}

.faq-item {
    margin-bottom: 24px;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item h4 {
    font-size: 17px;
    margin-bottom: 8px;
    color: var(--navy-primary);
    font-weight: 600;
}

.faq-item p {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.7;
}

/* Final CTA Section */
.final-cta-section {
    padding: 80px 0;
    background: white;
}

.final-cta-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cta-header {
    text-align: center;
    margin-bottom: 48px;
}

.cta-header h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--navy-primary);
}

.cta-subtitle {
    font-size: 18px;
    color: var(--gray-700);
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
}

.cta-options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 48px;
}

.cta-option-card {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 16px;
    border: 2px solid #e0e0e0;
    position: relative;
    transition: all 0.3s ease;
}

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

.cta-option-card.primary {
    border: 3px solid var(--gold-primary);
    background: white;
}

.cta-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-primary);
    color: var(--navy-primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.cta-icon {
    font-size: 48px;
    text-align: center;
    margin-bottom: 16px;
}

.cta-option-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--navy-primary);
    text-align: center;
}

.cta-option-card > p {
    font-size: 16px;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 24px;
    text-align: center;
}

.cta-benefits {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.cta-benefits li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: var(--gray-700);
    font-size: 15px;
    line-height: 1.6;
}

.cta-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold-primary);
    font-size: 18px;
    font-weight: bold;
}

.cta-option-card .btn {
    width: 100%;
    justify-content: center;
    margin-top: 24px;
}

.what-to-expect {
    background: #f8f9fa;
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 32px;
}

.what-to-expect h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--navy-primary);
}

.what-to-expect ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 800px;
    margin: 0 auto;
}

.what-to-expect li {
    color: var(--gray-700);
    font-size: 15px;
    text-align: left;
}

.final-tagline {
    text-align: center;
    font-size: 18px;
    color: var(--gray-600);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .comparison-box,
    .accreditation-requirements,
    .token-types,
    .token-features,
    .appreciation-mechanisms,
    .qualification-options,
    .transparency-features,
    .property-details-grid,
    .pipeline-grid,
    .faq-grid,
    .cta-options-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .hip-hero {
        padding: 80px 0 60px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .trust-badges-top {
        flex-direction: column;
        align-items: center;
    }
    
    .step-card,
    .token-detail-section,
    .requirement-section,
    .regulatory-pillar,
    .featured-property,
    .faq-category,
    .cta-option-card {
        padding: 24px;
    }
    
    .what-to-expect ul {
        grid-template-columns: 1fr;
    }
}
