/* ============================================
   FLASHRIDE - Inner Pages (Premium)
   Matches homepage design language
   ============================================ */

/* Page Layout */
.page-content {
    padding-top: 80px;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Page Hero - Cinematic */
.page-hero {
    position: relative;
    padding: 100px 0 80px;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: var(--primary);
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.08;
    pointer-events: none;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.page-hero .container { position: relative; z-index: 2; }

.page-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 16px 6px 10px;
    background: rgba(255, 85, 0, 0.05);
    border: 1px solid rgba(255, 85, 0, 0.12);
    border-radius: var(--radius-full);
    margin-bottom: 20px;
}

.page-hero-label .dot {
    width: 6px; height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

.page-hero-label span {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
}

.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -2px;
    line-height: 1.1;
}

.page-hero h1 .text-stroke {
    -webkit-text-stroke: 1.5px var(--primary);
    -webkit-text-fill-color: transparent;
}

.page-hero p {
    color: var(--text-300);
    font-size: 1.1rem;
    max-width: 540px;
    line-height: 1.7;
}

/* Section shared */
.inner-section {
    padding: 100px 0;
    position: relative;
}

.inner-section.alt-bg {
    background: var(--dark-800);
}

.inner-section-header {
    margin-bottom: 56px;
}

.inner-section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 12px;
    line-height: 1.15;
}

.inner-section-header p {
    color: var(--text-300);
    font-size: 1rem;
    max-width: 520px;
    line-height: 1.7;
}

.inner-section-header.centered {
    text-align: center;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.inner-section-header.centered p {
    max-width: 100%;
}

/* ============================================
   SERVICES PAGE
   ============================================ */
.sp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
}

.sp-card {
    position: relative;
    background: var(--dark-800);
    border: 1px solid var(--border);
    padding: 48px 36px;
    transition: all 0.5s var(--ease);
    overflow: hidden;
}

.sp-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-hot));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease);
}

.sp-card:hover::before { transform: scaleX(1); }

.sp-card:hover {
    background: rgba(255, 85, 0, 0.02);
    border-color: var(--border-hover);
}

.sp-card:first-child { border-radius: var(--radius-lg) 0 0 0; }
.sp-card:nth-child(2) { border-radius: 0 var(--radius-lg) 0 0; }
.sp-card:nth-child(3) { border-radius: 0 0 0 var(--radius-lg); }
.sp-card:nth-child(4) { border-radius: 0 0 var(--radius-lg) 0; }

.sp-card-num {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 900;
    color: var(--dark-600);
    line-height: 1;
    margin-bottom: 20px;
    transition: color 0.5s;
}

.sp-card:hover .sp-card-num { color: rgba(255, 85, 0, 0.15); }

.sp-icon {
    width: 52px; height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 85, 0, 0.06);
    border: 1px solid rgba(255, 85, 0, 0.1);
    border-radius: var(--radius);
    margin-bottom: 20px;
    color: var(--primary);
    font-size: 1.2rem;
    transition: all 0.4s;
}

.sp-card:hover .sp-icon {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: scale(1.05);
}

.sp-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.sp-card > p {
    font-size: 0.9rem;
    color: var(--text-400);
    line-height: 1.7;
    margin-bottom: 24px;
}

.sp-features { list-style: none; padding: 0; margin: 0; }

.sp-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-300);
    padding: 7px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.sp-features li:last-child { border-bottom: none; }
.sp-features li i { color: var(--primary); font-size: 0.65rem; }

/* Benefits row */
.sp-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.sp-benefit {
    padding: 36px 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}

.sp-benefit::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.4s var(--ease);
}

.sp-benefit:hover::after { transform: scaleX(1); }
.sp-benefit:hover { border-color: var(--border-hover); transform: translateY(-6px); }

.sp-benefit-icon {
    width: 44px; height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 85, 0, 0.06);
    border-radius: var(--radius);
    margin-bottom: 16px;
    color: var(--primary);
    font-size: 1rem;
}

.sp-benefit h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.sp-benefit p { font-size: 0.82rem; color: var(--text-400); line-height: 1.6; }

/* CTA Block */
.sp-cta {
    position: relative;
    text-align: center;
    padding: 80px 48px;
    border: 1px solid rgba(255, 85, 0, 0.12);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.sp-cta::before {
    content: 'RIDE';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: 12rem;
    font-weight: 900;
    color: rgba(255, 85, 0, 0.02);
    pointer-events: none;
    letter-spacing: -6px;
}

.sp-cta h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
}

.sp-cta p { color: var(--text-300); margin-bottom: 32px; position: relative; }

.sp-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    padding: 16px 36px;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s var(--ease);
    position: relative;
}

.sp-cta-btn:hover { transform: translateY(-3px); box-shadow: var(--glow-strong); }

/* ============================================
   ABOUT PAGE
   ============================================ */
.ap-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ap-story-content h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.ap-story-content p {
    font-size: 0.95rem;
    color: var(--text-300);
    line-height: 1.85;
    margin-bottom: 16px;
}

.ap-story-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.ap-story-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.ap-story-image:hover img { transform: scale(1.03); }

.ap-story-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(5,5,8,0.6));
    pointer-events: none;
}

/* Mission */
.ap-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.ap-mission-card {
    padding: 44px 36px;
    background: var(--dark-800);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}

.ap-mission-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 0;
    background: var(--primary);
    transition: height 0.5s var(--ease);
}

.ap-mission-card:hover::before { height: 100%; }
.ap-mission-card:hover { border-color: var(--border-hover); }

.ap-mission-icon {
    width: 52px; height: 52px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255, 85, 0, 0.06);
    border: 1px solid rgba(255, 85, 0, 0.1);
    border-radius: var(--radius);
    margin-bottom: 20px;
    color: var(--primary);
    font-size: 1.2rem;
}

.ap-mission-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.ap-mission-card p { font-size: 0.9rem; color: var(--text-400); line-height: 1.7; }

/* Values */
.ap-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.ap-value-card {
    padding: 36px 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
    transition: all 0.4s var(--ease);
    position: relative;
}

.ap-value-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(255, 85, 0, 0.03), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.ap-value-card:hover::after { opacity: 1; }
.ap-value-card:hover { border-color: var(--border-hover); transform: translateY(-6px); }

.ap-value-icon {
    width: 52px; height: 52px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255, 85, 0, 0.06);
    border: 1px solid rgba(255, 85, 0, 0.08);
    border-radius: var(--radius);
    margin: 0 auto 16px;
    color: var(--primary);
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

.ap-value-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; position: relative; z-index: 1; }
.ap-value-card p { font-size: 0.82rem; color: var(--text-400); line-height: 1.6; position: relative; z-index: 1; }

/* Stats */
.ap-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.ap-stat {
    text-align: center;
    padding: 48px 20px;
    border-right: 1px solid var(--border);
    transition: background 0.3s;
}

.ap-stat:last-child { border-right: none; }
.ap-stat:hover { background: rgba(255, 85, 0, 0.02); }

.ap-stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 6px;
    letter-spacing: -1px;
}

.ap-stat-label {
    font-size: 0.8rem;
    color: var(--text-400);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

/* Vision */
.ap-vision {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.ap-vision h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.ap-vision p {
    font-size: 0.95rem;
    color: var(--text-300);
    line-height: 1.85;
    margin-bottom: 14px;
}

/* ============================================
   PROCESS PAGE
   ============================================ */
.proc-steps {
    position: relative;
    padding-left: 80px;
}

.proc-steps::before {
    content: '';
    position: absolute;
    left: 35px;
    top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary), rgba(255, 85, 0, 0.1));
}

.proc-step {
    position: relative;
    padding: 44px 40px;
    background: var(--dark-800);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
    transition: all 0.4s var(--ease);
}

.proc-step:hover {
    border-color: var(--border-hover);
    transform: translateX(8px);
    box-shadow: var(--glow);
}

.proc-step-marker {
    position: absolute;
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    background: var(--dark-900);
    border: 2px solid var(--primary);
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    box-shadow: 0 0 20px rgba(255, 85, 0, 0.15);
}

.proc-step-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.proc-step-top h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
}

.proc-step-icon {
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255, 85, 0, 0.06);
    border: 1px solid rgba(255, 85, 0, 0.1);
    border-radius: var(--radius);
    color: var(--primary);
    font-size: 1.1rem;
    transition: all 0.4s;
}

.proc-step:hover .proc-step-icon {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.proc-step p {
    font-size: 0.92rem;
    color: var(--text-400);
    line-height: 1.75;
    max-width: 560px;
}

/* Audiences */
.proc-audiences {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.proc-audience {
    padding: 44px 36px;
    background: var(--dark-800);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}

.proc-audience::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 200px; height: 200px;
    background: var(--primary);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0;
    transition: opacity 0.5s;
}

.proc-audience:hover::before { opacity: 0.03; }
.proc-audience:hover { border-color: var(--border-hover); }

.proc-audience-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.proc-audience-header i { color: var(--primary); font-size: 1.2rem; }

.proc-audience-header h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
}

.proc-audience > p {
    font-size: 0.9rem;
    color: var(--text-400);
    line-height: 1.75;
    margin-bottom: 24px;
}

.proc-audience-list { list-style: none; padding: 0; }

.proc-audience-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
    color: var(--text-300);
    padding: 9px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.proc-audience-list li:last-child { border-bottom: none; }
.proc-audience-list li i { color: var(--primary); font-size: 0.65rem; }

/* FAQ */
.faq-section h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: -0.5px;
}

.faq-list { max-width: 740px; margin: 0 auto; }

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 10px;
    overflow: hidden;
    transition: all 0.3s var(--ease);
}

.faq-item:hover { border-color: var(--border-hover); }
.faq-item.active { border-color: rgba(255, 85, 0, 0.2); background: rgba(255, 85, 0, 0.01); }

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 28px;
    background: transparent;
    border: none;
    color: var(--text-100);
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font);
    cursor: pointer;
    text-align: left;
    transition: all 0.3s;
}

.faq-question i {
    color: var(--text-400);
    font-size: 0.7rem;
    transition: all 0.3s;
    min-width: 16px;
}

.faq-item.active .faq-question i { transform: rotate(180deg); color: var(--primary); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease);
}

.faq-item.active .faq-answer { max-height: 250px; }

.faq-answer p {
    padding: 0 28px 24px;
    font-size: 0.9rem;
    color: var(--text-400);
    line-height: 1.75;
}

/* ============================================
   PRICING PAGE
   ============================================ */
.pp-tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pp-tier {
    position: relative;
    background: var(--dark-800);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 44px 32px;
    transition: all 0.5s var(--ease);
    overflow: hidden;
}

.pp-tier::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 200px; height: 200px;
    background: var(--primary);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0;
    transition: opacity 0.5s;
}

.pp-tier:hover::before { opacity: 0.04; }
.pp-tier:hover { border-color: var(--border-hover); transform: translateY(-8px); }

.pp-tier-featured {
    border-color: var(--primary);
    transform: scale(1.03);
}

.pp-tier-featured:hover { transform: scale(1.03) translateY(-8px); }

.pp-tier-badge {
    position: absolute;
    top: 16px; right: 16px;
    background: var(--primary);
    color: #fff;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pp-tier-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
}

.pp-tier-icon {
    width: 56px; height: 56px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255, 85, 0, 0.06);
    border: 1px solid rgba(255, 85, 0, 0.1);
    border-radius: var(--radius);
    margin: 0 auto 16px;
    color: var(--primary);
    font-size: 1.3rem;
}

.pp-tier-header h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.pp-price-amount {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -1px;
}

.pp-price-label {
    display: block;
    font-size: 0.78rem;
    color: var(--text-400);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.pp-tier-features { list-style: none; padding: 0; margin: 0 0 24px; }

.pp-tier-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
    color: var(--text-200);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.pp-tier-features li:last-child { border-bottom: none; }
.pp-tier-features li i { color: var(--primary); font-size: 0.7rem; }

.pp-tier-note {
    font-size: 0.8rem;
    color: var(--text-400);
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

/* Breakdown */
.pp-breakdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.pp-breakdown-item {
    text-align: center;
    padding: 36px 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.4s var(--ease);
}

.pp-breakdown-item:hover { border-color: var(--border-hover); transform: translateY(-4px); }

.pp-breakdown-icon {
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255, 85, 0, 0.06);
    border: 1px solid rgba(255, 85, 0, 0.08);
    border-radius: var(--radius);
    margin: 0 auto 14px;
    color: var(--primary);
    font-size: 1rem;
}

.pp-breakdown-item h4 { font-size: 0.92rem; font-weight: 700; margin-bottom: 8px; }
.pp-breakdown-item p { font-size: 0.82rem; color: var(--text-400); line-height: 1.6; }

/* No Surge */
.pp-nosurge-content {
    position: relative;
    text-align: center;
    padding: 60px 48px;
    border: 1px solid var(--primary);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.pp-nosurge-content::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 85, 0, 0.04), transparent);
}

.pp-nosurge-icon {
    width: 60px; height: 60px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255, 85, 0, 0.1);
    border-radius: 50%;
    margin: 0 auto 24px;
    color: var(--primary);
    font-size: 1.5rem;
    position: relative;
    box-shadow: 0 0 30px rgba(255, 85, 0, 0.15);
}

.pp-nosurge-content h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
}

.pp-nosurge-content p { font-size: 0.95rem; color: var(--text-300); line-height: 1.75; max-width: 580px; margin: 0 auto; position: relative; }

/* Payment */
.pp-payment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pp-payment-card {
    text-align: center;
    padding: 40px 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.4s var(--ease);
}

.pp-payment-card:hover { border-color: var(--border-hover); transform: translateY(-6px); }

.pp-payment-icon {
    width: 56px; height: 56px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255, 85, 0, 0.06);
    border: 1px solid rgba(255, 85, 0, 0.08);
    border-radius: var(--radius);
    margin: 0 auto 18px;
    color: var(--primary);
    font-size: 1.3rem;
}

.pp-payment-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.pp-payment-card p { font-size: 0.85rem; color: var(--text-400); line-height: 1.6; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
}

.contact-page-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cp-card {
    padding: 28px 24px;
    background: var(--dark-800);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.4s var(--ease);
}

.cp-card:hover {
    border-color: var(--border-hover);
    transform: translateX(6px);
}

.cp-icon {
    width: 44px; height: 44px; min-width: 44px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255, 85, 0, 0.06);
    border: 1px solid rgba(255, 85, 0, 0.1);
    border-radius: var(--radius);
    color: var(--primary);
    font-size: 1rem;
}

.cp-card h3 { font-size: 0.92rem; font-weight: 700; margin-bottom: 4px; }
.cp-card p { font-size: 0.85rem; color: var(--text-400); line-height: 1.6; }
.cp-card a { color: var(--text-300); transition: color 0.3s; }
.cp-card a:hover { color: var(--primary); }

/* Form */
.contact-page-form {
    background: var(--dark-800);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 44px;
}

.contact-page-form h2 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 32px;
}

.cpf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cpf-field { margin-bottom: 20px; }

.cpf-field label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-300);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cpf-field input,
.cpf-field select,
.cpf-field textarea {
    width: 100%;
    background: var(--dark-900);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 16px;
    color: var(--text-100);
    font-size: 0.9rem;
    font-family: var(--font);
    transition: all 0.3s var(--ease);
}

.cpf-field input:focus,
.cpf-field select:focus,
.cpf-field textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 85, 0, 0.06);
    outline: none;
}

.cpf-field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%239999B3' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.cpf-field textarea { resize: vertical; min-height: 130px; }

.cpf-submit {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    padding: 16px 36px;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.cpf-submit:hover { transform: translateY(-3px); box-shadow: var(--glow); }

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-content { max-width: 760px; padding-bottom: 100px; }
.legal-content section { margin-bottom: 44px; }

.legal-content h2 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-100);
}

.legal-content p { font-size: 0.92rem; color: var(--text-300); line-height: 1.85; }
.legal-content a { color: var(--primary); }
.legal-content a:hover { opacity: 0.8; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .sp-benefits { grid-template-columns: repeat(2, 1fr); }
    .ap-values-grid { grid-template-columns: repeat(2, 1fr); }
    .pp-breakdown-grid { grid-template-columns: repeat(2, 1fr); }
    .pp-tier-featured { transform: scale(1); }
    .pp-tier-featured:hover { transform: translateY(-8px); }
}

@media (max-width: 768px) {
    .page-content { padding-top: 70px; }
    .page-hero { padding: 60px 0 40px; }
    .page-hero h1 { font-size: 1.9rem; letter-spacing: -0.5px; }
    .page-hero p { font-size: 0.85rem; }
    .page-hero-label span { font-size: 0.65rem; letter-spacing: 1.5px; }
    .inner-section { padding: 60px 0; }
    .inner-section-header { margin-bottom: 32px; }
    .inner-section-header h2 { font-size: 1.5rem; }
    .inner-section-header p { font-size: 0.88rem; }
    .sp-grid { grid-template-columns: 1fr; }
    .sp-card { border-radius: var(--radius) !important; padding: 32px 24px; }
    .sp-card-num { font-size: 2.5rem; }
    .sp-benefits { grid-template-columns: 1fr; }
    .sp-benefit { padding: 28px 20px; }
    .sp-cta { padding: 40px 20px; }
    .sp-cta h2 { font-size: 1.4rem; }
    .sp-cta::before { font-size: 6rem; }
    .ap-story { grid-template-columns: 1fr; gap: 28px; }
    .ap-story-content h2 { font-size: 1.4rem; }
    .ap-story-image img { height: 240px; }
    .ap-mission { grid-template-columns: 1fr; }
    .ap-mission-card { padding: 28px 24px; }
    .ap-values-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .ap-value-card { padding: 24px 14px; }
    .ap-value-card h4 { font-size: 0.88rem; }
    .ap-value-card p { font-size: 0.78rem; }
    .ap-stats { grid-template-columns: repeat(2, 1fr); }
    .ap-stat { padding: 28px 12px; border-right: none; border-bottom: 1px solid var(--border); }
    .ap-stat:nth-child(odd) { border-right: 1px solid var(--border); }
    .ap-stat-number { font-size: 1.8rem; }
    .ap-vision h2 { font-size: 1.4rem; }
    .ap-vision p { font-size: 0.88rem; }
    .proc-steps { padding-left: 0; }
    .proc-steps::before { display: none; }
    .proc-step-marker { display: none; }
    .proc-step { padding: 28px 24px; }
    .proc-step:hover { transform: none; }
    .proc-step-top h3 { font-size: 1.1rem; }
    .proc-step p { font-size: 0.85rem; }
    .proc-audiences { grid-template-columns: 1fr; }
    .proc-audience { padding: 28px 24px; }
    .pp-tiers { grid-template-columns: 1fr; max-width: 100%; }
    .pp-tier { padding: 32px 24px; }
    .pp-tier-featured { transform: scale(1); }
    .pp-tier-featured:hover { transform: translateY(-6px); }
    .pp-breakdown-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .pp-breakdown-item { padding: 24px 14px; }
    .pp-payment-grid { grid-template-columns: 1fr; }
    .pp-nosurge-content { padding: 36px 20px; }
    .pp-nosurge-content h2 { font-size: 1.3rem; }
    .contact-page-grid { grid-template-columns: 1fr; gap: 32px; }
    .cpf-row { grid-template-columns: 1fr; }
    .contact-page-form { padding: 24px; }
    .contact-page-form h2 { font-size: 1.2rem; }
    .cp-card { padding: 20px 16px; gap: 12px; }
    .faq-question { padding: 16px 20px; font-size: 0.88rem; }
    .faq-answer p { padding: 0 20px 16px; font-size: 0.85rem; }
    .legal-content h2 { font-size: 1.1rem; }
    .legal-content p { font-size: 0.88rem; }
}

@media (max-width: 480px) {
    .page-hero h1 { font-size: 1.6rem; }
    .page-hero p { font-size: 0.8rem; }
    .inner-section { padding: 48px 0; }
    .inner-section-header h2 { font-size: 1.3rem; }
    .sp-card { padding: 24px 20px; }
    .sp-card-num { font-size: 2rem; }
    .sp-card h3 { font-size: 1.1rem; }
    .ap-values-grid { grid-template-columns: 1fr; }
    .ap-stat { padding: 20px 10px; }
    .ap-stat-number { font-size: 1.5rem; }
    .pp-breakdown-grid { grid-template-columns: 1fr; }
    .pp-price-amount { font-size: 1.8rem; }
    .contact-page-form { padding: 20px; }
}
