/**
 * AltinHost Custom Full Page Stylesheet
 */

:root {
    --ah-primary: #0284c7;
    --ah-primary-hover: #0369a1;
    --ah-dark-bg: #0f172a;
    --ah-card-bg: #ffffff;
    --ah-text-main: #334155;
    --ah-text-dark: #0f172a;
    --ah-text-muted: #64748b;
    --ah-border: #e2e8f0;
    --ah-bg-light: #f8fafc;
    --ah-radius: 12px;
    --ah-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--ah-bg-light) !important;
    color: var(--ah-text-main) !important;
    line-height: 1.6;
}

.ah-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.ah-bg-white {
    background-color: #ffffff !important;
}

/* Grid System */
.ah-grid {
    display: grid;
    gap: 30px;
}

.ah-grid-3 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.ah-grid-4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

/* Hero */
.ah-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 100px 0 80px;
    text-align: center;
    color: #ffffff;
}

.ah-badge {
    background: rgba(2, 132, 199, 0.2);
    color: #38bdf8;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
    border: 1px solid rgba(56, 189, 248, 0.3);
}

.ah-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff !important;
    margin-bottom: 16px;
}

.ah-hero-subtitle {
    font-size: 1.25rem;
    color: #94a3b8 !important;
    max-width: 700px;
    margin: 0 auto 32px;
}

.ah-hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* Stats Bar */
.ah-stats-bar {
    background: #ffffff;
    border-bottom: 1px solid var(--ah-border);
    padding: 30px 0;
    text-align: center;
}

.ah-stat-item h3 {
    font-size: 2.2rem;
    color: var(--ah-primary);
    font-weight: 800;
}

.ah-stat-item p {
    color: var(--ah-text-muted);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Section Header */
.ah-section {
    padding: 80px 0;
}

.ah-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.ah-section-header h2 {
    font-size: 2.2rem;
    color: var(--ah-text-dark);
    margin-bottom: 10px;
}

.ah-section-header p {
    color: var(--ah-text-muted);
    font-size: 1.1rem;
}

/* Cards */
.ah-card {
    background: var(--ah-card-bg) !important;
    border: 1px solid var(--ah-border);
    border-radius: var(--ah-radius);
    padding: 40px 30px;
    box-shadow: var(--ah-shadow);
    transition: transform 0.2s, box-shadow 0.2s;
}

.ah-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.1);
}

/* Service Card */
.ah-service-card .ah-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.ah-service-card h3 {
    font-size: 1.3rem;
    color: var(--ah-text-dark);
    margin-bottom: 12px;
}

.ah-service-card p {
    color: var(--ah-text-muted);
    font-size: 0.95rem;
}

/* Process Step */
.ah-process-step {
    background: var(--ah-bg-light);
    padding: 30px 20px;
    border-radius: var(--ah-radius);
    text-align: center;
    border: 1px solid var(--ah-border);
}

.step-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--ah-primary);
    margin-bottom: 10px;
}

.ah-process-step h4 {
    font-size: 1.1rem;
    color: var(--ah-text-dark);
    margin-bottom: 8px;
}

.ah-process-step p {
    font-size: 0.9rem;
    color: var(--ah-text-muted);
}

/* Price Cards */
.ah-price-card.ah-featured {
    border: 2px solid var(--ah-primary);
    position: relative;
}

.ah-badge-popular {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ah-primary);
    color: #ffffff;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.ah-card-header {
    text-align: center;
    border-bottom: 1px solid var(--ah-border);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.ah-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--ah-text-dark);
}

.ah-price span {
    font-size: 0.95rem;
    color: var(--ah-text-muted);
}

.ah-features-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 25px 0 !important;
}

.ah-features-list li {
    padding: 10px 0;
    border-bottom: 1px dashed var(--ah-border);
    font-size: 0.95rem;
}

/* FAQ */
.ah-faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 25px;
}

.ah-faq-item {
    background: var(--ah-bg-light);
    padding: 25px;
    border-radius: var(--ah-radius);
    border: 1px solid var(--ah-border);
}

.ah-faq-item h4 {
    color: var(--ah-text-dark);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.ah-faq-item p {
    color: var(--ah-text-muted);
    font-size: 0.95rem;
}

/* CTA */
.ah-cta-box {
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
    border-radius: var(--ah-radius);
    padding: 60px 40px;
    text-align: center;
    color: #ffffff;
}

.ah-cta-box h2 {
    color: #ffffff;
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.ah-cta-box p {
    color: #e0f2fe;
    margin-bottom: 28px;
    font-size: 1.1rem;
}

.ah-cta-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* Buttons */
.ah-btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.2s;
    cursor: pointer;
}

.ah-btn-block { display: block; width: 100%; }
.ah-btn-primary { background: var(--ah-primary) !important; color: #ffffff !important; }
.ah-btn-secondary { background: #f1f5f9 !important; color: var(--ah-text-dark) !important; }
.ah-btn-outline { border: 1px solid rgba(255, 255, 255, 0.4); color: #ffffff !important; }
.ah-btn-light { background: #ffffff !important; color: var(--ah-text-dark) !important; }