:root {
    --primary-color: #006090;
    --primary-dark: #004a70;
    --secondary-color: #00b4d8;
    /* Brighter accent */
    --text-color: #333333;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.1);
    --radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.btn-nav {
    background-color: var(--primary-color);
    color: var(--white) !important;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    transition: background-color 0.3s !important;
}

.btn-nav:hover {
    background-color: var(--primary-dark) !important;
}

/* Hero Section */
.hero {
    height: 90vh;
    min-height: 600px;
    background-image: url('assets/hero_bg.png');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 96, 144, 0.85), rgba(0, 40, 60, 0.8));
    z-index: 1;
}

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

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero .highlight {
    color: var(--secondary-color);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background-color: transparent;
    color: var(--secondary-color);
}

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

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.trust-badges {
    display: flex;
    gap: 2rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.badge i {
    margin-right: 0.5rem;
    color: var(--secondary-color);
}

/* Services */
.services {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.image-wrapper {
    height: 200px;
    overflow: hidden;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover img {
    transform: scale(1.05);
}

.content {
    padding: 2rem;
}

.content h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.btn-text {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s;
}

.btn-text:hover {
    gap: 0.8rem;
}

/* About Section */
.about {
    padding: 5rem 0;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.about-text .lead {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.features-list {
    list-style: none;
    margin-top: 2rem;
}

.features-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.features-list i {
    color: var(--secondary-color);
    background: rgba(0, 180, 216, 0.1);
    padding: 0.5rem;
    border-radius: 50%;
    font-size: 0.8rem;
}

.about-stats {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat-box {
    background: var(--bg-light);
    padding: 2rem;
    text-align: center;
    border-radius: var(--radius);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-box .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-box .label {
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
}

/* Contact CTA */
.contact-cta {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    color: var(--white);
    text-align: center;
    padding: 5rem 0;
}

.contact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-cta p {
    opacity: 0.9;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-box {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--white);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    transition: background 0.3s;
}

.contact-box:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-large {
    background-color: var(--white);
    color: var(--primary-color);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.3s;
    display: inline-block;
}

.btn-large:hover {
    transform: translateY(-3px);
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #888;
    padding: 3rem 0;
    font-size: 0.9rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

/* --- PV Professional Landing Page Styles --- */

.section-block {
    margin-bottom: 6rem;
}

.bg-light-rounded {
    background-color: #f4f6f8;
    padding: 5rem 2rem;
    border-radius: var(--radius);
}

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

.mb-4 {
    margin-bottom: 2rem;
}

.mb-5 {
    margin-bottom: 4rem;
}

.mt-5 {
    margin-top: 4rem;
}

/* 1. Comparison Grid (The "Why") */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.comparison-card {
    padding: 2.5rem;
    border-radius: var(--radius);
    border: 1px solid #eee;
    background: var(--white);
    position: relative;
    transition: transform 0.3s ease;
}

.comparison-card.traditional {
    background-color: #f9f9f9;
    border-color: #eee;
    opacity: 0.8;
}

.comparison-card.our-way {
    border: 2px solid var(--secondary-color);
    background-color: #fff;
    box-shadow: 0 10px 40px rgba(0, 180, 216, 0.1);
    transform: scale(1.02);
}

.comparison-card h3 {
    margin-bottom: 0.2rem;
    font-size: 1.4rem;
    color: var(--primary-dark);
}

.comparison-card .subtitle {
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.comparison-card ul {
    list-style: none;
    padding: 0;
}

.comparison-card ul li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
    /* Fix alignemnt for multi-line */
    gap: 0.8rem;
    line-height: 1.4;
}

.comparison-card.traditional i {
    color: #ccc;
    margin-top: 3px;
}

.comparison-card.our-way i {
    color: var(--secondary-color);
    margin-top: 3px;
}

.badge-rec {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--secondary-color);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* 2. Deliverables Grid (The "What") */
.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.deliverable-item {
    display: flex;
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s;
}

.deliverable-item:hover {
    transform: translateY(-5px);
}

.deliverable-item .icon-box {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: rgba(0, 96, 144, 0.05);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.8rem;
}

.del-content h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.del-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* 3. Timeline Workflow (Clean) */
.timeline-workflow {
    max-width: 800px;
    margin: 0 auto;
    border-left: 2px solid #e0e0e0;
    padding-left: 2rem;
}

.t-step {
    position: relative;
    padding-bottom: 3rem;
}

.t-step:last-child {
    padding-bottom: 0;
}

.t-num {
    position: absolute;
    left: -2.9rem;
    /* 2rem padding + 0.9rem half width roughly */
    top: 0;
    width: 30px;
    height: 30px;
    background: var(--white);
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.t-step h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.t-step p {
    color: var(--text-light);
}

/* FAQ Tweaks */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-light);
    border-radius: 8px;
    margin-bottom: 1rem;
    padding: 0 1.5rem;
    border: none;
    /* remove old border */
}

.faq-question {
    padding: 1.2rem 0;
    font-weight: 600;
}

.faq-answer {
    display: none;
    padding-bottom: 1.2rem;
}

.faq-item:hover .faq-answer {
    display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {

    .comparison-grid,
    .deliverables-grid {
        grid-template-columns: 1fr;
    }

    .comparison-card.our-way {
        transform: none;
    }
}


/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .about-container {
        flex-direction: column;
    }

    .contact-methods {
        flex-direction: column;
        align-items: center;
    }

    .nav-links {
        display: none;
        /* Simplification for prototype */
    }
}
/* --- NEW PV LANDING PAGE STYLES --- */

/* Hero Updates */
.pv-hero {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero-label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-subline {
    font-size: 1.3rem !important;
    font-weight: 400;
    margin-bottom: 2rem;
    color: #e0e0e0;
}

.hero-benefits {
    list-style: none;
    margin-bottom: 2.5rem;
}

.hero-benefits li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.hero-benefits i {
    color: var(--secondary-color);
}

.micro-proof {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    font-size: 0.9rem;
    opacity: 0.7;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Problem Section */
.problem-section {
    background: #fff;
    padding: 6rem 0;
}

.problem-list {
    list-style: none;
    margin: 2rem 0;
}

.problem-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.problem-list i {
    color: #dc3545; /* Red for problem */
    margin-top: 4px;
}

.punchline {
    font-weight: 700;
    color: var(--primary-dark);
    border-left: 4px solid #dc3545;
    padding-left: 1rem;
    margin-top: 2rem;
}

/* Solution Section */
.solution-section {
    padding: 6rem 0;
}

.lead-text {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 2rem auto 0;
    color: var(--text-color);
}

/* Services Grid 3 */
.services-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.icon-header {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-card ul {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

.service-card ul li {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-light);
}

.service-card ul li::before {
    content: "•";
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

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

.check-list {
    list-style: none;
    margin-top: 2rem;
}

.check-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.check-list li::before {
    content: "✓";
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.placeholder-img-box {
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 12px;
    padding: 4rem 2rem;
    text-align: center;
    color: #adb5bd;
}

.placeholder-img-box .caption {
    display: block;
    margin-top: 1rem;
    font-size: 0.9rem;
    font-style: italic;
    color: #6c757d;
}

/* Process Timeline */
.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    gap: 1rem;
    flex-wrap: wrap;
}

.step {
    text-align: center;
    flex: 1;
    min-width: 140px;
    position: relative;
    padding: 1rem;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
}

.step-num {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: white;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.step h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.step p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    margin: 0;
}

/* Target Group */
.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.group-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.group-card h3 {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.text-success { color: #28a745; }
.text-danger { color: #dc3545; }

.group-card ul {
    list-style: none;
}

.group-card ul li {
    margin-bottom: 0.8rem;
    display: flex;
    gap: 0.8rem;
}

/* Pricing */
.price-box {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid #eef2f5;
}

.price-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

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

.p-label {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 0.5rem;
}

.p-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.p-price small {
    font-size: 1rem;
    font-weight: 500;
    color: #666;
}

.calc-example {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.calc-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
    .split-layout {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .step {
        display: flex;
        text-align: left;
        align-items: center;
        gap: 1rem;
        padding: 1rem;
    }
    
    .step-num {
        margin: 0;
        flex-shrink: 0;
    }
    
    .price-grid {
        gap: 2rem;
    }

    .grid-2-col {
        grid-template-columns: 1fr;
    }
}
