/* ============================================
   TABLE OF CONTENTS
   ============================================
   1. Reset & Base Styles
   2. Typography
   3. Navigation & Logo
   4. Hero Sections
   5. Buttons
   6. Content Sections
   7. Forms & Modals
   8. Footer
   9. Animations
   10. Responsive Design
   ============================================ */

/* ============================================
   1. RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors - Black and Red Theme */
    --primary-color: #dc2626;
    --primary-dark: #991b1b;
    --primary-light: #ef4444;
    --secondary-color: #000000;
    --accent-color: #dc2626;
    --danger-color: #ef4444;
    --dark-color: #000000;
    --light-color: #f5f5f5;
    --gray-light: #e5e5e5;
    --text-primary: #000000;
    --text-secondary: #525252;
    --text-white: #ffffff;
    --border-color: #d4d4d4;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-max: 1200px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 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);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: #ffffff;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   2. TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.875rem; }
h4 { font-size: 1.5rem; }

/* ============================================
   3. NAVIGATION & LOGO
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-img {
    height: 45px;
    width: auto;
    display: block;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.logo-penguin {
    color: #000000;
}

.logo-ai {
    color: #dc2626;
}

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

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

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

.btn-nav {
    background: var(--primary-color);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s;
}

.btn-nav:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ============================================
   4. HERO SECTIONS
   ============================================ */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #dc2626 100%);
    color: white;
}

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

.hero-headline {
    color: var(--text-white);
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
    font-size: 3.5rem;
}

.highlight {
    color: var(--primary-color);
    display: block;
    margin-top: 0.5rem;
}

.hero-subtext {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

/* Value Props */
.value-props {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 600px;
    margin: 3rem auto 0;
}

.value-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

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

.value-text {
    color: var(--text-secondary);
    font-weight: 500;
}

/* Contact Hero */
.contact-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #dc2626 100%);
    color: white;
    text-align: center;
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: white;
}

.contact-subtext {
    font-size: 1.25rem;
    opacity: 0.95;
    line-height: 1.7;
}

/* ============================================
   5. BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

.btn-cta {
    background: var(--primary-color);
    color: white;
    font-size: 1.125rem;
    padding: 1.25rem 2.5rem;
}

.btn-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-download {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    border: 2px solid white;
    font-weight: 600;
    transition: all 0.3s;
}

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

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

.btn-solution:hover {
    gap: 0.5rem;
}

.btn-primary-large {
    font-size: 1.25rem;
    padding: 1.25rem 3rem;
}

.btn-submit {
    width: 100%;
    padding: 1.25rem;
    font-size: 1.125rem;
    margin-top: 1rem;
}

.btn-footer {
    background: var(--primary-color);
    color: white;
    display: inline-block;
    margin-top: 1rem;
}

/* ============================================
   6. CONTENT SECTIONS
   ============================================ */

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-title-white {
    color: white;
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.25rem;
    margin-bottom: 3rem;
    font-weight: 400;
}

/* Problem Section */
.problem-section {
    padding: var(--section-padding);
    background: var(--light-color);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.problem-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    position: relative;
}

.problem-card h3 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.problem-list {
    list-style: none;
}

.problem-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.problem-list li:last-child {
    border-bottom: none;
}

.problem-list li::before {
    content: "❌";
    position: absolute;
    left: 0;
}

.philosophical-text {
    color: var(--text-primary);
    font-size: 1.125rem;
    line-height: 1.7;
}

.problem-card.philosophical {
    background: linear-gradient(135deg, var(--primary-color), #7c3aed);
    color: white;
}

.problem-card.philosophical h3,
.problem-card.philosophical .philosophical-text {
    color: white;
}

/* Cost Reality Section */
.cost-reality {
    background: #fef2f2;
    padding: 3rem;
    border-radius: 16px;
    margin-top: 4rem;
    border: 3px solid var(--primary-color);
}

.cost-reality h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.cost-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.cost-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
}

.cost-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.cost-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* What You Learn Section */
.what-you-learn {
    margin-top: 4rem;
    padding: 3rem;
    background: var(--light-color);
    border-radius: 16px;
}

.what-you-learn h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

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

.insight-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s;
}

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

.insight-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Solution Section */
.solution-section {
    padding: var(--section-padding);
    background: white;
}

.guide-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.guide-text {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.solution-card {
    background: var(--light-color);
    padding: 3rem;
    border-radius: 16px;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.solution-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.solution-description {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.solution-features li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-color);
}

.solution-features li::before {
    content: "✅";
    position: absolute;
    left: 0;
}

/* Applications Section */
.applications-section {
    padding: var(--section-padding);
    background: white;
}

.applications-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.applications-grid {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.application-card {
    background: var(--light-color);
    padding: 2.5rem;
    border-radius: 16px;
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
}

.application-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.application-card.featured {
    background: linear-gradient(135deg, #fef2f2 0%, var(--light-color) 100%);
    border-left-width: 6px;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid white;
}

.app-header h3 {
    font-size: 1.75rem;
    color: var(--text-primary);
}

.app-badge {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.app-body h4 {
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.app-body h4:first-child {
    margin-top: 0;
}

.app-benefits {
    list-style: none;
    margin: 1rem 0 2rem;
}

.app-benefits li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.7;
}

.app-benefits li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.app-benefits strong {
    color: var(--text-primary);
}

.app-results {
    display: flex;
    gap: 2rem;
    justify-content: space-around;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid white;
    flex-wrap: wrap;
}

.app-stat {
    text-align: center;
    min-width: 150px;
}

.applications-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    border-radius: 16px;
    color: white;
}

.applications-cta h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.applications-cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Process Section */
.process-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--light-color) 0%, white 100%);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-timeline {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: var(--light-color);
    border-radius: 20px;
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Success Section */
.success-section {
    padding: var(--section-padding);
    background: white;
}

.success-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.success-story {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.quote {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.attribution {
    margin-bottom: 1rem;
}

.attribution strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.attribution span {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.results {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.result-item {
    background: var(--secondary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Results Section */
.results-section {
    padding: var(--section-padding);
    background: var(--light-color);
}

.results-grid {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.result-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.result-card.featured {
    border-left: 6px solid var(--primary-color);
    grid-column: 1 / -1;
}

.result-header {
    margin-bottom: 2rem;
}

.industry {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
}

.result-header h3 {
    margin-top: 1rem;
    font-size: 1.75rem;
}

.situation,
.discovery {
    margin-bottom: 1.5rem;
}

.discovery ul {
    list-style: none;
    margin-top: 1rem;
}

.discovery li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
}

.discovery li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.result-metrics {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    margin: 2rem 0;
    padding: 2rem 0;
    border-top: 2px solid var(--light-color);
    border-bottom: 2px solid var(--light-color);
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.result-body blockquote {
    background: var(--light-color);
    padding: 1.5rem;
    border-left: 4px solid var(--primary-color);
    margin-top: 2rem;
    font-size: 1.125rem;
    font-style: italic;
}

.result-body cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: var(--text-secondary);
}

.mini-metric {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--light-color);
    border-radius: 8px;
    font-weight: 600;
    color: #10b981;
}

/* ROI Section */
.roi-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    color: white;
}

.roi-comparison {
    display: grid;
    grid-template-columns: 1fr auto 2fr;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto 3rem;
}

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

.roi-side.investment {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 16px;
}

.roi-side.return {
    background: rgba(220, 38, 38, 0.1);
    padding: 3rem;
    border-radius: 16px;
    border: 2px solid var(--primary-color);
}

.roi-amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 1.5rem 0;
}

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

.roi-list {
    list-style: none;
    text-align: left;
}

.roi-list li {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.roi-item {
    font-weight: 500;
}

.roi-value {
    font-weight: 700;
    color: #10b981;
}

.roi-total {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--primary-color);
    border-radius: 8px;
    font-size: 1.25rem;
}

.roi-reality {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    text-align: center;
    font-size: 1.125rem;
}

/* CTA Section */
.cta-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--primary-color), #7c3aed);
}

.cta-content {
    text-align: center;
    color: white;
}

.cta-headline {
    color: white;
    margin-bottom: 1rem;
}

.cta-subtext {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.cta-box {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    max-width: 600px;
    margin: 0 auto 2rem;
    box-shadow: var(--shadow-xl);
}

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

.cta-box p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.cta-note {
    display: block;
    margin-top: 1rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.cta-alternative {
    margin-top: 2rem;
}

.cta-alternative p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

/* Failure Section */
.failure-section {
    padding: 60px 0;
    background: #fef2f2;
    border-top: 3px solid var(--danger-color);
}

.failure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

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

.failure-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.failure-item h4 {
    color: var(--danger-color);
    margin-bottom: 0.5rem;
}

.failure-item p {
    color: var(--text-secondary);
    font-weight: 600;
}

/* Contact Section */
.contact-section {
    padding: var(--section-padding);
    background: var(--light-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.contact-form-wrapper h2 {
    margin-bottom: 0.5rem;
}

.form-intro {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.contact-info-card h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.contact-methods {
    margin-top: 2rem;
}

.contact-method {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.contact-method:last-child {
    border-bottom: none;
}

.method-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.method-details h4 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.25rem;
}

.contact-link:hover {
    color: var(--primary-dark);
}

.contact-value {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.method-note {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.cta-card {
    background: linear-gradient(135deg, #fef2f2 0%, white 100%);
    border-left: 4px solid var(--primary-color);
}

.next-steps {
    list-style: none;
    counter-reset: step-counter;
    margin-top: 1.5rem;
}

.next-steps li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
}

.next-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.next-steps strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.next-steps p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.trust-indicators {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.trust-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-color);
    border-radius: 12px;
}

.trust-stat {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.trust-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* ============================================
   7. FORMS & MODALS
   ============================================ */

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s;
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 3rem;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    position: relative;
    animation: slideIn 0.3s;
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-secondary);
}

.close:hover {
    color: var(--text-primary);
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea,
.form-group select,
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.form-note {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.form-success {
    background: #f0fdf4;
    border: 2px solid #10b981;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
}

.form-success h3 {
    color: #10b981;
    margin-bottom: 1rem;
}

.download-benefits {
    list-style: none;
    margin: 1.5rem 0;
}

.download-benefits li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
}

/* ============================================
   8. FOOTER
   ============================================ */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding: 4rem 0 3rem;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    margin-top: 1rem;
    line-height: 1.6;
    max-width: 300px;
}

.footer-section h4,
.footer-links h4,
.footer-contact h4 {
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-section ul,
.footer-links ul {
    list-style: none;
}

.footer-section li,
.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-section a,
.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-section a:hover,
.footer-links a:hover {
    color: var(--primary-color);
}

.footer-phone {
    margin-bottom: 1rem;
}

.footer-phone a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    transition: color 0.3s;
}

.footer-phone a:hover {
    color: var(--primary-light);
}

.footer-cta-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    border-radius: 6px;
    transition: all 0.3s;
    margin: 0.5rem 0;
}

.footer-cta-link:hover {
    background: var(--primary-dark);
    transform: translateX(3px);
}

.footer-hours {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin-top: 1rem;
    line-height: 1.6;
}

.footer-contact {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

/* ============================================
   9. ANIMATIONS
   ============================================ */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ============================================
   10. RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 968px) {
    /* Hero */
    .hero-headline {
        font-size: 2.5rem;
    }
    
    /* ROI Section */
    .roi-comparison {
        grid-template-columns: 1fr;
    }
    
    .roi-vs {
        transform: rotate(90deg);
        margin: 2rem 0;
    }
    
    /* Results */
    .result-metrics {
        flex-direction: column;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
    }
    
    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .trust-indicators {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Typography */
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    /* Logo */
    .logo-img {
        height: 35px;
    }
    
    .logo-text {
        font-size: 1.25rem;
    }
    
    /* Navigation */
    .nav-menu {
        display: none;
    }
    
    /* Hero */
    .hero-headline {
        font-size: 2.25rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }
    
    /* Grids */
    .solutions-grid,
    .process-steps,
    .success-grid,
    .insights-grid,
    .cost-grid {
        grid-template-columns: 1fr;
    }
    
    /* App Results */
    .app-results {
        flex-direction: column;
        align-items: center;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    /* Contact */
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .contact-subtext {
        font-size: 1rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
}