/* ===========================================
   DoroLabs - Main Stylesheet
   Mobile-first, clean, professional
   =========================================== */

/* CSS Variables */
:root {
    /* Colors */
    --color-primary: #2563eb;
    --color-primary-dark: #1d4ed8;
    --color-primary-light: #60a5fa;
    --color-secondary: #0f172a;
    --color-accent: #10b981;
    
    --color-text: #1e293b;
    --color-text-light: #64748b;
    --color-text-inverse: #ffffff;
    
    --color-bg: #ffffff;
    --color-bg-alt: #f8fafc;
    --color-bg-dark: #0f172a;
    
    --color-border: #e2e8f0;
    --color-border-light: #f1f5f9;
    
    /* Typography */
    --font-family: Tahoma, Verdana, sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.6;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    /* Layout */
    --container-max: 1200px;
    --container-narrow: 800px;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-full: 9999px;
}

/* ===========================================
   Reset & Base
   =========================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: var(--font-size-base);
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: var(--line-height-base);
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-primary-dark);
}

ul, ol {
    list-style: none;
}

/* ===========================================
   Typography
   =========================================== */
h1, h2, h3, h4, h5, h6 {
    color: var(--color-secondary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

h1 {
    font-size: clamp(2rem, 5vw, 3rem);
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
}

h4 {
    font-size: 1.125rem;
}

p {
    margin-bottom: var(--space-md);
}

.lead {
    font-size: 1.25rem;
    color: var(--color-text-light);
}

/* ===========================================
   Layout
   =========================================== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.container-narrow {
    max-width: var(--container-narrow);
}

/* ===========================================
   Buttons
   =========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-text-inverse);
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    color: var(--color-text-inverse);
}

.btn-secondary {
    background-color: var(--color-secondary);
    color: var(--color-text-inverse);
    border-color: var(--color-secondary);
}

.btn-secondary:hover {
    background-color: transparent;
    color: var(--color-secondary);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-text-inverse);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* ===========================================
   Header & Navigation
   =========================================== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-secondary);
}

.logo:hover {
    color: var(--color-secondary);
}

.logo svg {
    flex-shrink: 0;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-secondary);
    transition: var(--transition-base);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav-menu {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background-color: var(--color-bg);
    padding: var(--space-lg);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
}

.nav-menu.active {
    display: block;
}

.nav-menu li {
    margin-bottom: var(--space-md);
}

.nav-menu li:last-child {
    margin-bottom: 0;
    margin-top: var(--space-lg);
}

.nav-menu a {
    display: block;
    color: var(--color-text);
    font-weight: 500;
    padding: var(--space-sm) 0;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--color-primary);
}

.nav-menu .btn {
    width: 100%;
}

/* Desktop Navigation */
@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }
    
    .nav-menu {
        display: flex;
        position: static;
        align-items: center;
        gap: var(--space-xl);
        padding: 0;
        border: none;
        box-shadow: none;
    }
    
    .nav-menu li {
        margin: 0;
    }
    
    .nav-menu li:last-child {
        margin: 0;
    }
    
    .nav-menu .btn {
        width: auto;
    }
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-left: var(--space-md);
    padding-left: var(--space-md);
    border-left: 1px solid var(--color-border);
}

.lang-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-light);
    text-transform: uppercase;
    transition: color var(--transition-fast);
}

.lang-link:hover {
    color: var(--color-primary);
}

.lang-link.active {
    color: var(--color-primary);
    font-weight: 600;
}

.lang-sep {
    color: var(--color-border);
    font-size: 0.75rem;
}

/* Mobile language switcher */
@media (max-width: 767px) {
    .lang-switcher {
        margin-left: 0;
        padding-left: 0;
        padding-top: var(--space-md);
        margin-top: var(--space-md);
        border-left: none;
        border-top: 1px solid var(--color-border);
        justify-content: center;
    }
}

/* ===========================================
   Hero Section
   =========================================== */
.hero {
    padding: var(--space-4xl) 0;
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f4f8 50%, var(--color-bg-alt) 100%);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    margin-bottom: var(--space-lg);
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    color: var(--color-text-light);
    margin-bottom: var(--space-xl);
    max-width: 600px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

/* ===========================================
   Page Header
   =========================================== */
.page-header {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
    text-align: center;
}

.page-header h1 {
    margin-bottom: var(--space-md);
}

.page-header p {
    font-size: 1.25rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ===========================================
   Value Props
   =========================================== */
.value-props {
    padding: var(--space-4xl) 0;
}

.section-title {
    text-align: center;
    margin-bottom: var(--space-sm);
}

.section-subtitle {
    text-align: center;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto var(--space-2xl);
    font-size: 1.125rem;
}

.value-grid {
    display: grid;
    gap: var(--space-xl);
}

.value-card {
    padding: var(--space-xl);
    background-color: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.value-card:hover {
    box-shadow: 0 12px 24px -8px rgba(37, 99, 235, 0.15);
    border-color: var(--color-primary-light);
    transform: translateY(-4px);
}

.value-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background-color: var(--color-bg-alt);
    border-radius: var(--radius-md);
    color: var(--color-primary);
    margin-bottom: var(--space-lg);
}

.value-card h3 {
    margin-bottom: var(--space-sm);
}

.value-card p {
    color: var(--color-text-light);
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .value-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===========================================
   Social Proof / Stats
   =========================================== */
.social-proof {
    padding: var(--space-3xl) 0;
    background-color: var(--color-bg-dark);
    color: var(--color-text-inverse);
}

.stats-grid {
    display: grid;
    gap: var(--space-xl);
    text-align: center;
}

.stat-number {
    display: block;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 700;
    color: var(--color-primary-light);
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.stat-label {
    font-size: 1rem;
    color: var(--color-text-inverse);
    opacity: 0.9;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===========================================
   How Preview / Steps
   =========================================== */
.how-preview {
    padding: var(--space-4xl) 0;
    text-align: center;
}

.how-preview h2 {
    margin-bottom: var(--space-2xl);
}

.steps-grid {
    display: grid;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.step {
    padding: var(--space-xl);
    background-color: var(--color-bg-alt);
    border-radius: var(--radius-lg);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: var(--color-primary);
    color: var(--color-text-inverse);
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-lg);
}

.step h3 {
    margin-bottom: var(--space-sm);
}

.step p {
    color: var(--color-text-light);
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===========================================
   CTA Section
   =========================================== */
.cta-section {
    padding: var(--space-4xl) 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    text-align: center;
    color: var(--color-text-inverse);
}

.cta-section h2 {
    color: var(--color-text-inverse);
    margin-bottom: var(--space-md);
}

.cta-section p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: var(--space-xl);
}

.cta-section .btn-primary {
    background-color: var(--color-text-inverse);
    color: var(--color-primary);
    border-color: var(--color-text-inverse);
}

.cta-section .btn-primary:hover {
    background-color: transparent;
    color: var(--color-text-inverse);
}

/* ===========================================
   Services Page
   =========================================== */
.service-detail {
    padding: var(--space-4xl) 0;
}

.service-detail.alt-bg {
    background-color: var(--color-bg-alt);
}

.service-content {
    max-width: var(--container-narrow);
    margin: 0 auto;
}

.service-icon-lg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: var(--color-bg-alt);
    border-radius: var(--radius-lg);
    color: var(--color-primary);
    margin-bottom: var(--space-xl);
}

.service-detail.alt-bg .service-icon-lg {
    background-color: var(--color-bg);
}

.service-lead {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: var(--space-2xl);
}

.service-features {
    display: grid;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.feature h3 {
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
}

.feature p,
.feature ul {
    color: var(--color-text-light);
    margin-bottom: 0;
}

.feature ul {
    padding-left: var(--space-lg);
}

.feature li {
    list-style: disc;
    margin-bottom: var(--space-sm);
}

.service-outcome {
    padding: var(--space-xl);
    background-color: var(--color-bg);
    border-left: 4px solid var(--color-primary);
    border-radius: var(--radius-md);
}

.service-detail.alt-bg .service-outcome {
    background-color: var(--color-bg-alt);
}

.service-outcome h3 {
    margin-bottom: var(--space-md);
}

.service-outcome ul {
    padding-left: var(--space-lg);
    margin-bottom: 0;
}

.service-outcome li {
    list-style: disc;
    color: var(--color-text-light);
    margin-bottom: var(--space-sm);
}

.service-outcome li:last-child {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .service-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===========================================
   Process / Timeline
   =========================================== */
.process-section {
    padding: var(--space-4xl) 0;
}

.process-timeline {
    max-width: var(--container-narrow);
    margin: 0 auto;
}

.process-step {
    display: grid;
    gap: var(--space-lg);
    margin-bottom: var(--space-3xl);
    padding-bottom: var(--space-3xl);
    border-bottom: 1px solid var(--color-border);
}

.process-step:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.step-marker {
    display: flex;
    justify-content: center;
}

.step-marker .step-number {
    width: 64px;
    height: 64px;
    font-size: 1.5rem;
}

.step-content h2 {
    margin-bottom: var(--space-sm);
}

.step-duration {
    display: inline-block;
    font-size: 0.875rem;
    color: var(--color-primary);
    background-color: var(--color-bg-alt);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-lg);
}

.step-details {
    background-color: var(--color-bg-alt);
    padding: var(--space-xl);
    border-radius: var(--radius-md);
    margin: var(--space-lg) 0;
}

.step-details h4 {
    margin-bottom: var(--space-md);
}

.step-details ul {
    padding-left: var(--space-lg);
    margin-bottom: 0;
}

.step-details li {
    list-style: disc;
    color: var(--color-text-light);
    margin-bottom: var(--space-sm);
}

.step-details li:last-child {
    margin-bottom: 0;
}

.step-outcome {
    color: var(--color-text-light);
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .process-step {
        grid-template-columns: 100px 1fr;
        gap: var(--space-xl);
    }
    
    .step-marker {
        justify-content: flex-start;
    }
}

/* ===========================================
   FAQ Section
   =========================================== */
.faq-section {
    padding: var(--space-4xl) 0;
    background-color: var(--color-bg-alt);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.faq-grid {
    display: grid;
    gap: var(--space-xl);
    max-width: var(--container-narrow);
    margin: 0 auto;
}

.faq-item {
    background-color: var(--color-bg);
    padding: var(--space-xl);
    border-radius: var(--radius-md);
}

.faq-item h3 {
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
}

.faq-item p {
    color: var(--color-text-light);
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===========================================
   About Page
   =========================================== */
.about-section {
    padding: var(--space-4xl) 0;
}

.about-content {
    max-width: var(--container-narrow);
    margin: 0 auto;
}

.beliefs-section {
    padding: var(--space-4xl) 0;
    background-color: var(--color-bg-alt);
}

.beliefs-section h2 {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.beliefs-grid {
    display: grid;
    gap: var(--space-xl);
}

.belief-card {
    padding: var(--space-xl);
    background-color: var(--color-bg);
    border-radius: var(--radius-md);
}

.belief-card h3 {
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
}

.belief-card p {
    color: var(--color-text-light);
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .beliefs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.what-we-do {
    padding: var(--space-4xl) 0;
}

.about-services {
    display: grid;
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.about-service h3 {
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
}

.about-service p {
    color: var(--color-text-light);
    margin-bottom: 0;
}

.who-section {
    padding: var(--space-4xl) 0;
}

.who-section.alt-bg {
    background-color: var(--color-bg-alt);
}

.section-intro {
    text-align: center;
    color: var(--color-text-light);
    margin-bottom: var(--space-2xl);
}

.industries-grid {
    display: grid;
    gap: var(--space-lg);
}

.industry {
    padding: var(--space-lg);
    background-color: var(--color-bg);
    border-radius: var(--radius-md);
    text-align: center;
}

.who-section.alt-bg .industry {
    background-color: var(--color-bg);
}

.industry h4 {
    margin-bottom: var(--space-xs);
}

.industry p {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .industries-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ===========================================
   Contact Page
   =========================================== */
.contact-section {
    padding: var(--space-4xl) 0;
}

.contact-grid {
    display: grid;
    gap: var(--space-3xl);
}

.contact-form-wrapper h2 {
    margin-bottom: var(--space-sm);
}

.contact-form-wrapper > p {
    color: var(--color-text-light);
    margin-bottom: var(--space-xl);
}

.contact-form {
    display: grid;
    gap: var(--space-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group label {
    font-weight: 500;
    font-size: 0.9375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem var(--space-md);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-consent {
    flex-direction: row;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    gap: var(--space-sm);
    font-size: 0.875rem;
    color: var(--color-text-light);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-form .btn {
    justify-self: start;
}

.form-success {
    text-align: center;
    padding: var(--space-2xl);
}

.form-success svg {
    color: var(--color-accent);
    margin: 0 auto var(--space-lg);
}

.form-success h3 {
    color: var(--color-accent);
}

.form-error {
    text-align: center;
    padding: var(--space-2xl);
}

.form-error svg {
    color: #c0392b;
    margin: 0 auto var(--space-lg);
}

.form-error h3 {
    color: #c0392b;
}

.form-error p a {
    color: var(--color-accent);
    text-decoration: underline;
}

.contact-info {
    display: grid;
    gap: var(--space-lg);
}

.info-card {
    padding: var(--space-xl);
    background-color: var(--color-bg-alt);
    border-radius: var(--radius-md);
}

.info-card.highlight {
    background-color: var(--color-primary);
    color: var(--color-text-inverse);
}

.info-card.highlight h3 {
    color: var(--color-text-inverse);
}

.info-card h3 {
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
}

.info-card p {
    color: var(--color-text-light);
    margin-bottom: 0;
}

.info-card.highlight p {
    color: var(--color-text-inverse);
    opacity: 0.9;
}

.info-card ul {
    padding-left: var(--space-lg);
}

.info-card li {
    list-style: disc;
    color: var(--color-text-light);
    margin-bottom: var(--space-sm);
}

.info-card li:last-child {
    margin-bottom: 0;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 500;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1.5fr 1fr;
    }
}

/* ===========================================
   Legal / Privacy Page
   =========================================== */
.legal-content {
    padding: var(--space-4xl) 0;
}

.legal-wrapper {
    max-width: var(--container-narrow);
    margin: 0 auto;
}

.legal-article h2 {
    font-size: 1.5rem;
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--color-border);
}

.legal-article h2:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.legal-article h3 {
    font-size: 1.125rem;
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.legal-article p {
    color: var(--color-text-light);
}

.legal-article ul {
    padding-left: var(--space-lg);
    margin-bottom: var(--space-md);
}

.legal-article li {
    list-style: disc;
    color: var(--color-text-light);
    margin-bottom: var(--space-sm);
}

/* ===========================================
   Footer
   =========================================== */
.footer {
    background-color: var(--color-bg-dark);
    color: var(--color-text-inverse);
    padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-grid {
    display: grid;
    gap: var(--space-2xl);
    margin-bottom: var(--space-3xl);
}

.footer-brand .logo {
    color: var(--color-text-inverse);
    margin-bottom: var(--space-md);
}

.footer-brand p {
    color: var(--color-text-inverse);
    opacity: 0.7;
    margin-bottom: 0;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--color-text-inverse);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-md);
}

.footer-links ul li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: var(--color-text-inverse);
    opacity: 0.7;
    transition: opacity var(--transition-fast);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--color-text-inverse);
}

.footer-contact p {
    margin-bottom: 0;
}

.footer-contact a {
    color: var(--color-text-inverse);
    opacity: 0.7;
}

.footer-contact a:hover {
    opacity: 1;
    color: var(--color-text-inverse);
}

.footer-bottom {
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.875rem;
    opacity: 0.7;
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

/* ===========================================
   Utilities
   =========================================== */
.text-center {
    text-align: center;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===========================================
   Print Styles
   =========================================== */
@media print {
    .header,
    .footer,
    .cta-section {
        display: none;
    }
    
    body {
        font-size: 12pt;
        color: #000;
    }
    
    a {
        color: #000;
        text-decoration: underline;
    }
}

/* ===========================================
   Cookie Consent Modal
   =========================================== */
.cookie-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(40, 61, 61, 0.7);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-base), visibility var(--transition-base);
    backdrop-filter: blur(4px);
}

.cookie-overlay-visible {
    opacity: 1;
    visibility: visible;
}

.cookie-banner {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    z-index: 9999;
    background-color: #f4f4f6;
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
    padding: var(--space-2xl);
    max-width: 480px;
    width: calc(100% - 2rem);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-base), transform var(--transition-base), visibility var(--transition-base);
}

.cookie-banner-visible {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.cookie-banner-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    text-align: center;
}

.cookie-banner-content h3 {
    margin: 0;
    font-size: 1.25rem;
    color: #283d3d;
}

.cookie-banner-content p {
    margin: 0;
    font-size: 0.9375rem;
    color: rgba(40, 61, 61, 0.8);
    line-height: 1.7;
}

.cookie-banner-content a {
    color: #4a7c8a;
    text-decoration: underline;
}

.cookie-banner-content a:hover {
    color: #3d6a77;
}

.cookie-banner-actions {
    display: flex;
    gap: var(--space-sm);
    flex-direction: column;
}

.cookie-banner-actions .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    width: 100%;
}

.cookie-banner-actions .btn-accent {
    background: #4a7c8a;
    color: #fff;
    border: none;
}

.cookie-banner-actions .btn-accent:hover {
    background: #3d6a77;
}

.cookie-banner-actions .btn-outline {
    background: transparent;
    color: #283d3d;
    border: 1px solid rgba(40, 61, 61, 0.2);
}

.cookie-banner-actions .btn-outline:hover {
    background: rgba(40, 61, 61, 0.05);
    border-color: rgba(40, 61, 61, 0.3);
}

@media (min-width: 480px) {
    .cookie-banner-actions {
        flex-direction: row;
        justify-content: center;
    }
    
    .cookie-banner-actions .btn {
        width: auto;
    }
}

/* ===========================================
   HOMEPAGE PREMIUM REDESIGN - Option B
   Alternating charcoal/off-white, muted teal accent
   =========================================== */

/* Premium Theme Variables */
.theme-premium {
    /* Dark sections */
    --pm-dark-bg: #283d3d;
    --pm-dark-bg-alt: #324a4a;
    --pm-dark-bg-deeper: #1f3030;
    --pm-dark-text: #f5f5f7;
    --pm-dark-text-sec: rgba(245, 245, 247, 0.75);
    --pm-dark-text-muted: rgba(245, 245, 247, 0.5);
    --pm-dark-border: rgba(245, 245, 247, 0.1);
    
    /* Light sections - Off-white (NOT white) */
    --pm-light-bg: #f4f4f6;
    --pm-light-bg-alt: #eaeaed;
    --pm-light-text: #283d3d;
    --pm-light-text-sec: rgba(40, 61, 61, 0.75);
    --pm-light-border: rgba(40, 61, 61, 0.1);
    
    /* Accent - Muted steel-blue/teal */
    --pm-accent: #4a7c8a;
    --pm-accent-hover: #3d6a77;
    --pm-accent-light: #7fb3c2;
    --pm-accent-glow: rgba(74, 124, 138, 0.15);
    
    background: var(--pm-dark-bg);
    color: var(--pm-dark-text-sec);
}

/* ===========================================
   Premium Header
   =========================================== */
.header-premium {
    background: rgba(40, 61, 61, 0.95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--pm-dark-border);
}

.header-premium .logo span {
    color: var(--pm-dark-text);
}

.header-premium .nav-toggle span {
    background-color: var(--pm-dark-text);
}

.header-premium .nav-menu {
    background: rgba(40, 61, 61, 0.98);
    border-bottom-color: var(--pm-dark-border);
}

.header-premium .nav-menu a {
    color: var(--pm-dark-text-sec);
}

.header-premium .nav-menu a:hover,
.header-premium .nav-menu a.active {
    color: var(--pm-dark-text);
}

@media (min-width: 768px) {
    .header-premium .nav-menu {
        background: transparent;
        border: none;
    }
}

/* Accent button overrides */
.btn-accent {
    background: var(--pm-accent);
    color: #fff;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px rgba(74, 124, 138, 0.35);
}

.btn-accent:hover {
    background: var(--pm-accent-hover);
    color: #fff;
    box-shadow: 0 4px 12px rgba(74, 124, 138, 0.4);
}

.btn-outline-light {
    background: transparent;
    color: rgba(245, 245, 247, 0.7);
    border: 1px solid rgba(245, 245, 247, 0.15);
    padding: 0.7rem 1.25rem;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--pm-dark-text);
}

/* ===========================================
   Premium Theme Overrides for Existing Sections
   =========================================== */

/* Page header - dark background in premium */
.theme-premium .page-header {
    background: var(--pm-dark-bg);
    padding-top: 5rem;
}

@media (min-width: 768px) {
    .theme-premium .page-header {
        padding-top: 6rem;
    }
}

.theme-premium .page-header h1 {
    color: var(--pm-dark-text);
}

.theme-premium .page-header p {
    color: var(--pm-dark-text-sec);
}

/* Service detail sections - light background */
.theme-premium .service-detail,
.theme-premium .about-section,
.theme-premium .what-we-do,
.theme-premium .process-section,
.theme-premium .faq-section,
.theme-premium .contact-section,
.theme-premium .legal-content {
    background: var(--pm-light-bg);
    color: var(--pm-light-text);
}

.theme-premium .service-detail h2,
.theme-premium .about-section h2,
.theme-premium .what-we-do h2,
.theme-premium .process-section h2,
.theme-premium .faq-section h2,
.theme-premium .contact-section h2,
.theme-premium .legal-content h2 {
    color: var(--pm-light-text);
}

.theme-premium .service-detail p,
.theme-premium .about-section p,
.theme-premium .what-we-do p,
.theme-premium .faq-section p,
.theme-premium .contact-section p,
.theme-premium .legal-content p {
    color: var(--pm-light-text-sec);
}

/* Alt background sections - dark alternation */
.theme-premium .beliefs-section,
.theme-premium .who-section.alt-bg,
.theme-premium .services-hub {
    background: var(--pm-dark-bg);
    color: var(--pm-dark-text);
}

.theme-premium .beliefs-section h2,
.theme-premium .who-section h2,
.theme-premium .services-hub h2 {
    color: var(--pm-dark-text);
}

.theme-premium .beliefs-section p,
.theme-premium .who-section p {
    color: var(--pm-dark-text-sec);
}

/* Belief cards in premium theme */
.theme-premium .belief-card {
    background: var(--pm-dark-bg-alt);
    border-color: var(--pm-dark-border);
}

.theme-premium .belief-card h3 {
    color: var(--pm-dark-text);
}

.theme-premium .belief-card p {
    color: var(--pm-dark-text-sec);
}

/* Service cards in premium theme */
.theme-premium .service-card {
    background: var(--pm-dark-bg-alt);
    border-color: var(--pm-dark-border);
}

.theme-premium .service-card h2 {
    color: var(--pm-dark-text);
}

.theme-premium .service-card p {
    color: var(--pm-dark-text-sec);
}

.theme-premium .service-card a:not(.btn) {
    color: var(--pm-accent-light);
}

/* About content */
.theme-premium .about-content .lead {
    color: var(--pm-light-text);
    font-weight: 500;
}

.theme-premium .about-services {
    margin-top: var(--space-xl);
}

/* Industry grid */
.theme-premium .industry {
    background: var(--pm-dark-bg-alt);
    border-color: var(--pm-dark-border);
}

.theme-premium .industry h4 {
    color: var(--pm-dark-text);
}

.theme-premium .industry p {
    color: var(--pm-dark-text-sec);
}

.theme-premium .section-intro {
    color: var(--pm-dark-text-sec);
}

/* CTA section - deep dark */
.theme-premium .cta-section {
    background: var(--pm-dark-bg-deeper);
}

.theme-premium .cta-section h2 {
    color: var(--pm-dark-text);
}

.theme-premium .cta-section p {
    color: var(--pm-dark-text-sec);
}

/* Process steps */
.theme-premium .process-step {
    border-bottom-color: var(--pm-light-border);
}

.theme-premium .step-number {
    background: var(--pm-accent);
    color: #fff;
}

.theme-premium .step-duration {
    background: var(--pm-accent-glow);
    color: var(--pm-accent);
}

.theme-premium .step-content h2 {
    color: var(--pm-light-text);
}

.theme-premium .step-content p {
    color: var(--pm-light-text-sec);
}

.theme-premium .step-details {
    background: #fff;
    color: var(--pm-light-text-sec);
}

.theme-premium .step-details h4 {
    color: var(--pm-light-text);
}

.theme-premium .step-details li {
    color: var(--pm-light-text-sec);
}

.theme-premium .step-outcome {
    color: var(--pm-light-text-sec);
}

/* FAQ items */
.theme-premium .faq-item {
    background: #fff;
    border-color: var(--pm-light-border);
}

.theme-premium .faq-item h3 {
    color: var(--pm-light-text);
}

.theme-premium .faq-item p {
    color: var(--pm-light-text-sec);
}

/* Contact info cards */
.theme-premium .info-card {
    background: #fff;
    border-color: var(--pm-light-border);
}

.theme-premium .info-card h3 {
    color: var(--pm-light-text);
}

.theme-premium .info-card p {
    color: var(--pm-light-text-sec);
}

.theme-premium .info-card.highlight {
    background: var(--pm-accent);
    border-color: var(--pm-accent);
}

.theme-premium .info-card.highlight h3,
.theme-premium .info-card.highlight p {
    color: #fff;
}

/* Form styles in premium */
.theme-premium .contact-form-wrapper h2 {
    color: var(--pm-light-text);
}

.theme-premium .contact-form-wrapper > p {
    color: var(--pm-light-text-sec);
}

.theme-premium .contact-form label {
    color: var(--pm-light-text);
}

.theme-premium .contact-form input,
.theme-premium .contact-form textarea,
.theme-premium .contact-form select {
    background: #fff;
    border-color: var(--pm-light-border);
    color: var(--pm-light-text);
}

.theme-premium .contact-form input:focus,
.theme-premium .contact-form textarea:focus,
.theme-premium .contact-form select:focus {
    border-color: var(--pm-accent);
    box-shadow: 0 0 0 3px var(--pm-accent-glow);
}

.theme-premium .checkbox-label {
    color: var(--pm-light-text-sec);
}

.theme-premium .checkbox-label a {
    color: var(--pm-accent);
}

/* Legal content */
.theme-premium .legal-article h2,
.theme-premium .legal-article h3 {
    color: var(--pm-light-text);
}

.theme-premium .legal-article a {
    color: var(--pm-accent);
}

/* About services */
.theme-premium .about-service {
    background: #fff;
    border-left-color: var(--pm-accent);
}

.theme-premium .about-service h3 {
    color: var(--pm-light-text);
}

.theme-premium .about-service p {
    color: var(--pm-light-text-sec);
}

/* ===========================================
   HP Hero - Dark Section
   =========================================== */
.hp-hero {
    background: var(--pm-dark-bg);
    padding: 5.5rem 0 3.5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .hp-hero {
        padding: 6.5rem 0 4.5rem;
    }
}

.hp-hero h1 {
    font-size: clamp(2.1rem, 5vw, 2.75rem);
    font-weight: 800;
    color: var(--pm-dark-text);
    line-height: 1.3;
    letter-spacing: 0.01em;
    margin-bottom: 0.875rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hp-hero-sub {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: rgba(245, 245, 247, 0.65);
    line-height: 1.7;
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.hp-hero-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero stagger animations */
.anim-hero {
    opacity: 0;
    transform: translateY(20px);
    animation: anim-in 0.6s ease-out forwards;
}

.anim-hero-1 { animation-delay: 0.1s; }
.anim-hero-2 { animation-delay: 0.25s; }
.anim-hero-3 { animation-delay: 0.4s; }

@keyframes anim-in {
    to { opacity: 1; transform: translateY(0); }
}

/* ===========================================
   HP Services - Light Section
   =========================================== */
.hp-services {
    background: var(--pm-light-bg);
    padding: 2.5rem 0;
}

@media (min-width: 768px) {
    .hp-services {
        padding: 3.5rem 0;
    }
}

/* ===========================================
   HP Packages Teaser - Light Section
   =========================================== */
.hp-teaser {
    background: var(--pm-light-bg);
    padding: 1.5rem 0 2rem;
    border-bottom: 1px solid var(--pm-light-border);
}

@media (min-width: 768px) {
    .hp-teaser {
        padding: 2rem 0 2.5rem;
    }
}

.hp-teaser-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 540px) {
    .hp-teaser-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

.hp-teaser-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem 0.75rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--pm-light-border);
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.hp-teaser-card:hover {
    transform: translateY(-2px);
    border-color: var(--pm-accent);
    box-shadow: 0 4px 12px rgba(74, 124, 138, 0.1);
}

/* Teaser card variations */
.hp-teaser-start {
    border-top: 2px solid rgba(74, 124, 138, 0.3);
}

.hp-teaser-grow {
    border-top: 2px solid var(--pm-accent);
    background: rgba(74, 124, 138, 0.04);
    position: relative;
}

.hp-teaser-scale {
    border-top: 2px solid rgba(74, 124, 138, 0.5);
}

.hp-teaser-badge {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--pm-accent);
    color: #fff;
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
}

.hp-teaser-name {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--pm-accent);
    margin-bottom: 0.25rem;
}

.hp-teaser-price {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--pm-light-text);
    line-height: 1.2;
}

.hp-teaser-price small {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--pm-light-text-sec);
}

.hp-teaser-desc {
    font-size: 0.7rem;
    color: var(--pm-light-text-sec);
    margin-top: 0.35rem;
    line-height: 1.4;
}

.hp-teaser-outcome {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--pm-light-text);
    line-height: 1.3;
    margin-bottom: 0.25rem;
}

.hp-teaser-card .hp-teaser-price {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--pm-light-text-sec);
    margin-top: 0.2rem;
}

/* Teaser staggered animation */
.hp-teaser.visible .hp-teaser-card:nth-child(1) { transition-delay: 0.05s; }
.hp-teaser.visible .hp-teaser-card:nth-child(2) { transition-delay: 0.12s; }
.hp-teaser.visible .hp-teaser-card:nth-child(3) { transition-delay: 0.19s; }

.hp-section-intro {
    text-align: center;
    margin-bottom: 1.75rem;
}

.hp-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--pm-accent);
    margin-bottom: 0.375rem;
}

.hp-services .hp-section-intro h2 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 700;
    color: var(--pm-light-text);
    letter-spacing: 0.01em;
    line-height: 1.3;
}

.hp-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.875rem;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .hp-cards {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
}

.hp-card {
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid var(--pm-light-border);
    border-top: 2px solid rgba(74, 124, 138, 0.25);
    border-radius: 10px;
    padding: 1.125rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hp-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(42, 42, 50, 0.08);
}

.hp-card-icon {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: var(--pm-accent-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.625rem;
    color: var(--pm-accent);
}

.hp-card-icon svg {
    width: 24px;
    height: 24px;
}

.hp-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--pm-light-text);
    margin-bottom: 0.375rem;
}

.hp-card p {
    font-size: 0.75rem;
    color: var(--pm-light-text-sec);
    line-height: 1.5;
    letter-spacing: 0.01em;
    margin-bottom: 0.625rem;
}

.hp-card a {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--pm-accent);
    text-decoration: none;
    transition: color 0.15s ease;
}

.hp-card a:hover {
    color: var(--pm-accent-hover);
}

/* ===========================================
   HP Stats - Dark Section
   =========================================== */
.hp-stats {
    background: var(--pm-dark-bg-alt);
    padding: 2rem 0;
}

@media (min-width: 768px) {
    .hp-stats {
        padding: 2.5rem 0;
    }
}

.hp-stats-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .hp-stats-row {
        gap: 4rem;
    }
}

.hp-stat {
    text-align: center;
}

.hp-stats-intro {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(245, 245, 247, 0.5);
    margin-bottom: 1.25rem;
}

.hp-stat-num {
    font-size: clamp(2.5rem, 6vw, 3.25rem);
    font-weight: 800;
    color: var(--pm-dark-text);
    line-height: 1;
}

.hp-stat-suf {
    font-size: clamp(1.5rem, 3.5vw, 1.75rem);
    font-weight: 700;
    color: var(--pm-accent-light);
}

.hp-stat-label {
    display: block;
    font-size: 0.6875rem;
    color: rgba(245, 245, 247, 0.55);
    margin-top: 0.25rem;
}

/* ===========================================
   HP Process - Light Section
   =========================================== */
.hp-process {
    background: var(--pm-light-bg);
    padding: 2.5rem 0;
}

@media (min-width: 768px) {
    .hp-process {
        padding: 3.5rem 0;
    }
}

.hp-process .hp-section-intro h2 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 700;
    color: var(--pm-light-text);
    letter-spacing: 0.01em;
    line-height: 1.3;
}

.hp-steps {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 700px;
    margin: 0 auto;
}

.hp-step {
    flex: 1;
    min-width: 150px;
    max-width: 190px;
    text-align: center;
}

.hp-step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--pm-accent-glow);
    border: 2px solid var(--pm-accent);
    color: var(--pm-accent);
    font-size: 1.0625rem;
    font-weight: 800;
    margin: 0 auto 0.75rem;
}

/* Process steps staggered animation */
.hp-process.visible .hp-step:nth-child(1) { transition-delay: 0.1s; }
.hp-process.visible .hp-step:nth-child(2) { transition-delay: 0.25s; }
.hp-process.visible .hp-step:nth-child(3) { transition-delay: 0.4s; }

.hp-step h3 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--pm-light-text);
    margin-bottom: 0.25rem;
}

.hp-step p {
    font-size: 0.8rem;
    color: var(--pm-light-text-sec);
    margin: 0;
}

/* ===========================================
   HP Packages - Dark Section
   =========================================== */
.hp-packages {
    background: var(--pm-dark-bg);
    padding: 3rem 0;
}

@media (min-width: 768px) {
    .hp-packages {
        padding: 4rem 0;
    }
}

.hp-packages .hp-section-intro-light h2 {
    color: var(--pm-dark-text);
}

.hp-packages .hp-section-intro-light .hp-label {
    color: var(--pm-accent-light);
}

.hp-section-intro-sub {
    font-size: 0.85rem;
    color: rgba(245, 245, 247, 0.65);
    margin-top: 0.5rem;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.hp-packages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .hp-packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .hp-packages-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
}

.hp-package {
    background: var(--pm-dark-bg-alt);
    border: 1px solid rgba(74, 124, 138, 0.15);
    border-radius: 12px;
    padding: 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hp-package:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.hp-package-featured {
    background: var(--pm-dark-bg-deeper);
    border-color: var(--pm-accent);
    box-shadow: 0 0 0 1px var(--pm-accent), 0 4px 20px rgba(74, 124, 138, 0.2);
}

.hp-package-featured:hover {
    box-shadow: 0 0 0 1px var(--pm-accent), 0 12px 32px rgba(74, 124, 138, 0.25);
}

.hp-package-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--pm-accent);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
}

.hp-package-header {
    text-align: center;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(74, 124, 138, 0.15);
}

.hp-package-header h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--pm-dark-text);
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
}

.hp-package-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
}

.hp-price-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--pm-accent-light);
    line-height: 1;
}

.hp-price-term {
    font-size: 0.75rem;
    color: rgba(245, 245, 247, 0.5);
    font-weight: 500;
}

/* Package outcome line */
.hp-package-outcome {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(245, 245, 247, 0.7);
    text-align: center;
    margin-bottom: 1rem;
}

/* Package accordion toggle */
.hp-package-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    width: 100%;
    padding: 0.6rem;
    background: rgba(74, 124, 138, 0.1);
    border: 1px solid rgba(74, 124, 138, 0.2);
    border-radius: 6px;
    color: var(--pm-accent-light);
    font-size: 0.75rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease;
    margin-bottom: 0;
}

.hp-package-toggle:hover {
    background: rgba(74, 124, 138, 0.18);
    border-color: rgba(74, 124, 138, 0.35);
}

.hp-package-toggle svg {
    transition: transform 0.2s ease;
}

.hp-package-toggle[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.hp-package-toggle-sm {
    padding: 0.4rem 0.6rem;
    font-size: 0.7rem;
    margin-top: 0.5rem;
}

/* Package details accordion */
.hp-package-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0;
}

.hp-package-details.open {
    max-height: 400px;
    padding-top: 1rem;
}

.hp-package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 0.75rem;
}

.hp-package-details .hp-package-features {
    margin-bottom: 0.5rem;
}

.hp-package-features li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.8rem;
    color: rgba(245, 245, 247, 0.8);
    margin-bottom: 0.6rem;
    line-height: 1.4;
}

.hp-package-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--pm-accent);
    font-weight: 700;
    font-size: 0.85rem;
}

/* Monthly option for START */
.hp-package-monthly-option {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px dashed rgba(74, 124, 138, 0.25);
    text-align: center;
}

.hp-monthly-label {
    display: block;
    font-size: 0.7rem;
    color: rgba(245, 245, 247, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.hp-monthly-price {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--pm-accent-light);
    margin-bottom: 0.25rem;
}

.hp-monthly-details {
    text-align: left;
}

.hp-monthly-details.open {
    max-height: 300px;
}

.hp-monthly-includes li {
    font-size: 0.75rem;
    margin-bottom: 0.4rem;
}

.hp-monthly-excludes {
    font-size: 0.65rem;
    color: rgba(245, 245, 247, 0.4);
    font-style: italic;
    margin-top: 0.6rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(245, 245, 247, 0.1);
    line-height: 1.4;
}

.hp-package-note {
    font-size: 0.7rem;
    color: rgba(245, 245, 247, 0.5);
    text-align: center;
    margin-top: 0.75rem;
    font-style: italic;
    line-height: 1.4;
}

.hp-package-cta {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-top: 1rem;
}

.hp-package .btn-outline-light {
    background: transparent;
    border: 1px solid rgba(245, 245, 247, 0.3);
    color: var(--pm-dark-text);
}

.hp-package .btn-outline-light:hover {
    background: rgba(245, 245, 247, 0.08);
    border-color: rgba(245, 245, 247, 0.5);
}

/* Packages staggered animation */
.hp-packages.visible .hp-package:nth-child(1) { transition-delay: 0.1s; }
.hp-packages.visible .hp-package:nth-child(2) { transition-delay: 0.2s; }
.hp-packages.visible .hp-package:nth-child(3) { transition-delay: 0.3s; }

/* ===========================================
   HP CTA - Dark Section
   =========================================== */
.hp-cta {
    background: var(--pm-dark-bg-deeper);
    padding: 2.5rem 0;
    text-align: center;
}

@media (min-width: 768px) {
    .hp-cta {
        padding: 3.5rem 0;
    }
}

.hp-cta h2 {
    font-size: clamp(1.35rem, 3.5vw, 1.85rem);
    font-weight: 700;
    color: var(--pm-dark-text);
    margin-bottom: 0.5rem;
    letter-spacing: 0.01em;
    line-height: 1.3;
}

.hp-cta p {
    font-size: 0.85rem;
    color: rgba(245, 245, 247, 0.6);
    margin-bottom: 1.5rem;
}

.hp-cta .btn-accent {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* ===========================================
   Premium Footer
   =========================================== */
.footer-premium {
    background: var(--pm-dark-bg-alt);
    border-top: 1px solid var(--pm-dark-border);
    color: var(--pm-dark-text-sec);
    font-size: 0.8125rem;
}

@media (min-width: 768px) {
    .footer-premium {
        font-size: 0.875rem;
    }
}

.footer-premium .logo span {
    color: var(--pm-dark-text);
}

.footer-premium .footer-brand p {
    color: var(--pm-dark-text-muted);
}

.footer-premium h4 {
    color: var(--pm-dark-text);
}

.footer-premium a {
    color: var(--pm-dark-text-sec);
}

.footer-premium a:hover {
    color: var(--pm-dark-text);
}

.footer-premium .footer-bottom {
    border-top-color: var(--pm-dark-border);
}

.footer-premium .footer-bottom p {
    color: var(--pm-dark-text-muted);
}

/* ===========================================
   SERVICE PAGE PREMIUM STYLES
   Aligned with homepage premium theme
   =========================================== */

/* Service Hero - Dark */
.sp-hero {
    background: var(--pm-dark-bg);
    padding: 5rem 0 2.5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .sp-hero {
        padding: 6rem 0 3rem;
    }
}

.sp-hero h1 {
    font-size: clamp(1.6rem, 4vw, 2.25rem);
    font-weight: 800;
    color: var(--pm-dark-text);
    line-height: 1.25;
    letter-spacing: 0.01em;
    margin-bottom: 0.75rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.sp-hero p {
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: rgba(245, 245, 247, 0.65);
    line-height: 1.6;
    max-width: 520px;
    margin: 0 auto;
}

.sp-hero-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: var(--pm-accent-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--pm-accent-light);
}

.sp-hero-icon svg {
    width: 28px;
    height: 28px;
}

/* ===========================================
   Services List Page - Premium Theme
   =========================================== */
.services-list-section {
    background: var(--pm-light-bg);
    padding: 2.5rem 0;
}

@media (min-width: 768px) {
    .services-list-section {
        padding: 3.5rem 0;
    }
}

.services-list-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .services-list-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

.service-list-card {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--pm-light-border);
    border-radius: 10px;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.service-list-card:hover {
    transform: translateY(-2px);
    border-color: var(--pm-accent);
    box-shadow: 0 6px 20px rgba(74, 124, 138, 0.12);
}

.service-list-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: var(--pm-accent-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pm-accent);
}

.service-list-icon svg {
    width: 24px;
    height: 24px;
}

.service-list-content {
    flex: 1;
    min-width: 0;
}

.service-list-content h2 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--pm-light-text);
    margin-bottom: 0.35rem;
    line-height: 1.3;
}

.service-list-content p {
    font-size: 0.8rem;
    color: var(--pm-light-text-sec);
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.service-list-cta {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--pm-accent);
    transition: color 0.15s ease;
}

.service-list-card:hover .service-list-cta {
    color: var(--pm-accent-hover);
}

/* Service Package Reference Banner */
.sp-package-ref {
    background: var(--pm-accent-glow);
    padding: 0.875rem 0;
    border-bottom: 1px solid rgba(74, 124, 138, 0.15);
}

.sp-package-ref-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    text-align: center;
}

.sp-package-ref-icon {
    font-size: 1.1rem;
}

.sp-package-ref p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--pm-light-text-sec);
}

.sp-package-ref strong {
    color: var(--pm-accent);
    font-weight: 700;
}

.sp-package-ref .btn-sm {
    padding: 0.4rem 0.85rem;
    font-size: 0.75rem;
}

/* Service Audience - Light */
.sp-audience {
    background: var(--pm-light-bg);
    padding: 2.5rem 0;
}

@media (min-width: 768px) {
    .sp-audience {
        padding: 3rem 0;
    }
}

.sp-section-title {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 700;
    color: var(--pm-light-text);
    margin-bottom: 0.75rem;
    letter-spacing: 0.01em;
}

.sp-audience p,
.sp-audience li {
    font-size: 0.875rem;
    color: var(--pm-light-text-sec);
    line-height: 1.65;
}

.sp-audience ul {
    padding-left: 1.25rem;
    margin: 0;
}

.sp-audience li {
    margin-bottom: 0.375rem;
    list-style: disc;
}

.sp-audience li:last-child {
    margin-bottom: 0;
}

/* Service Problem - Dark */
.sp-problem {
    background: var(--pm-dark-bg-alt);
    padding: 2.5rem 0;
}

@media (min-width: 768px) {
    .sp-problem {
        padding: 3rem 0;
    }
}

.sp-problem .sp-section-title {
    color: var(--pm-dark-text);
}

.sp-problem p {
    font-size: 0.875rem;
    color: var(--pm-dark-text-sec);
    line-height: 1.65;
}

/* Service Deliverables - Light */
.sp-deliverables {
    background: var(--pm-light-bg);
    padding: 2.5rem 0;
}

@media (min-width: 768px) {
    .sp-deliverables {
        padding: 3rem 0;
    }
}

.sp-deliverables p,
.sp-deliverables li {
    font-size: 0.875rem;
    color: var(--pm-light-text-sec);
    line-height: 1.65;
}

.sp-deliverables ul {
    padding-left: 1.25rem;
    margin: 0;
}

.sp-deliverables li {
    margin-bottom: 0.375rem;
    list-style: disc;
}

.sp-deliverables li:last-child {
    margin-bottom: 0;
}

.sp-feature-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .sp-feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

.sp-feature {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--pm-light-border);
    border-top: 2px solid rgba(74, 124, 138, 0.2);
    border-radius: 8px;
    padding: 1.25rem;
}

.sp-feature h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--pm-light-text);
    margin-bottom: 0.5rem;
}

.sp-feature p,
.sp-feature li {
    font-size: 0.8125rem;
    color: var(--pm-light-text-sec);
    line-height: 1.6;
}

.sp-feature ul {
    padding-left: 1rem;
    margin: 0;
}

.sp-feature li {
    margin-bottom: 0.25rem;
}

/* Service CTA - Deep Dark */
.sp-cta {
    background: var(--pm-dark-bg-deeper);
    padding: 2.5rem 0;
    text-align: center;
}

@media (min-width: 768px) {
    .sp-cta {
        padding: 3.5rem 0;
    }
}

.sp-cta h2 {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 700;
    color: var(--pm-dark-text);
    margin-bottom: 0.5rem;
    letter-spacing: 0.01em;
}

.sp-cta p {
    font-size: 0.85rem;
    color: rgba(245, 245, 247, 0.6);
    margin-bottom: 1.25rem;
}

.sp-cta .btn-accent {
    padding: 0.9rem 1.75rem;
    font-size: 0.95rem;
}

/* Service Outcome Box */
.sp-outcome {
    background: rgba(255, 255, 255, 0.8);
    border-left: 3px solid var(--pm-accent);
    border-radius: 6px;
    padding: 1.25rem;
    margin-top: 1.5rem;
}

.sp-outcome h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--pm-light-text);
    margin-bottom: 0.5rem;
}

.sp-outcome ul {
    padding-left: 1rem;
    margin: 0;
}

.sp-outcome li {
    font-size: 0.8125rem;
    color: var(--pm-light-text-sec);
    line-height: 1.55;
    margin-bottom: 0.25rem;
    list-style: disc;
}

.sp-outcome li:last-child {
    margin-bottom: 0;
}

/* Service page animations */
.sp-hero h1,
.sp-hero p,
.sp-hero-icon {
    opacity: 0;
    transform: translateY(20px);
    animation: sp-fade-in 0.6s ease-out forwards;
}

.sp-hero-icon { animation-delay: 0.05s; }
.sp-hero h1 { animation-delay: 0.15s; }
.sp-hero p { animation-delay: 0.3s; }

@keyframes sp-fade-in {
    to { opacity: 1; transform: translateY(0); }
}

/* Service page sections - visible by default, animation is enhancement only */
.sp-section {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

/* Animation state: only applied when JS adds animate-ready class */
.sp-section.animate-ready {
    opacity: 0;
    transform: translateY(25px);
}

.sp-section.animate-ready.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Service page content wrapper */
.sp-content {
    max-width: 800px;
    margin: 0 auto;
}

/* ===========================================
   Scroll Reveal Animations
   =========================================== */
.reveal-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.reveal-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.reveal-section.visible .reveal-item {
    opacity: 1;
    transform: translateY(0);
}

.reveal-section.visible .reveal-item:nth-child(1) { transition-delay: 0.05s; }
.reveal-section.visible .reveal-item:nth-child(2) { transition-delay: 0.1s; }
.reveal-section.visible .reveal-item:nth-child(3) { transition-delay: 0.15s; }
.reveal-section.visible .reveal-item:nth-child(4) { transition-delay: 0.2s; }

/* Button Micro-interactions */
.btn {
    transition: all var(--transition-base), transform 0.15s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}

/* ===========================================
   WhatsApp Floating Button
   =========================================== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9990;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all var(--transition-base);
    text-decoration: none;
    /* iOS safe area support */
    bottom: calc(24px + env(safe-area-inset-bottom, 0px));
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: white;
}

/* Hide WhatsApp when cookie modal is visible */
.cookie-overlay-visible ~ .whatsapp-float,
body:has(.cookie-banner-visible) .whatsapp-float {
    opacity: 0;
    pointer-events: none;
}

/* Mobile - ensure always visible with proper spacing */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: calc(20px + env(safe-area-inset-bottom, 0px));
        right: 20px;
        width: 56px;
        height: 56px;
    }
    
    .whatsapp-float svg {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: calc(16px + env(safe-area-inset-bottom, 0px));
        right: 16px;
        width: 52px;
        height: 52px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

/* ===========================================
   HP Services Grid (5 cards - new layout)
   =========================================== */
.hp-services-5 .hp-cards {
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

@media (min-width: 540px) {
    .hp-services-5 .hp-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .hp-services-5 .hp-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

.hp-card-price {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--pm-accent);
    margin-top: auto;
    padding-top: 0.5rem;
}

/* ===========================================
   HP Fit / Not Fit Section
   =========================================== */
.hp-fit {
    background: var(--pm-light-bg);
    padding: 2.5rem 0;
}

@media (min-width: 768px) {
    .hp-fit {
        padding: 3.5rem 0;
    }
}

.hp-fit-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .hp-fit-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

.hp-fit-card {
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid var(--pm-light-border);
}

.hp-fit-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.hp-fit-yes {
    background: rgba(74, 138, 90, 0.06);
    border-color: rgba(74, 138, 90, 0.2);
}

.hp-fit-yes h3 {
    color: #3d7a4a;
}

.hp-fit-no {
    background: rgba(180, 80, 70, 0.06);
    border-color: rgba(180, 80, 70, 0.2);
}

.hp-fit-no h3 {
    color: #a04535;
}

.hp-fit-card ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.hp-fit-card li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.8rem;
    color: var(--pm-light-text-sec);
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.hp-fit-yes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3d7a4a;
    font-weight: 700;
}

.hp-fit-no li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #a04535;
    font-weight: 700;
}

/* ===========================================
   Service Page: Pricing Section (Dark)
   =========================================== */
.sp-pricing {
    background: var(--pm-dark-bg);
    padding: 2.5rem 0;
}

@media (min-width: 768px) {
    .sp-pricing {
        padding: 3rem 0;
    }
}

.sp-pricing .sp-section-title {
    color: var(--pm-dark-text);
}

.sp-pricing p,
.sp-pricing li {
    color: var(--pm-dark-text-sec);
    font-size: 0.875rem;
    line-height: 1.65;
}

.sp-pricing ul {
    padding-left: 1.25rem;
}

.sp-pricing li {
    margin-bottom: 0.375rem;
    list-style: disc;
}

.sp-price-highlight {
    display: inline-block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--pm-accent-light);
    margin-bottom: 0.5rem;
}

.sp-price-note {
    font-size: 0.8rem;
    color: var(--pm-dark-text-muted);
    font-style: italic;
    margin-top: 0.75rem;
}

/* Service Page: Not-Included Section (Dark alt) */
.sp-not-included {
    background: var(--pm-dark-bg-alt);
    padding: 2.5rem 0;
}

@media (min-width: 768px) {
    .sp-not-included {
        padding: 3rem 0;
    }
}

.sp-not-included .sp-section-title {
    color: var(--pm-dark-text);
}

.sp-not-included p,
.sp-not-included li {
    color: var(--pm-dark-text-sec);
    font-size: 0.875rem;
    line-height: 1.65;
}

.sp-not-included ul {
    padding-left: 1.25rem;
}

.sp-not-included li {
    margin-bottom: 0.375rem;
    list-style: disc;
}

/* Service Page: Process Section (Light) */
.sp-process {
    background: var(--pm-light-bg);
    padding: 2.5rem 0;
}

@media (min-width: 768px) {
    .sp-process {
        padding: 3rem 0;
    }
}

.sp-process .sp-section-title {
    color: var(--pm-light-text);
    text-align: center;
}

/* Service Page: Fit Section (Light) */
.sp-fit {
    background: var(--pm-light-bg);
    padding: 2.5rem 0;
}

@media (min-width: 768px) {
    .sp-fit {
        padding: 3rem 0;
    }
}

.sp-fit-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .sp-fit-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}

.sp-fit-card {
    padding: 1.25rem;
    border-radius: 8px;
    border: 1px solid var(--pm-light-border);
}

.sp-fit-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.sp-fit-yes {
    background: rgba(74, 138, 90, 0.06);
    border-color: rgba(74, 138, 90, 0.2);
}

.sp-fit-yes h3 { color: #3d7a4a; }

.sp-fit-no {
    background: rgba(180, 80, 70, 0.06);
    border-color: rgba(180, 80, 70, 0.2);
}

.sp-fit-no h3 { color: #a04535; }

.sp-fit-card ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.sp-fit-card li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.8rem;
    color: var(--pm-light-text-sec);
    margin-bottom: 0.4rem;
    line-height: 1.5;
}

.sp-fit-yes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3d7a4a;
    font-weight: 700;
}

.sp-fit-no li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #a04535;
    font-weight: 700;
}

/* ===========================================
   HP Services 5-card layout tweaks
   =========================================== */
.hp-card-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    height: 100%;
}

.hp-card-link:hover {
    color: inherit;
}

.hp-card-link .hp-card {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* ===========================================
   SP Pricing Feature Cards (Dark bg)
   =========================================== */
.sp-pricing .sp-feature {
    background: var(--pm-dark-bg-alt);
    border-color: var(--pm-dark-border);
    border-top-color: rgba(74, 124, 138, 0.3);
}

.sp-pricing .sp-feature h3 {
    color: var(--pm-dark-text);
}

.sp-pricing .sp-feature p,
.sp-pricing .sp-feature li {
    color: var(--pm-dark-text-sec);
}
