/* ========================================
   SURF CENTER INVESTORS CLUB - CSS
   Estilos para as novas seções
   ======================================== */

/* ----------------------------------------
   HERO UPDATES
   ---------------------------------------- */
.investors-club-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 300;
    letter-spacing: 0.3em;
    display: block;
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-date-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 1rem 0;
}

.hero-date-badge i {
    color: var(--primary-color, #00d4ff);
}

/* ----------------------------------------
   PROPÓSITO (purpose.php)
   ---------------------------------------- */
.purpose-premium {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #0a1628 0%, #0d1f35 100%);
    overflow: hidden;
}

.purpose-premium-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.purpose-premium-header {
    text-align: center;
    margin-bottom: 3rem;
}

.purpose-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 212, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--primary-color, #00d4ff);
    margin-bottom: 1rem;
}

.purpose-intro {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 2rem;
}

.purpose-quote-card {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 212, 255, 0.05) 100%);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.purpose-quote-card .quote-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.3), transparent);
    border-radius: 20px;
    z-index: -1;
    filter: blur(20px);
    opacity: 0.5;
}

.purpose-quote-card .quote-icon {
    font-size: 2rem;
    color: var(--primary-color, #00d4ff);
    margin-bottom: 1rem;
}

.purpose-quote-card blockquote {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    font-style: italic;
    margin: 0;
}

.purpose-description {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.purpose-category-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    max-width: 900px;
    margin: 0 auto 2rem;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.category-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color, #00d4ff), #0088cc);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
}

.category-header h3 {
    font-size: 1.3rem;
    color: #fff;
    margin: 0;
}

.category-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.category-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 10px;
}

.feature-check {
    width: 24px;
    height: 24px;
    background: var(--primary-color, #00d4ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: #0a1628;
    flex-shrink: 0;
}

.purpose-cta {
    text-align: center;
    margin-top: 2rem;
}

/* ----------------------------------------
   TECNOLOGIA (technology-new.php)
   ---------------------------------------- */
.technology-premium {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #0d1f35 0%, #0a1628 100%);
    overflow: hidden;
}

.technology-premium-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.technology-premium-header {
    text-align: center;
    margin-bottom: 3rem;
}

.technology-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 212, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--primary-color, #00d4ff);
    margin-bottom: 1rem;
}

.technology-intro {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.technology-specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto 3rem;
}

@media (max-width: 768px) {
    .technology-specs-grid {
        grid-template-columns: 1fr;
    }
}

.spec-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.spec-card:hover,
.spec-card.featured {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-5px);
}

.spec-icon {
    font-size: 2rem;
    color: var(--primary-color, #00d4ff);
    margin-bottom: 1rem;
}

.spec-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.spec-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.technology-patents-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 212, 255, 0.05) 100%);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem 2rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.patents-icon {
    font-size: 2.5rem;
    color: var(--primary-color, #00d4ff);
}

.patents-content h4 {
    font-size: 1.2rem;
    color: #fff;
    margin: 0 0 0.5rem;
}

.patents-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.technology-gallery {
    margin-bottom: 3rem;
}

.tech-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    border-radius: 15px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .tech-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.tech-gallery-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tech-gallery-grid img:hover {
    transform: scale(1.05);
}

.technology-features-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.tech-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.tech-feature-item i {
    color: var(--primary-color, #00d4ff);
}

/* ----------------------------------------
   ESG (esg.php)
   ---------------------------------------- */
.esg-premium {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #0a1628 0%, #0d1f35 100%);
    overflow: hidden;
}

.esg-premium-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.esg-premium-header {
    text-align: center;
    margin-bottom: 3rem;
}

.esg-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 212, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--primary-color, #00d4ff);
    margin-bottom: 1rem;
}

.esg-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.esg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .esg-grid {
        grid-template-columns: 1fr;
    }
}

.esg-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.esg-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.3);
}

.esg-card.social {
    border-top: 3px solid #ff6b6b;
}

.esg-card.environmental {
    border-top: 3px solid #51cf66;
}

.esg-card.governance {
    border-top: 3px solid #339af0;
}

.esg-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.esg-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
}

.esg-card.social .esg-icon {
    background: linear-gradient(135deg, #ff6b6b, #ee5a5a);
}

.esg-card.environmental .esg-icon {
    background: linear-gradient(135deg, #51cf66, #40c057);
}

.esg-card.governance .esg-icon {
    background: linear-gradient(135deg, #339af0, #228be6);
}

.esg-card-header h3 {
    font-size: 1.3rem;
    color: #fff;
    margin: 0;
}

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

.esg-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

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

.esg-list li i {
    color: var(--primary-color, #00d4ff);
    margin-top: 0.2rem;
}

/* ----------------------------------------
   INVESTMENT OFFER (investment-offer.php)
   ---------------------------------------- */
.investment-offer-premium {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #0d1f35 0%, #0a1628 100%);
    overflow: hidden;
}

.investment-offer-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 70%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.investment-offer-header {
    text-align: center;
    margin-bottom: 3rem;
}

.investment-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 212, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--primary-color, #00d4ff);
    margin-bottom: 1rem;
}

.offer-structure-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 212, 255, 0.05) 100%);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.structure-icon {
    font-size: 3rem;
    color: var(--primary-color, #00d4ff);
}

.structure-content h3 {
    font-size: 1.2rem;
    color: #fff;
    margin: 0 0 0.5rem;
}

.structure-main {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.financial-conditions-section {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.financial-conditions-section h3 {
    text-align: center;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 2rem;
}

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

@media (max-width: 768px) {
    .conditions-grid {
        grid-template-columns: 1fr;
    }
}

.condition-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.condition-card.featured {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 212, 255, 0.05) 100%);
    border-color: rgba(0, 212, 255, 0.3);
}

.condition-tag {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color, #00d4ff);
    color: #0a1628;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
}

.condition-icon {
    font-size: 2.5rem;
    color: var(--primary-color, #00d4ff);
    margin-bottom: 1rem;
}

.condition-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.condition-type {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.condition-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.condition-breakdown {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

.breakdown-label {
    color: rgba(255, 255, 255, 0.6);
}

.breakdown-value {
    color: #fff;
    font-weight: 600;
}

.important-notice-box {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 15px;
    padding: 1.5rem 2rem;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.notice-icon {
    font-size: 2rem;
    color: #ffc107;
}

.notice-content h4 {
    font-size: 1rem;
    color: #ffc107;
    margin: 0 0 0.5rem;
}

.notice-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.general-conditions-section {
    max-width: 700px;
    margin: 0 auto 2rem;
}

.general-conditions-section h3 {
    text-align: center;
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.conditions-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.condition-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.condition-item i {
    color: var(--primary-color, #00d4ff);
}

.condition-item.deadline {
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
}

.condition-item.deadline i {
    color: #ff6b6b;
}

.investment-offer-cta {
    text-align: center;
}

/* ----------------------------------------
   VALUATION THESIS (valuation-thesis.php)
   ---------------------------------------- */
.valuation-thesis-premium {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #0a1628 0%, #0d1f35 100%);
    overflow: hidden;
}

.valuation-thesis-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 50%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.valuation-thesis-header {
    text-align: center;
    margin-bottom: 3rem;
}

.valuation-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 212, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--primary-color, #00d4ff);
    margin-bottom: 1rem;
}

.valuation-entry-section {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.valuation-entry-section h3 {
    text-align: center;
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 2rem;
}

.valuation-comparison-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.valuation-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    min-width: 200px;
}

.valuation-card.investor {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 212, 255, 0.05) 100%);
    border-color: rgba(0, 212, 255, 0.3);
}

.valuation-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
}

.valuation-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
}

.valuation-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.5rem;
}

.valuation-arrow {
    font-size: 1.5rem;
    color: var(--primary-color, #00d4ff);
}

.implicit-valuation-box {
    text-align: center;
    margin-top: 2rem;
}

.valuation-highlight {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(81, 207, 102, 0.1) 0%, rgba(81, 207, 102, 0.05) 100%);
    border: 1px solid rgba(81, 207, 102, 0.3);
    border-radius: 50px;
    padding: 1rem 2rem;
}

.highlight-label {
    color: rgba(255, 255, 255, 0.8);
}

.highlight-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #51cf66;
}

.projected-price-section {
    max-width: 600px;
    margin: 0 auto 3rem;
}

.projected-card {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(0, 212, 255, 0.05) 100%);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
}

.projected-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.3), transparent);
    border-radius: 20px;
    z-index: -1;
    filter: blur(20px);
    opacity: 0.5;
}

.projected-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--primary-color, #00d4ff);
    margin-bottom: 1rem;
}

.projected-value {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
}

.projected-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
}

.valuation-factors-section {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.valuation-factors-section h3 {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

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

@media (max-width: 768px) {
    .factors-grid {
        grid-template-columns: 1fr;
    }
}

.factor-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1rem;
}

.factor-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color, #00d4ff);
    flex-shrink: 0;
}

.factor-card span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.valuation-chart-section {
    max-width: 700px;
    margin: 0 auto 3rem;
}

.valuation-chart-section h3 {
    text-align: center;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 2rem;
}

.chart-placeholder {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
}

.chart-bar-container {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    height: 250px;
    margin-bottom: 1rem;
}

.chart-bar {
    width: 100px;
    background: linear-gradient(180deg, rgba(0, 212, 255, 0.3) 0%, rgba(0, 212, 255, 0.1) 100%);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 10px 10px 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 1rem;
    position: relative;
}

.chart-bar.featured {
    background: linear-gradient(180deg, rgba(0, 212, 255, 0.5) 0%, rgba(0, 212, 255, 0.2) 100%);
    border-color: var(--primary-color, #00d4ff);
}

.bar-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

.bar-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    margin-top: 0.5rem;
}

.chart-timeline {
    display: flex;
    justify-content: space-around;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.chart-timeline span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.valuation-conclusion-box {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 212, 255, 0.05) 100%);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.valuation-conclusion-box .conclusion-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.3), transparent);
    border-radius: 20px;
    z-index: -1;
    filter: blur(20px);
    opacity: 0.5;
}

.valuation-conclusion-box blockquote {
    font-size: 1.3rem;
    font-weight: 500;
    color: #fff;
    font-style: italic;
    margin: 0;
}

/* ----------------------------------------
   LIQUIDITY POOL (liquidity-pool.php)
   ---------------------------------------- */
.liquidity-pool-premium {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #0d1f35 0%, #0a1628 100%);
    overflow: hidden;
}

.liquidity-pool-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.liquidity-pool-header {
    text-align: center;
    margin-bottom: 3rem;
}

.liquidity-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 212, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--primary-color, #00d4ff);
    margin-bottom: 1rem;
}

.liquidity-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.new-model-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(81, 207, 102, 0.1) 0%, rgba(81, 207, 102, 0.05) 100%);
    border: 1px solid rgba(81, 207, 102, 0.3);
    border-radius: 20px;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.model-icon {
    font-size: 3rem;
    color: #51cf66;
}

.model-content h3 {
    font-size: 1.2rem;
    color: #51cf66;
    margin: 0 0 0.5rem;
}

.model-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.pool-composition-section {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.pool-composition-section h3 {
    text-align: center;
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 2rem;
}

.pool-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.pool-circle {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(0, 212, 255, 0.1) 100%);
    border: 3px solid var(--primary-color, #00d4ff);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.pool-total {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
}

.pool-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.pool-breakdown {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.pool-part {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem 2rem;
    text-align: center;
    min-width: 200px;
}

.part-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color, #00d4ff);
}

.part-label {
    font-size: 0.9rem;
    color: #fff;
    margin: 0.5rem 0;
}

.part-detail {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.pool-divider {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.3);
}

.anticipation-phase-section {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.phase-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.phase-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color, #00d4ff), #0088cc);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
}

.phase-title h3 {
    font-size: 1.3rem;
    color: #fff;
    margin: 0;
}

.phase-date {
    font-size: 0.85rem;
    color: var(--primary-color, #00d4ff);
}

.phase-intro {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.how-it-works-section {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.how-it-works-section h3 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 2rem;
}

.steps-timeline {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color, #00d4ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: #0a1628;
    flex-shrink: 0;
}

.step-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.quota-share-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 212, 255, 0.05) 100%);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem 2rem;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.share-icon {
    font-size: 2.5rem;
    color: var(--primary-color, #00d4ff);
}

.share-content p {
    margin: 0;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.deductions-section {
    max-width: 700px;
    margin: 0 auto 2rem;
}

.deductions-section h3 {
    text-align: center;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.deduction-box {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.deduction-icon {
    font-size: 2rem;
    color: #ff6b6b;
}

.deduction-value {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
}

.deduction-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.25rem;
}

.distribution-note {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 10px;
}

.distribution-note i {
    color: var(--primary-color, #00d4ff);
}

.distribution-note p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.liquidity-pool-cta {
    text-align: center;
}

/* ----------------------------------------
   CASHFLOW EXAMPLE (cashflow-example.php)
   ---------------------------------------- */
.cashflow-example-premium {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #0a1628 0%, #0d1f35 100%);
    overflow: hidden;
}

.cashflow-example-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 70%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.cashflow-example-header {
    text-align: center;
    margin-bottom: 3rem;
}

.cashflow-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 212, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--primary-color, #00d4ff);
    margin-bottom: 1rem;
}

.premises-section {
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.premises-section h3 {
    text-align: center;
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 2rem;
}

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

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

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

.premise-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
}

.premise-icon {
    font-size: 1.5rem;
    color: var(--primary-color, #00d4ff);
    margin-bottom: 1rem;
}

.premise-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.premise-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

.premise-desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.5rem;
}

.practical-reading-section {
    max-width: 700px;
    margin: 0 auto 3rem;
}

.reading-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.reading-icon {
    font-size: 1.5rem;
    color: var(--primary-color, #00d4ff);
}

.reading-header h3 {
    font-size: 1.2rem;
    color: #fff;
    margin: 0;
}

.reading-points {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.reading-point {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
}

.point-icon {
    width: 30px;
    height: 30px;
    background: var(--primary-color, #00d4ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: #0a1628;
    flex-shrink: 0;
}

.reading-point p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

.estimated-return-section {
    max-width: 600px;
    margin: 0 auto 3rem;
}

.return-card {
    position: relative;
    background: linear-gradient(135deg, rgba(81, 207, 102, 0.15) 0%, rgba(81, 207, 102, 0.05) 100%);
    border: 2px solid rgba(81, 207, 102, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
}

.return-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, rgba(81, 207, 102, 0.3), transparent);
    border-radius: 20px;
    z-index: -1;
    filter: blur(20px);
    opacity: 0.5;
}

.return-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: #51cf66;
    margin-bottom: 1rem;
}

.return-range {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.return-min,
.return-max {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
}

.return-separator {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.5);
}

.return-period {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1rem;
}

.disclaimer-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
}

.disclaimer-icon {
    font-size: 1.5rem;
    color: #ffc107;
    flex-shrink: 0;
}

.disclaimer-box p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ----------------------------------------
   GOVERNANCE (governance.php)
   ---------------------------------------- */
.governance-premium {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #0d1f35 0%, #0a1628 100%);
    overflow: hidden;
}

.governance-premium-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.governance-premium-header {
    text-align: center;
    margin-bottom: 3rem;
}

.governance-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 212, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--primary-color, #00d4ff);
    margin-bottom: 1rem;
}

.monthly-report-section {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.report-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.report-icon {
    font-size: 2rem;
    color: var(--primary-color, #00d4ff);
}

.report-header h3 {
    font-size: 1.3rem;
    color: #fff;
    margin: 0;
}

.report-intro {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

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

@media (max-width: 768px) {
    .report-features-grid {
        grid-template-columns: 1fr;
    }
}

.report-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.report-feature .feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color, #00d4ff);
    flex-shrink: 0;
}

.report-feature span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.governance-partners-section {
    max-width: 600px;
    margin: 0 auto 3rem;
}

.governance-partners-section h3 {
    text-align: center;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 2rem;
}

.partners-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.governance-partner-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem 2rem;
    text-align: center;
    min-width: 180px;
}

.partner-logo {
    height: 50px;
    margin-bottom: 1rem;
}

.partner-logo img {
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.partner-role {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.governance-disclaimer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem 2rem;
    max-width: 700px;
    margin: 0 auto;
}

.governance-disclaimer .disclaimer-icon {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.5);
}

.governance-disclaimer p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ----------------------------------------
   INVESTORS CLUB (investors-club.php)
   ---------------------------------------- */
.investors-club-premium {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #0a1628 0%, #0d1f35 100%);
    overflow: hidden;
}

.investors-club-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.investors-club-header {
    text-align: center;
    margin-bottom: 3rem;
}

.investors-club-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 212, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--primary-color, #00d4ff);
    margin-bottom: 1rem;
}

.club-intro-box {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 212, 255, 0.05) 100%);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.club-intro-box .intro-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.3), transparent);
    border-radius: 20px;
    z-index: -1;
    filter: blur(20px);
    opacity: 0.5;
}

.club-intro-box p {
    margin: 0;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.members-benefits-section {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.members-benefits-section h3 {
    text-align: center;
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 2rem;
}

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

@media (max-width: 992px) {
    .member-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .member-benefits-grid {
        grid-template-columns: 1fr;
    }
}

.member-benefit-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.member-benefit-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.3);
}

.member-benefit-card .benefit-icon {
    font-size: 1.5rem;
    color: var(--primary-color, #00d4ff);
    margin-bottom: 1rem;
}

.member-benefit-card span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.platform-objectives-section {
    max-width: 900px;
    margin: 0 auto;
}

.platform-objectives-section h3 {
    text-align: center;
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 2rem;
}

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

@media (max-width: 768px) {
    .objectives-grid {
        grid-template-columns: 1fr;
    }
}

.objective-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
}

.objective-item.highlight {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 212, 255, 0.05) 100%);
    border-color: rgba(0, 212, 255, 0.3);
}

.objective-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color, #00d4ff);
    opacity: 0.5;
    line-height: 1;
}

.objective-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* ----------------------------------------
   EXCLUSIVE BENEFITS (exclusive-benefits.php)
   ---------------------------------------- */
.exclusive-benefits-premium {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #0d1f35 0%, #0a1628 100%);
    overflow: hidden;
}

.exclusive-benefits-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 70%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.exclusive-benefits-header {
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 212, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--primary-color, #00d4ff);
    margin-bottom: 1rem;
}

.benefits-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.benefits-premium-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1200px) {
    .benefits-premium-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .benefits-premium-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .benefits-premium-grid {
        grid-template-columns: 1fr;
    }
}

.benefit-premium-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-premium-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.3);
}

.benefit-premium-card.featured {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 212, 255, 0.05) 100%);
    border-color: rgba(0, 212, 255, 0.3);
}

.benefit-icon-wrap {
    width: 60px;
    height: 60px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color, #00d4ff);
    margin: 0 auto 1rem;
}

.benefit-premium-card h4 {
    font-size: 1rem;
    color: #fff;
    margin: 0 0 0.5rem;
}

.benefit-premium-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* ----------------------------------------
   CLOSING (closing.php)
   ---------------------------------------- */
.closing-premium {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(180deg, #0a1628 0%, #0d1f35 50%, #0a1628 100%);
    overflow: hidden;
}

.closing-premium-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.closing-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.closing-quote-box {
    position: relative;
    margin-bottom: 2rem;
}

.closing-quote-box .quote-glow {
    position: absolute;
    inset: -50px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.15), transparent);
    z-index: -1;
    filter: blur(40px);
}

.closing-quote-box h2 {
    font-size: 2rem;
    color: #fff;
    line-height: 1.4;
}

.closing-statement {
    margin-bottom: 3rem;
}

.closing-statement p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.closing-metrics {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.closing-metric {
    text-align: center;
}

.closing-metric .metric-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color, #00d4ff);
}

.closing-metric .metric-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
}

.closing-cta {
    margin-bottom: 2rem;
}

.btn-closing-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary-color, #00d4ff), #0088cc);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-closing-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.cta-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1rem;
}

.closing-contact {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.closing-contact p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #25d366;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-link:hover {
    color: #128c7e;
}

/* ----------------------------------------
   ADDITIONAL UPDATES
   ---------------------------------------- */

/* SP Financial Section */
.sp-location-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 212, 255, 0.05) 100%);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 50px;
    padding: 1rem 2rem;
    max-width: fit-content;
    margin: 0 auto 2rem;
}

.sp-location-highlight .location-icon {
    font-size: 1.5rem;
    color: var(--primary-color, #00d4ff);
}

.sp-location-highlight p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.sp-numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (max-width: 768px) {
    .sp-numbers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.sp-number-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
}

.sp-number-card.featured {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 212, 255, 0.05) 100%);
    border-color: rgba(0, 212, 255, 0.3);
}

.sp-number-card .number-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.sp-number-card .number-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
}

.sp-financial-section {
    margin: 3rem 0;
}

.sp-financial-section .financial-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.sp-financial-section .financial-icon {
    font-size: 1.5rem;
    color: var(--primary-color, #00d4ff);
}

.sp-financial-section .financial-header h3 {
    font-size: 1.3rem;
    color: #fff;
    margin: 0;
}

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

@media (max-width: 992px) {
    .financial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.financial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
}

.financial-card .financial-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
}

.financial-card .financial-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
}

.financial-card.capex {
    border-top: 3px solid #ff6b6b;
}

.financial-card.vgv {
    border-top: 3px solid #51cf66;
}

.financial-card.permutas {
    border-top: 3px solid #339af0;
}

.financial-card.ebitda {
    border-top: 3px solid #fcc419;
}

.sp-differentials-section {
    margin: 3rem 0;
}

.sp-differentials-section .differentials-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.sp-differentials-section .diff-icon {
    font-size: 1.5rem;
    color: var(--primary-color, #00d4ff);
}

.sp-differentials-section .differentials-header h3 {
    font-size: 1.3rem;
    color: #fff;
    margin: 0;
}

.sp-diff-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 700px;
    margin: 0 auto;
}

.sp-diff-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.sp-diff-item i {
    color: #51cf66;
}

.sp-conclusion-box {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 212, 255, 0.05) 100%);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    max-width: 600px;
    margin: 2rem auto 0;
}

.sp-conclusion-box .conclusion-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.3), transparent);
    border-radius: 15px;
    z-index: -1;
    filter: blur(20px);
    opacity: 0.5;
}

.sp-conclusion-box p {
    margin: 0;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Why Invest Updates */
.invest-reasons-grid.six-items {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 992px) {
    .invest-reasons-grid.six-items {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .invest-reasons-grid.six-items {
        grid-template-columns: 1fr;
    }
}

.invest-reason-card.urgency {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(255, 107, 107, 0.05) 100%);
    border-color: rgba(255, 107, 107, 0.3);
}

.invest-reason-card.urgency .reason-icon-wrap {
    background: rgba(255, 107, 107, 0.2);
}

.invest-reason-card.urgency .reason-icon-wrap i {
    color: #ff6b6b;
}

.why-invest-quote-box {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 212, 255, 0.05) 100%);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    max-width: 700px;
    margin: 3rem auto;
}

.why-invest-quote-box .quote-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.3), transparent);
    border-radius: 20px;
    z-index: -1;
    filter: blur(20px);
    opacity: 0.5;
}

.why-invest-quote-box blockquote {
    font-size: 1.3rem;
    font-weight: 500;
    color: #fff;
    font-style: italic;
    margin: 0;
}

.deadline-premium-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(255, 107, 107, 0.05) 100%);
    border: 2px solid rgba(255, 107, 107, 0.3);
    border-radius: 15px;
    padding: 1.5rem 2rem;
    max-width: 500px;
    margin: 0 auto 2rem;
}

.deadline-icon {
    font-size: 2.5rem;
    color: #ff6b6b;
}

.deadline-content {
    text-align: left;
}

.deadline-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.deadline-date {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.deadline-note {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Button Styles */
.btn-invest-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary-color, #00d4ff), #0088cc);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-invest-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.btn-invest-premium.large {
    font-size: 1.1rem;
    padding: 1.25rem 2.5rem;
}

/* ----------------------------------------
   WHY INVEST SECTION (why-invest.php)
   ---------------------------------------- */
.why-invest-premium {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #0a1628 0%, #0d1f35 100%);
    overflow: hidden;
}

.why-invest-premium-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 30%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.why-invest-premium-header {
    text-align: center;
    margin-bottom: 3rem;
}

.why-invest-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 212, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--primary-color, #00d4ff);
    margin-bottom: 1rem;
}

.why-invest-premium-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #fff;
    margin: 0;
}

.why-invest-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Invest Reasons Grid */
.invest-reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto 2rem;
}

@media (max-width: 992px) {
    .invest-reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .invest-reasons-grid {
        grid-template-columns: 1fr;
    }
}

.invest-reason-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.invest-reason-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.3);
    background: rgba(0, 212, 255, 0.05);
}

.reason-icon-wrap {
    width: 60px;
    height: 60px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.reason-icon-wrap i {
    font-size: 1.5rem;
    color: var(--primary-color, #00d4ff);
}

.invest-reason-card h4 {
    font-size: 1.1rem;
    color: #fff;
    margin: 0 0 0.5rem;
}

.invest-reason-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.5;
}

/* ----------------------------------------
   GRADIENT TEXT - GLOBAL
   ---------------------------------------- */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-color, #00d4ff) 0%, #0088cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ----------------------------------------
   RESPONSIVE ADJUSTMENTS
   ---------------------------------------- */
@media (max-width: 768px) {
    .purpose-premium,
    .technology-premium,
    .esg-premium,
    .investment-offer-premium,
    .valuation-thesis-premium,
    .liquidity-pool-premium,
    .cashflow-example-premium,
    .governance-premium,
    .investors-club-premium,
    .exclusive-benefits-premium,
    .closing-premium,
    .why-invest-premium {
        padding: 70px 0;
    }

    .purpose-quote-card,
    .club-intro-box,
    .valuation-conclusion-box,
    .why-invest-quote-box {
        padding: 2rem;
    }

    .conditions-grid {
        grid-template-columns: 1fr;
    }

    .pool-breakdown {
        flex-direction: column;
    }

    .pool-divider {
        display: none;
    }

    .closing-metrics {
        gap: 2rem;
    }

    .closing-metric .metric-value {
        font-size: 2rem;
    }

    .offer-structure-box,
    .new-model-highlight,
    .quota-share-box,
    .important-notice-box,
    .deduction-box,
    .deadline-premium-box {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .purpose-premium,
    .technology-premium,
    .esg-premium,
    .investment-offer-premium,
    .valuation-thesis-premium,
    .liquidity-pool-premium,
    .cashflow-example-premium,
    .governance-premium,
    .investors-club-premium,
    .exclusive-benefits-premium,
    .closing-premium,
    .why-invest-premium {
        padding: 50px 0;
    }

    .closing-quote-box h2 {
        font-size: 1.5rem;
    }

    .closing-statement p {
        font-size: 1rem;
    }

    .valuation-comparison-grid {
        flex-direction: column;
    }

    .valuation-arrow {
        transform: rotate(90deg);
    }
}
