/* ===================================================================
   SIRRUS7 UNIFIED SERVICE PAGE STYLESHEET
   =================================================================== */

:root {
    /* Colors from Main Site */
    --s7-primary-orange: #ff8000;
    --s7-text-primary: #ffffff;
    --s7-text-secondary: rgba(255, 255, 255, 0.8);
    --s7-bg-dark: #000000;
    --s7-bg-card: rgba(255, 255, 255, 0.05);
    --s7-border-color: rgba(255, 128, 0, 0.2);
    --s7-border-hover: #ff8000;

    /* Fonts from Main Site */
    --font-family-main: "Barlow", sans-serif;
    --font-family-headings: "Poppins", serif;
}

/* --- Global & Body Styles --- */
body {
    font-family: var(--font-family-main);
    background: radial-gradient(circle at 50% 50%, #1a1a1a 0%, #000000 75%);
    color: var(--s7-text-secondary);
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-headings);
    color: var(--s7-text-primary);
    margin-bottom: 0.75em;
    hyphens: none;
}

p {
    color: var(--s7-text-secondary);
    margin-bottom: 1.5em;
    hyphens: none;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Back Navigation Button --- */
.back-nav {
    position: fixed;
    top: 25px;
    left: 25px;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--s7-border-color);
    border-radius: 50px;
    padding: 10px 25px;
    color: var(--s7-text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.back-nav:hover {
    background: var(--s7-primary-orange);
    color: var(--s7-bg-dark);
    border-color: var(--s7-primary-orange);
}

/* --- Service Hero Section --- */
.service-hero {
    padding: 140px 0 100px 0;
    text-align: center;
}

.service-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    background: linear-gradient(90deg, #ffffff, #ff8000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.service-hero .subtitle {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    max-width: 650px;
    margin: 0 auto;
}

/* --- Content & Phase Sections --- */
.phase-section, .overview-section, .best-for-section, .business-outcomes-section, .technical-benefits-section, .cta-section {
    padding: 80px 0;
    border-bottom: 1px solid var(--s7-border-color);
}
.phase-section:last-of-type, .cta-section {
    border-bottom: none;
}

.phase-header, .overview-container, .best-for-container, .business-outcomes-container, .technical-benefits-container, .cta-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.phase-title, .overview-heading, .best-for-heading, .business-outcomes-heading, .technical-benefits-heading, .cta-heading {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--s7-text-primary);
    margin-bottom: 2rem;
}

.phase-subtitle, .overview-text {
    font-size: 1.1rem;
    color: var(--s7-text-secondary);
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

/* --- Card & List Styles --- */
.best-for-grid, .process-flow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.best-for-card, .step, .benefit-item {
    background: var(--s7-bg-card);
    border: 1px solid var(--s7-border-color);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
}

.best-for-card:hover, .step:hover, .benefit-item:hover {
    border-color: var(--s7-border-hover);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 128, 0, 0.1);
}

.card-icon, .step-icon, .outcome-icon, .benefit-icon {
    font-size: 2.5rem;
    color: var(--s7-primary-orange);
    margin-bottom: 20px;
}

.card-title, .step h3 {
    font-size: 1.25rem;
    color: var(--s7-text-primary);
    margin-bottom: 0.5rem;
}

.card-subtitle, .step .description, .benefit-item p {
    font-size: 0.95rem;
    color: var(--s7-text-secondary);
    line-height: 1.6;
}

/* List Item Styles (Outcomes/Benefits) */
.outcomes-list, .benefits-list {
    list-style: none;
    padding: 0;
    max-width: 700px;
    margin: 0 auto;
}

.outcome-item, .benefits-list .benefit-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 10px;
    background-color: transparent;
    border: 1px solid transparent;
}

.outcome-item:hover, .benefits-list .benefit-item:hover {
    background-color: var(--s7-bg-card);
    border-color: var(--s7-border-color);
    transform: translateX(10px);
}

/* --- Buttons --- */
.more-button, .cta-button {
    display: inline-block;
    background: transparent;
    color: var(--s7-primary-orange);
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    border: 1px solid var(--s7-primary-orange);
    transition: all 0.3s ease;
    cursor: pointer;
}

.more-button:hover, .cta-button:hover {
    background: var(--s7-primary-orange);
    color: var(--s7-bg-dark);
    box-shadow: 0 5px 20px rgba(255, 128, 0, 0.2);
}

/* --- Footer --- */
/* Uses the main site's footer styles, no override needed if linked correctly */

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .service-hero { padding: 120px 0 60px 0; }
    .phase-section, .overview-section, .best-for-section, .business-outcomes-section, .technical-benefits-section, .cta-section { padding: 60px 0; }
}