/* ============================================
   FEATURES PAGE STYLES
   OWANLY - Owan Language Learning Platform
   ============================================ */

/* ============================================
   SECTION 1: HERO
   ============================================ */
.features-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 1.5rem 5rem;
    background: linear-gradient(135deg, var(--apple-emerald) 0%, var(--apple-emerald-light) 100%);
    overflow: hidden;
}

.features-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    background: rgba(151, 241, 56, 0.15);
    color: var(--apple-green);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.features-hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.features-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background: var(--white);
    color: var(--apple-emerald);
}

.btn-white:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

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

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-xlarge {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

.features-hero-bg {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2397F138' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

/* ============================================
   FEATURE SECTIONS - BASE
   ============================================ */
.feature-section {
    padding: 5rem 1.5rem;
}

.feature-section-alt {
    background: var(--gray-100);
}

.feature-section-dark {
    background: linear-gradient(135deg, var(--apple-emerald) 0%, var(--apple-emerald-light) 100%);
    text-align: center;
}

.section-container {
    max-width: var(--container-max);
    margin: 0 auto;
}

/* Feature Split Layout */
.feature-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-split-reverse {
    direction: rtl;
}

.feature-split-reverse > * {
    direction: ltr;
}

/* Feature Centered Layout */
.feature-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.feature-badge {
    display: inline-block;
    background: rgba(10, 42, 18, 0.08);
    color: var(--apple-emerald);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.feature-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.15;
    margin-bottom: 1rem;
}

.feature-title-light {
    color: var(--white);
}

.feature-lead {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.feature-lead-light {
    color: rgba(255, 255, 255, 0.8);
}

.feature-text {
    color: var(--gray-600);
    margin-top: 1rem;
}

/* ============================================
   PHONE MOCKUPS
   ============================================ */
.feature-phone {
    display: flex;
    justify-content: center;
}

.phone-frame {
    width: 280px;
    background: var(--gray-900);
    border-radius: 36px;
    padding: 12px;
    box-shadow:
        0 50px 100px -20px rgba(0, 0, 0, 0.25),
        0 30px 60px -30px rgba(0, 0, 0, 0.3);
}

.phone-screen {
    background: var(--white);
    border-radius: 28px;
    padding: 1.5rem;
    min-height: 420px;
}

.phone-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.phone-category {
    background: var(--apple-emerald);
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.phone-progress {
    font-size: 0.875rem;
    color: var(--gray-500);
    font-weight: 500;
}

.word-display {
    text-align: center;
    margin-bottom: 2rem;
}

.word-owan-large {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--apple-emerald);
    margin-bottom: 0.5rem;
}

.word-english-large {
    display: block;
    font-size: 1.25rem;
    color: var(--gray-500);
}

.audio-btn-large {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem;
    background: var(--apple-green);
    color: var(--apple-emerald);
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    margin-bottom: 1.5rem;
}

.audio-btn-large:hover {
    background: var(--apple-green-dark);
    transform: scale(1.02);
}

.audio-btn-small {
    padding: 0.5rem;
    background: rgba(151, 241, 56, 0.2);
    color: var(--apple-emerald);
    border: none;
    border-radius: 50%;
    cursor: pointer;
}

.phone-nav-btns {
    display: flex;
    gap: 0.75rem;
}

.prev-btn, .next-btn {
    flex: 1;
    padding: 0.75rem;
    border: 2px solid var(--gray-200);
    background: transparent;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.prev-btn:hover, .next-btn:hover {
    border-color: var(--apple-emerald);
    color: var(--apple-emerald);
}

/* ============================================
   SECTION 2: VOCABULARY
   ============================================ */
.category-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.cat-tag {
    background: rgba(151, 241, 56, 0.15);
    color: var(--apple-emerald);
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 500;
}

.feature-checks {
    list-style: none;
    margin-top: 1.5rem;
}

.feature-checks li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--gray-700);
}

.feature-checks i {
    color: var(--apple-green-dark);
    font-size: 1.25rem;
}

/* ============================================
   SECTION 3: ALPHABET
   ============================================ */
.alphabet-showcase {
    margin-bottom: 3rem;
}

.alphabet-row {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.letter-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    width: 100px;
    text-align: center;
    transition: all var(--transition-fast);
}

.letter-card:hover {
    border-color: var(--apple-green);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(151, 241, 56, 0.15);
}

.letter-digraph {
    border-color: var(--apple-emerald);
    background: rgba(10, 42, 18, 0.03);
}

.letter-char {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--apple-emerald);
    margin-bottom: 0.5rem;
}

.letter-play {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: var(--apple-green);
    color: var(--apple-emerald);
    cursor: pointer;
    margin-bottom: 0.5rem;
    transition: all var(--transition-fast);
}

.letter-play:hover {
    transform: scale(1.1);
}

.letter-type {
    font-size: 0.7rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.alphabet-breakdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.breakdown-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
}

.breakdown-count {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--apple-emerald);
}

.breakdown-label {
    display: block;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.25rem;
}

.breakdown-list {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.alphabet-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(245, 166, 35, 0.1);
    color: var(--gray-700);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    font-size: 0.9rem;
}

.alphabet-note i {
    color: var(--gold);
}

/* ============================================
   SECTION 4: GREETINGS
   ============================================ */
.greetings-list {
    margin-top: 1.5rem;
}

.greeting-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.greeting-owan {
    font-weight: 700;
    color: var(--apple-emerald);
    min-width: 120px;
}

.greeting-dots {
    flex: 1;
    border-bottom: 2px dotted var(--gray-300);
    margin: 0 1rem;
}

.greeting-english {
    color: var(--gray-600);
}

.phone-greetings {
    background: linear-gradient(180deg, var(--apple-emerald) 0%, var(--apple-emerald-light) 100%);
}

.greeting-card-display {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.greeting-label {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.greeting-word {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--apple-emerald);
    margin-bottom: 1rem;
}

.greeting-secondary {
    background: rgba(255, 255, 255, 0.9);
}

.greeting-secondary .greeting-word {
    font-size: 1.25rem;
}

/* ============================================
   SECTION 5: NAME ORACLE
   ============================================ */
.oracle-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
}

.name-search-demo {
    max-width: 500px;
    margin: 0 auto 3rem;
}

.search-box-demo {
    display: flex;
    align-items: center;
    background: var(--white);
    border-radius: var(--radius-full);
    padding: 0.5rem 0.5rem 0.5rem 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.search-box-demo i {
    color: var(--gray-400);
    margin-right: 0.75rem;
}

.search-box-demo input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1rem;
    padding: 0.75rem 0;
}

.search-btn-demo {
    background: var(--apple-green);
    color: var(--apple-emerald);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
}

.name-cards-row {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.name-card-feature {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 1.5rem 2rem;
    text-align: center;
    min-width: 180px;
}

.name-card-feature h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.name-card-feature p {
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

.oracle-uses {
    margin-bottom: 2rem;
}

.oracle-uses-title {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.oracle-uses-list {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.oracle-uses-list span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
}

.oracle-uses-list i {
    color: var(--apple-green);
}

.btn-lime {
    background: var(--apple-green);
    color: var(--apple-emerald);
}

.btn-lime:hover {
    background: var(--apple-green-dark);
    transform: translateY(-2px);
}

/* ============================================
   SECTION 6: GAMIFIED LEARNING
   ============================================ */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.game-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-fast);
}

.game-card:hover {
    border-color: var(--apple-green);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.game-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.game-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.game-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ============================================
   SECTION 7: VILLAGE BUILDING
   ============================================ */
.village-progression {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-xl);
}

.village-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
}

.village-emoji {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.village-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
}

.village-final .village-emoji {
    font-size: 3rem;
}

.village-final .village-name {
    color: var(--apple-emerald);
    font-weight: 700;
}

.village-arrow {
    color: var(--gray-400);
    font-size: 1.25rem;
}

.village-info {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.village-features {
    list-style: none;
    display: inline-block;
    text-align: left;
    margin-bottom: 1.5rem;
}

.village-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--gray-700);
}

.village-features i {
    color: var(--apple-green-dark);
}

.village-tagline {
    font-style: italic;
    color: var(--gray-600);
}

/* ============================================
   SECTION 8: REWARDS & RANKINGS
   ============================================ */
.rewards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.reward-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.reward-header {
    background: var(--apple-emerald);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reward-icon {
    font-size: 2rem;
}

.reward-header h3 {
    color: var(--white);
    font-size: 1.25rem;
}

.reward-body {
    padding: 1.5rem;
}

.reward-subtitle {
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
    margin-top: 1rem;
}

.reward-subtitle:first-child {
    margin-top: 0;
}

.reward-body ul {
    list-style: none;
    margin-left: 1rem;
}

.reward-body ul li {
    padding: 0.25rem 0;
    color: var(--gray-600);
    position: relative;
}

.reward-body ul li::before {
    content: "•";
    color: var(--apple-green-dark);
    position: absolute;
    left: -1rem;
}

.reward-note {
    font-size: 0.85rem;
    color: var(--gray-500);
    font-style: italic;
    margin-bottom: 1rem;
}

.rank-list {
    list-style: none;
    counter-reset: rank;
}

.rank-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--gray-700);
}

.rank-num {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--apple-green);
    color: var(--apple-emerald);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
}

.leaderboard-preview {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.leaderboard-preview h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.leaderboard-preview h3 i {
    color: var(--gold);
}

.leaderboard-subtitle {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.leaderboard-list {
    text-align: left;
}

.leaderboard-item {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    border-bottom: 1px solid var(--gray-100);
}

.leaderboard-item:last-child {
    border-bottom: none;
}

.lb-rank {
    font-size: 1.25rem;
    margin-right: 0.75rem;
}

.lb-name {
    flex: 1;
    font-weight: 600;
    color: var(--gray-800);
}

.lb-score {
    color: var(--gray-500);
    font-size: 0.9rem;
}

/* ============================================
   SECTION 9: BADGES
   ============================================ */
.badges-showcase {
    max-width: 800px;
    margin: 0 auto;
}

.badge-row {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.badge-item {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1rem 1.25rem;
    text-align: center;
    min-width: 100px;
    transition: all var(--transition-fast);
}

.badge-item:hover {
    border-color: var(--apple-green);
    transform: scale(1.05);
}

.badge-emoji {
    display: block;
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.badge-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-700);
}

/* ============================================
   SECTION 10: CULTURE
   ============================================ */
.culture-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.culture-card-feature {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    text-align: center;
    transition: all var(--transition-fast);
}

.culture-card-feature:hover {
    border-color: var(--apple-green);
    transform: translateY(-4px);
}

.culture-card-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.culture-card-feature h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.culture-card-feature p {
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* ============================================
   SECTION 11: COMMUNITY DICTIONARY
   ============================================ */
.dict-stats-feature {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.dict-stat-item-feature {
    text-align: center;
}

.dict-stat-num {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--apple-emerald);
}

.dict-stat-label {
    font-size: 0.9rem;
    color: var(--gray-600);
}

.dict-features-list {
    list-style: none;
    max-width: 400px;
    margin: 0 auto 2rem;
}

.dict-features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--gray-700);
}

.dict-features-list i {
    color: var(--apple-green-dark);
    font-size: 1.25rem;
}

.dict-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-secondary {
    background: var(--white);
    color: var(--gray-700);
    border: 2px solid var(--gray-300);
}

.btn-secondary:hover {
    border-color: var(--apple-emerald);
    color: var(--apple-emerald);
}

/* ============================================
   SECTION 12: CROSS-PLATFORM
   ============================================ */
.platforms-display {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.platform-item {
    text-align: center;
}

.platform-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 0.5rem;
}

.platform-name {
    font-weight: 600;
    color: var(--gray-700);
}

.platform-features {
    list-style: none;
    max-width: 400px;
    margin: 0 auto 2rem;
}

.platform-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--gray-700);
}

.platform-features i {
    color: var(--apple-green-dark);
    font-size: 1.25rem;
}

.store-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gray-900);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
}

.store-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.store-btn i {
    font-size: 1.75rem;
}

.store-text {
    text-align: left;
}

.store-small {
    display: block;
    font-size: 0.65rem;
    opacity: 0.8;
}

.store-large {
    display: block;
    font-size: 1rem;
    font-weight: 600;
}

.store-btn-web {
    background: var(--apple-emerald);
}

/* ============================================
   SECTION 13: PRICING
   ============================================ */
.pricing-table {
    max-width: 700px;
    margin: 0 auto 2rem;
    overflow-x: auto;
}

.pricing-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.pricing-table thead {
    background: var(--apple-emerald);
    color: var(--white);
}

.pricing-table th {
    padding: 1.25rem 1rem;
    font-weight: 600;
    text-align: center;
}

.pricing-table th:first-child {
    text-align: left;
    padding-left: 1.5rem;
}

.pricing-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--gray-100);
    text-align: center;
}

.pricing-table td:first-child {
    text-align: left;
    padding-left: 1.5rem;
    font-weight: 500;
    color: var(--gray-700);
}

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

.pricing-table .pro-feature {
    background: rgba(151, 241, 56, 0.05);
}

.check-yes {
    color: var(--apple-green-dark);
    font-size: 1.25rem;
}

.check-no {
    color: var(--gray-300);
    font-size: 1.25rem;
}

.pricing-note {
    text-align: center;
    color: var(--gray-600);
    font-size: 0.95rem;
}

.pricing-note strong {
    color: var(--apple-emerald);
}

/* ============================================
   SECTION 14: FINAL CTA
   ============================================ */
.final-cta {
    position: relative;
    padding: 6rem 1.5rem;
    background: linear-gradient(135deg, var(--apple-emerald) 0%, var(--apple-emerald-light) 100%);
    text-align: center;
    overflow: hidden;
}

.final-cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.final-cta h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.final-cta-stats {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.final-proverb {
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    color: var(--white);
    font-style: italic;
    font-size: 1.125rem;
    border: none;
}

.final-proverb cite {
    display: block;
    margin-top: 0.75rem;
    font-style: normal;
    font-size: 0.9rem;
    color: var(--apple-green);
}

.final-cta-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(151, 241, 56, 0.1);
}

.cta-shape-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -100px;
}

.cta-shape-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -100px;
}

.cta-shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 20%;
    transform: translateY(-50%);
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 900px) {
    .feature-split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .feature-split-reverse {
        direction: ltr;
    }

    .feature-phone {
        order: -1;
    }

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

@media (max-width: 768px) {
    .features-hero {
        min-height: 50vh;
        padding: 7rem 1rem 4rem;
    }

    .features-hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-large {
        width: 100%;
        max-width: 300px;
    }

    .feature-section {
        padding: 3.5rem 1rem;
    }

    .phone-frame {
        width: 250px;
    }

    .alphabet-row {
        gap: 0.5rem;
    }

    .letter-card {
        width: 70px;
        padding: 1rem;
    }

    .letter-char {
        font-size: 1.5rem;
    }

    .village-progression {
        flex-direction: column;
        gap: 0.25rem;
    }

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

    .name-cards-row {
        flex-direction: column;
        align-items: center;
    }

    .oracle-uses-list {
        flex-direction: column;
        gap: 1rem;
    }

    .platforms-display {
        gap: 2rem;
    }

    .store-buttons {
        flex-direction: column;
        align-items: center;
    }

    .store-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }

    .pricing-table {
        margin: 0 -1rem 2rem;
        width: calc(100% + 2rem);
        border-radius: 0;
    }

    .pricing-table table {
        border-radius: 0;
    }
}

@media (max-width: 480px) {
    .feature-title {
        font-size: 1.75rem;
    }

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

    .badge-row {
        gap: 0.5rem;
    }

    .badge-item {
        padding: 0.75rem;
        min-width: 80px;
    }

    .badge-emoji {
        font-size: 1.5rem;
    }

    .badge-name {
        font-size: 0.65rem;
    }

    .dict-stats-feature {
        gap: 2rem;
    }

    .dict-stat-num {
        font-size: 2.25rem;
    }
}
