/* --- VARIABLES: CYBER-EXECUTIVE PALETTE --- */
:root {
    /* Primary: Deep Midnight Blue (Authority & Trust) */
    --primary: #0F172A;     
    /* Accent: Electric Cyan (Modern Tech & Innovation - Matches your Logo) */
    --accent: #00B4D8;      
    /* Secondary Accent: Soft Blue for hovers */
    --accent-hover: #0077B6; 
    /* Text/Dark: General dark text on light backgrounds */
    --dark: #1E293B;        
    /* Light/Background */
    --light: #F8FAFC;       
    --white: #ffffff;
    --border: #E2E8F0; 
    --shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* --- RESET & BASE --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3 { color: var(--primary); font-weight: 700; }
h1 { font-size: 2.5rem; line-height: 1.2; margin-bottom: 1.5rem; }
h2 { font-size: 2rem; margin-bottom: 1rem; }
h3 { font-size: 1.25rem; margin-bottom: 0.5rem; } 
p { margin-bottom: 1rem; color: #4a4a4a; }

.highlight { color: var(--accent); }
.badge {
    background: #e6f0fa;
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1rem;
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
}

.btn-primary { 
    background: var(--accent); 
    color: var(--white); 
    border: 2px solid var(--accent); 
}
.btn-primary:hover { 
    background: var(--accent-hover); 
    border-color: var(--accent-hover); 
}

/* Default btn-outline (used on light backgrounds) */
.btn-outline { 
    background: transparent; 
    color: var(--primary); 
    border: 2px solid var(--primary); 
}
.btn-outline:hover { 
    background: var(--primary); 
    color: var(--white); 
}

.btn-white { 
    background: var(--white); 
    color: var(--primary); 
    font-weight: 700; 
}
.btn-white:hover { background: #f0f0f0; }

/* --- NAVIGATION --- */
.navbar {
    background: var(--white);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.5rem; font-weight: 700; color: var(--primary); }

.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a { font-weight: 500; font-size: 0.95rem; }
.nav-links a:hover { color: var(--accent); }

.nav-btn {
    background: var(--primary);
    color: var(--white) !important;
    padding: 0.5rem 1.2rem;
    border-radius: 4px;
}
.nav-btn:hover { background: #1E293B; }

/* --- HERO --- */
.hero { 
    padding: 6rem 0 4rem; 
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%); 
    text-align: center; 
}
.hero-content { max-width: 800px; margin: 0 auto; }
.hero h1 { color: var(--white); }
.hero p { color: #94A3B8; }
.hero .highlight { color: var(--accent); }
.cta-group { display: flex; gap: 1rem; justify-content: center; margin: 2rem 0; flex-wrap: wrap; }
.trust-text { font-size: 0.9rem; color: #64748B; margin-top: 2rem; }
.hero .badge { 
    background: rgba(255,255,255,0.1); 
    color: var(--accent); 
}

.hero .btn-outline { 
    background: transparent; 
    color: var(--white);
    border: 2px solid var(--white);
}
.hero .btn-outline:hover { 
    background: var(--white); 
    color: var(--primary);
}

/* --- SECTIONS COMMON --- */
.section-header { text-align: center; max-width: 700px; margin: 0 auto 3rem; }

/* --- VALUE PROP --- */
.value-prop { padding: 5rem 0; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: transform 0.3s;
}
.card:hover { transform: translateY(-5px); }
.card-icon { font-size: 2rem; color: var(--accent); margin-bottom: 1rem; }

/* --- SERVICES SECTION (NEW TIERED PRICING) --- */
.services { padding: 5rem 0; background: var(--light); }

.service-block {
    margin-bottom: 5rem;
    padding: 2rem 0;
    border-bottom: 1px solid var(--border);
}

.service-block:last-of-type {
    border-bottom: none;
}

.service-block-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.service-block-header i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.service-block-header h3 {
    font-size: 1.75rem;
}

.service-block-header p {
    max-width: 700px;
    margin: 0.5rem auto 0;
}

/* --- NEW: Deliverable Highlight Styling --- */
.deliverable-highlight {
    display: block;
    font-weight: 700;
    color: var(--primary);
    margin-top: 10px;
    padding: 5px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    text-align: center;
    box-shadow: 0 8px 16px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
}

.pricing-card.popular {
    border: 3px solid var(--accent);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.pricing-card .plan-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.pricing-card .plan-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 2rem;
}

.pricing-card .features {
    text-align: left;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.pricing-card .features li {
    margin-bottom: 0.7rem;
    font-size: 0.95rem;
    color: var(--dark);
    display: flex;
    align-items: center;
}

.pricing-card .features .fa-check-circle {
    color: var(--accent);
    margin-right: 0.5rem;
}

.pricing-card .features .fa-times-circle {
    color: #cc0000;
    opacity: 0.5;
    margin-right: 0.5rem;
}

.pricing-card .btn {
    margin-top: auto;
    width: 100%;
    justify-content: center;
}

.cta-banner {
    margin-top: 4rem;
    background: var(--primary);
    color: var(--white);
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
}
.cta-banner h3, .cta-banner p { color: var(--white); }
.cta-banner .btn { margin-top: 1rem; }

/* --- ABOUT --- */
.about { padding: 5rem 0; }
.about-content { max-width: 800px; margin: 0 auto; text-align: center; }
.checklist { margin: 2rem 0; display: inline-block; text-align: left; }
.checklist li { margin-bottom: 0.5rem; font-weight: 600; color: var(--primary); }
.checklist i { color: var(--accent); margin-right: 10px; }
.social-links a { color: var(--primary); font-weight: 700; }
.social-links a:hover { color: var(--accent); }


/* --- FOOTER --- */
footer { 
    background: var(--primary);
    color: #aaa; 
    padding: 4rem 0 1rem; 
}
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-bottom: 3rem; }
.footer-col h4 { color: var(--white); margin-bottom: 1rem; }
.footer-col a { display: block; margin-bottom: 0.5rem; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { text-align: center; border-top: 1px solid #333; padding-top: 2rem; }

footer .logo {
    color: var(--white); 
}

/* --- MOBILE --- */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero h1 { font-size: 2rem; }
    /* Grid settings for mobile now apply to pricing tables as well */
    .grid-3, .pricing-grid { grid-template-columns: 1fr; }
    .cta-group { flex-direction: column; }
    .btn { width: 100%; justify-content: center; }
}