/* pro_nail.php - Specific Styles */

/* Override root variables for nail theme */
:root {
    --ink: #1f1f24;
    --muted: #5b5b66;
    --accent: #e76f51;
    --accent-dark: #c85f45;
    --mint: #2a9d8f;
    --bg: #f9f5f2;
    --card: #ffffff;
    --border: #ede4dd;
    --shadow: 0 20px 45px rgba(31, 31, 36, 0.08);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
}

/* Nail-specific brand styling */
.brand {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-tagline {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
}

/* Nail-specific button styles */
.btn.primary {
    background: linear-gradient(135deg, var(--accent), #f4a261);
    color: #fff;
    box-shadow: 0 12px 24px rgba(231, 111, 81, 0.25);
}

.btn.ghost {
    background: transparent;
    border: 1px solid rgba(231, 111, 81, 0.4);
    color: var(--accent);
}

.btn.light {
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #1b7b70;
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    padding: 90px 0 70px;
}

.hero::before,
.hero::after {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    filter: blur(2px);
    opacity: 0.7;
    z-index: 0;
}

.hero::before {
    top: -120px;
    left: -120px;
    background: radial-gradient(circle, rgba(231, 111, 81, 0.25), transparent 60%);
}

.hero::after {
    bottom: -140px;
    right: -120px;
    background: radial-gradient(circle, rgba(42, 157, 143, 0.25), transparent 60%);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.hero h1 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(36px, 4.3vw, 56px);
    line-height: 1.05;
    margin-bottom: 18px;
}

.hero p {
    color: var(--muted);
    font-size: 18px;
    margin-bottom: 22px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-points {
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.hero-points li {
    font-size: 14px;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-points li::before {
    content: '✓';
    color: var(--mint);
    font-weight: 700;
}

.promo-banner {
    margin-top: 14px;
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(231, 111, 81, 0.12);
    border: 1px dashed rgba(231, 111, 81, 0.4);
    color: var(--accent-dark);
    font-size: 13px;
    font-weight: 600;
}

.hero-panel {
    background: var(--card);
    border-radius: 26px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    padding: 26px;
    display: grid;
    gap: 16px;
}

.hero-panel h3 {
    font-size: 18px;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.stat {
    background: linear-gradient(135deg, #fff, #fff6f0);
    border-radius: 12px;
    padding: 14px;
    border: 1px solid rgba(231, 111, 81, 0.15);
}

.stat small {
    display: block;
    font-size: 11px;
    color: var(--muted);
    margin-bottom: 4px;
}

.stat strong {
    display: block;
    font-size: 15px;
    color: var(--ink);
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.feature-card {
    background: var(--card);
    border-radius: 20px;
    padding: 24px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    display: grid;
    gap: 12px;
}

.feature-card span {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(231, 111, 81, 0.15);
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.feature-card h3 {
    font-size: 18px;
    color: var(--ink);
}

.feature-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.testimonial-card {
    background: var(--card);
    border-radius: 18px;
    padding: 22px;
    border: 1px solid var(--border);
    box-shadow: 0 10px 24px rgba(31, 31, 36, 0.06);
}

.testimonial-card p {
    font-size: 15px;
    color: var(--ink);
    line-height: 1.7;
    margin-bottom: 10px;
}

.testimonial-meta {
    font-size: 12px;
    color: var(--muted);
}

/* How Grid */
.how-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.how-card {
    background: var(--card);
    border-radius: 18px;
    padding: 24px;
    border: 1px solid var(--border);
    box-shadow: 0 12px 30px rgba(31, 31, 36, 0.06);
}

.how-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--ink);
}

.how-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
}

/* Pricing Grid - 3 columns layout */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

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

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

.plan-card {
    background: var(--card);
    border-radius: 24px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.plan-card.featured {
    border: 2px solid rgba(231, 111, 81, 0.6);
}

.plan-top {
    padding: 24px;
    background: linear-gradient(135deg, #fff, #fff2e8);
    position: relative;
}

.plan-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(231, 111, 81, 0.15);
    color: #c2410c;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
}

.plan-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.plan-desc {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 16px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 12px;
}

.promo-line {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.price-strike {
    text-decoration: line-through;
    color: #9ca3af;
}

.promo-tag {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.15);
    color: #047857;
    font-size: 11px;
    font-weight: 700;
}

.plan-price .amount {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent);
}

.plan-price .period {
    font-size: 14px;
    color: var(--muted);
}

.plan-body {
    padding: 24px;
    display: grid;
    gap: 12px;
}

.plan-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
}

.plan-feature i {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(42, 157, 143, 0.15);
    color: #0f766e;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
    font-style: normal;
}

.plan-feature.inactive i {
    background: #f3f4f6;
    color: #9ca3af;
}

.plan-feature.inactive {
    color: #9ca3af;
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.faq-card {
    background: var(--card);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid var(--border);
    box-shadow: 0 8px 20px rgba(31, 31, 36, 0.05);
}

.faq-card h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--ink);
}

.faq-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
}

#tenantUrlPreview {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    color: #0f766e;
    background: #ecfdf5;
    border: 1px dashed #6ee7b7;
    border-radius: 8px;
    padding: 8px 10px;
    margin-top: 8px;
}

/* Footer */
footer {
    background: #111827;
    color: rgba(255, 255, 255, 0.85);
    padding: 50px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-grid h3 {
    color: #fff;
    margin-bottom: 12px;
    font-size: 18px;
}

.footer-grid p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.footer-grid a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s;
}

.footer-grid a:hover {
    color: #fff;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--mint), #0f766e);
    color: #fff;
    border-radius: 24px;
    padding: 40px;
    text-align: center;
}

.cta h2 {
    font-size: 32px;
    margin-bottom: 12px;
}

.cta p {
    font-size: 16px;
    margin-bottom: 24px;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 920px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-grid {
        grid-template-columns: 1fr;
    }
}