/* Custom Development Page Styles - Scoped with .page-template-custom-development */

.page-template-custom-development .hero {
    background: linear-gradient(135deg, #30353C 0%, #30353C 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-template-custom-development .hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23ffffff" fill-opacity="0.05"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E') repeat;
}

.page-template-custom-development .cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: #FBD574;
    color: #30353C;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.page-template-custom-development .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Pain Points */
.pain-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pain-card {
    background: #3a4048;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.pain-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.25);
    border-color: #FBD574;
}

.pain-card .icon { font-size: 2.5em; margin-bottom: 15px; }
.pain-card h4 { color: #DC2626; margin-bottom: 10px; }
.pain-card p { color: rgba(247,249,252,0.7); }

/* Solution Pillars */
.pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pillar {
    text-align: center;
    padding: 30px 20px;
    background: #3a4048;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.1);
}

.pillar h4 { color: #F7F9FC; }
.pillar p { color: rgba(247,249,252,0.7); }
.pillar .number {
    display: inline-block;
    width: 50px; height: 50px; line-height: 50px;
    background: #FBD574; color: #30353C;
    border-radius: 50%; font-weight: bold; margin-bottom: 20px;
}

/* Benefits */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.benefit {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #3a4048;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(247,249,252,0.85);
}

.benefit .check { color: #16A34A; font-size: 1.5em; margin-right: 15px; }

/* Process Timeline */
.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 40px auto;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
}

.process-step::before {
    content: '';
    position: absolute;
    left: 25px; top: 50px;
    height: calc(100% + 40px);
    width: 2px;
    background: rgba(255,255,255,0.2);
}

.process-step:last-child::before { display: none; }

.step-number {
    width: 50px; height: 50px;
    background: #FBD574; color: #30353C;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: bold; flex-shrink: 0;
    z-index: 1; position: relative;
}

.step-content { margin-left: 30px; flex-grow: 1; }
.step-content h4 { color: #F7F9FC; margin-bottom: 10px; }
.step-content p { color: rgba(247,249,252,0.8); }
.step-content ul { color: rgba(247,249,252,0.75); }
.step-content li { color: rgba(247,249,252,0.75); margin-bottom: 5px; }

/* Features */
.features-category { margin-bottom: 40px; }
.features-category h3 { color: #F7F9FC; }
.features-list { list-style: none; padding: 0; }
.features-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: flex-start;
    color: rgba(247,249,252,0.85);
}
.features-list li:before {
    content: '✓'; color: #16A34A;
    font-weight: bold; margin-right: 15px; flex-shrink: 0;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background: #3a4048;
    border-radius: 10px;
    padding: 40px 30px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.2);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex; flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.25);
}

.pricing-card.featured { border: 2px solid #FBD574; }
.pricing-card.featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: -15px; left: 50%; transform: translateX(-50%);
    background: #FBD574; color: #30353C;
    padding: 5px 20px; border-radius: 10px;
    font-size: 0.85em; font-weight: bold;
}

.pricing-card h4 { font-size: 1.5em; margin-bottom: 20px; color: #F7F9FC; }
.pricing-card ul { flex-grow: 1; }
.pricing-card li { color: rgba(247,249,252,0.85); border-color: rgba(255,255,255,0.1) !important; }
.pricing-card .cta-button { margin-top: auto; }

.price { font-size: 2.5em; color: #FBD574; font-weight: bold; margin-bottom: 20px; }
.price .currency { font-size: 0.6em; vertical-align: super; }
.price .period { font-size: 0.5em; color: rgba(247,249,252,0.6); }

/* Comparison Table */
.comparison-table { overflow-x: auto; margin-top: 40px; }

.page-template-custom-development table {
    width: 100%; border-collapse: collapse;
    background: #3a4048;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    border-radius: 8px; overflow: hidden;
}

.page-template-custom-development th,
.page-template-custom-development td {
    padding: 15px; text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.page-template-custom-development th {
    background: #FBD574; color: #30353C; font-weight: 600;
}

.page-template-custom-development tr:hover { background: rgba(255,255,255,0.05); }
.page-template-custom-development td { color: rgba(247,249,252,0.85); }

/* Case Studies */
.case-studies {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.case-study {
    background: #3a4048; padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex; flex-direction: column;
}

.case-study h4 { color: #F7F9FC; }
.case-study p { color: rgba(247,249,252,0.8); }

.page-template-custom-development .metric {
    font-size: 2em; color: #93CDAB;
    font-weight: bold; margin-bottom: 10px;
}

.page-template-custom-development .testimonial {
    font-style: italic; color: rgba(247,249,252,0.8);
    margin-top: auto; padding-top: 20px;
    padding-left: 20px; border-left: 3px solid #FBD574;
}

/* FAQ */
.faq-item {
    margin-bottom: 30px; background: #3a4048;
    padding: 25px; border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.1);
}

.faq-question { font-weight: bold; color: #F7F9FC; margin-bottom: 10px; font-size: 1.1em; }
.faq-answer { color: rgba(247,249,252,0.8); }

/* Final CTA */
.final-cta {
    background: #30353C; color: white;
    padding: 80px 0; text-align: center;
}

.trust-badges {
    display: flex; justify-content: center;
    gap: 30px; margin-top: 30px; flex-wrap: wrap;
}

.badge { display: flex; align-items: center; gap: 10px; opacity: 0.9; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .page-template-custom-development .hero h1 { font-size: 2em; }
    .page-template-custom-development .hero .subtitle { font-size: 1.1em; }
    .page-template-custom-development h2 { font-size: 1.8em; }
    .int-case-metrics { flex-direction: column; gap: 15px; }
}
