/* ==========================================
   DECAHIRE WEBSITE - STYLES
   ==========================================

   TABLE OF CONTENTS:
   1. Reset & Base Styles
   2. Navigation
   3. Hero Section
   4. Stats Section
   5. Features Section
   6. Advantage Section
   7. Process Section
   8. Trust Section
   9. Why Section
   10. Story Section
   11. Technology Section
   12. Expertise Section
   13. Background Section
   14. Product Section
   15. Innovation Section
   16. Success Section
   17. Industries Section
   18. Roles Section
   19. Values Section
   20. About Section
   21. How We Work Section
   22. Stories Section
   23. Network Section
   24. Why Choose Section
   25. Services Section
   26. Contact Modal
   27. Footer
   28. Responsive Styles
   ========================================== */
/* Google Fonts - Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;900&display=swap');

/* ==========================================
   COLOR & TYPOGRAPHY SYSTEM
   ========================================== */
:root {
    /* Colors */
    --background-primary: #FAF9F6;
    --background-secondary: #F5F4F0;
    --background-white: #FFFFFF;
    
    --text-primary: #000000;
    --text-secondary: #1a1a1a;
    --text-body: #333333;
    --text-muted: #666666;
    
    --accent-primary: #ff6b4a;
    --accent-hover: #ff5533;
    --accent-light: #ff8a70;
    
    --border-light: #E8E6E1;
    --border-medium: #D4D2CC;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-black: 900;
    
    /* Font Sizes */
    --text-xs: 13px;
    --text-sm: 15px;
    --text-base: 17px;
    --text-lg: 19px;
    --text-xl: 22px;
    --text-2xl: 28px;
    --text-3xl: 36px;
    --text-4xl: 48px;
    --text-5xl: 64px;
    --text-6xl: 80px;
    
    /* Line Heights */
    --leading-tight: 1.2;
    --leading-snug: 1.4;
    --leading-normal: 1.6;
    --leading-relaxed: 1.8;
    --leading-loose: 2.0;
    
    /* Letter Spacing */
    --tracking-tight: -0.02em;
    --tracking-normal: 0;
    --tracking-wide: 0.025em;
}

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

body {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    font-weight: var(--font-weight-regular);
    line-height: var(--leading-relaxed);
    color: var(--text-body);
    background: var(--background-primary);
    letter-spacing: var(--tracking-normal);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* ==========================================
   TYPOGRAPHY ENHANCEMENTS
   ========================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    letter-spacing: var(--tracking-tight);
    line-height: var(--leading-tight);
}

h1 {
    font-size: var(--text-6xl);
    font-weight: var(--font-weight-black);
    line-height: 1.1;
}

h2 {
    font-size: var(--text-4xl);
    font-weight: var(--font-weight-bold);
}

h3 {
    font-size: var(--text-3xl);
    font-weight: var(--font-weight-semibold);
}

p {
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
    color: var(--text-body);
    margin-bottom: 1.25rem;
}

.text-muted {
    color: var(--text-muted);
}

/* Better reading experience */
article p,
.why-content p,
.trust-content p,
.product-content p {
    font-size: var(--text-lg);
    line-height: var(--leading-loose);
}

/* ==========================================
   2. NAVIGATION
   ========================================== */
nav {
    padding: 20px 0;
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #f0f0f0;
}

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

.logo {
    height: 80px;
    display: block;
    margin: 0;
    padding: 0;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ff6b4a;
}

.cta-button {
    background: #ff6b4a;
    color: white;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: #ff5533;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 74, 0.3);
}

/* ==========================================
   3. HERO SECTION
   ========================================== */
.hero {
    padding: 100px 0 50px;
    text-align: center;
}

.visual-hero {
    padding: 40px 0 60px;
}

.hero-image {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    display: block;
    margin: 0 auto;
}

.hero h1 {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.hero .highlight {
    color: #ff6b4a;
}

.hero p {
    font-size: 24px;
    color: #666;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.secondary-button {
    background: transparent;
    color: #1a1a1a;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #1a1a1a;
    transition: all 0.3s;
}

.secondary-button:hover {
    background: #1a1a1a;
    color: white;
}

/* ==========================================
   4. STATS SECTION
   ========================================== */
.stats {
    padding: 50px 0;
    background: #f8f9fa;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item h3 {
    font-size: 56px;
    font-weight: 700;
    color: #ff6b4a;
    margin-bottom: 8px;
}

.stat-item p {
    font-size: 18px;
    color: #666;
}

/* ==========================================
   5. FEATURES SECTION
   ========================================== */
.features {
    padding: 50px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 20px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
}

.feature-card {
    padding: 40px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e5e5e5;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background-size: cover;
    background-position: center;
    opacity: 0.08;
    z-index: 0;
}

.feature-card:nth-child(1)::before {
    background-image: url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=800&h=600&fit=crop&q=80');
}

.feature-card:nth-child(2)::before {
    background-image: url('https://images.unsplash.com/photo-1553877522-43269d4ea984?w=800&h=600&fit=crop&q=80');
}

.feature-card:nth-child(3)::before {
    background-image: url('https://images.unsplash.com/photo-1485827404703-89b55fcc595e?w=800&h=600&fit=crop&q=80');
}

.feature-card:nth-child(4)::before {
    background-image: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=800&h=600&fit=crop&q=80');
}

.feature-card:nth-child(5)::before {
    background-image: url('https://images.unsplash.com/photo-1517694712202-14dd9538aa97?w=800&h=600&fit=crop&q=80');
}

.feature-card:nth-child(6)::before {
    background-image: url('https://images.unsplash.com/photo-1552664730-d307ca884978?w=800&h=600&fit=crop&q=80');
}

.feature-card > * {
    position: relative;
    z-index: 1;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    border-color: #ff6b4a;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b4a 0%, #ff8a70 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.feature-card p {
    color: #666;
    line-height: 1.7;
    font-size: 16px;
}

/* ==========================================
   6. ADVANTAGE SECTION
   ========================================== */
.advantage {
    padding: 50px 0;
    background: linear-gradient(135deg, #1a3a52 0%, #2d5f7f 100%);
    color: white;
}

.advantage .section-header h2,
.advantage .section-header p {
    color: white;
}

.advantage-intro {
    max-width: 900px;
    margin: 30px auto 50px;
    text-align: center;
}

.advantage-intro p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 20px;
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.advantage-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #ff6b4a;
}

.advantage-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 20px;
}

.advantage-card p strong {
    color: #ff8a70;
    display: block;
    margin-bottom: 8px;
    font-size: 17px;
}

.advantage-synthesis {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 16px;
    margin-top: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.advantage-synthesis h3 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #ff6b4a;
}

.advantage-synthesis p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* ==========================================
   7. PROCESS SECTION
   ========================================== */
.process {
    padding: 50px 0;
    background: #f8f9fa;
}

.process-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.process-intro p {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b4a 0%, #ff8a70 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin: 0 auto 24px;
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.process-step p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
}

.process-detail {
    max-width: 900px;
    margin: 60px auto 0;
    padding: 40px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.process-detail h3 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.process-detail p {
    font-size: 17px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* ==========================================
   8. TRUST SECTION
   ========================================== */
.trust-section {
    padding: 50px 0;
    background: white;
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.trust-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.trust-content h2 {
    font-size: 40px;
    margin-bottom: 24px;
    line-height: 1.2;
}

.trust-content p {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 24px;
}

.trust-content ul {
    list-style: none;
    margin-bottom: 32px;
}

.trust-content ul li {
    font-size: 17px;
    color: #333;
    padding: 12px 0;
    line-height: 1.6;
}

/* ==========================================
   9. WHY SECTION
   ========================================== */
.why-section {
    padding: 50px 0;
    background: white;
}

.why-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

.why-content h2 {
    font-size: 40px;
    margin-bottom: 32px;
    line-height: 1.2;
}

.why-content p {
    font-size: 18px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 24px;
}

.why-highlight {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px;
    border-radius: 12px;
    margin-top: 40px;
    border-left: 4px solid #ff6b4a;
}

.why-highlight h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.why-highlight p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 0;
}

.why-image img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 100px;
}

/* ==========================================
   10. STORY SECTION
   ========================================== */
.story-section {
    padding: 50px 0;
    background: #f8f9fa;
}

.story-content {
    margin-top: 50px;
    display: grid;
    gap: 50px;
}

.story-block h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.story-block p {
    font-size: 18px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.story-image-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

/* ==========================================
   11. TECHNOLOGY SECTION
   ========================================== */
.technology-section {
    padding: 50px 0;
    background: white;
}

.tech-content {
    margin-top: 50px;
}

.tech-block {
    margin-bottom: 60px;
}

.tech-block img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.tech-text h3 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.tech-text p {
    font-size: 18px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 24px;
}

.tech-highlight {
    background: linear-gradient(135deg, #1a3a52 0%, #2d5f7f 100%);
    padding: 40px;
    border-radius: 16px;
    color: white;
    margin-top: 50px;
}

.tech-highlight h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #ff6b4a;
}

.tech-highlight p {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
}

/* ==========================================
   AI VOICE CALLING SYSTEM - WORKFLOW DESIGN
   ========================================== */

.ai-calling-section {
    padding: 60px 0;
    background: var(--background-white);
    position: relative;
}

.ai-calling-section .section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

/* Workflow Container */
.calling-workflow {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

/* Individual Workflow Stage */
.workflow-stage {
    position: relative;
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 30px;
    align-items: start;
}

.workflow-stage:last-child {
    margin-bottom: 0;
}

.workflow-stage:last-child .workflow-connector {
    display: none;
}

/* Stage Number Badge */
.stage-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b4a 0%, #ff8a70 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 900;
    color: white;
    box-shadow: 0 8px 24px rgba(255, 107, 74, 0.3);
    position: sticky;
    top: 100px;
}

/* Connector Line Between Stages */
.workflow-connector {
    position: absolute;
    left: 40px;
    top: 80px;
    bottom: -40px;
    width: 3px;
    background: linear-gradient(180deg, #ff6b4a 0%, #ffddcc 100%);
    z-index: 0;
}

.workflow-connector::after {
    content: '↓';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
    color: #ff6b4a;
    background: var(--background-white);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Stage Content Box */
.stage-content {
    background: var(--background-secondary);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid var(--border-light);
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}

.stage-content:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border-color: #ff6b4a;
}

/* Highlight Stage (The Conversation) */
.stage-highlight .stage-content {
    background: linear-gradient(135deg, #fff5f2 0%, #ffe8e0 100%);
    border: 3px solid #ff6b4a;
}

.stage-highlight .stage-number {
    width: 100px;
    height: 100px;
    font-size: 36px;
    background: linear-gradient(135deg, #1a3a52 0%, #2d5f7f 100%);
}

/* Stage Icon */
.stage-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: inline-block;
}

.stage-content h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.stage-content > p {
    font-size: 17px;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 24px;
}

/* Stage Metrics */
.stage-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 24px;
}

.metric {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 12px;
    border: 2px solid #ff6b4a;
}

.metric-value {
    display: block;
    font-size: 36px;
    font-weight: 900;
    color: #ff6b4a;
    margin-bottom: 8px;
}

.metric-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-body);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Stage Details List */
.stage-details ul {
    list-style: none;
    padding: 0;
    margin: 24px 0 0 0;
}

.stage-details li {
    padding: 12px 0 12px 30px;
    position: relative;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-body);
    line-height: 1.6;
}

.stage-details li:last-child {
    border-bottom: none;
}

.stage-details li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #ff6b4a;
    font-weight: 700;
    font-size: 18px;
}

.stage-details strong {
    color: var(--text-primary);
    font-weight: 700;
}

/* Conversation Features */
.conversation-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.conv-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: white;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-body);
}

.conv-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #ff6b4a;
    color: white;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

/* Processing Grid */
.processing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 24px;
}

.process-item {
    padding: 20px;
    background: white;
    border-radius: 12px;
    border-left: 4px solid #ff6b4a;
}

.process-item strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.process-item p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

/* Data Variables Tags */
.data-variables {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.variable-tag {
    display: inline-block;
    padding: 10px 20px;
    background: white;
    border: 2px solid #ff6b4a;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    transition: all 0.3s;
}

.variable-tag:hover {
    background: #ff6b4a;
    color: white;
    transform: translateY(-2px);
}

/* Report Highlights */
.report-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 24px;
}

.highlight-box {
    padding: 24px;
    background: white;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--border-light);
    transition: all 0.3s;
}

.highlight-box:hover {
    border-color: #ff6b4a;
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.highlight-box h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.highlight-box p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

/* Stats Banner at Bottom */
.calling-stats-banner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, #1a3a52 0%, #2d5f7f 100%);
    border-radius: 20px;
}

.stat-banner-item {
    display: flex;
    align-items: center;
    gap: 16px;
    color: white;
}

.stat-icon {
    font-size: 36px;
    flex-shrink: 0;
}

.stat-banner-item strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    color: white;
}

.stat-banner-item p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 968px) {
    .workflow-stage {
        grid-template-columns: 60px 1fr;
        gap: 20px;
    }
    
    .stage-number {
        width: 60px;
        height: 60px;
        font-size: 22px;
    }
    
    .stage-highlight .stage-number {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
    
    .workflow-connector {
        left: 30px;
    }
    
    .conversation-features {
        grid-template-columns: 1fr;
    }
    
    .processing-grid {
        grid-template-columns: 1fr;
    }
    
    .report-highlights {
        grid-template-columns: 1fr;
    }
    
    .calling-stats-banner {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .stage-content {
        padding: 30px 24px;
    }
    
    .stage-metrics {
        grid-template-columns: 1fr;
    }
    
    .calling-stats-banner {
        grid-template-columns: 1fr;
        padding: 30px 24px;
    }
    
    .stage-number {
        position: relative;
        top: auto;
    }
}

/* ==========================================
   12. EXPERTISE SECTION
   ========================================== */
.expertise-section {
    padding: 50px 0;
    background: white;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.expertise-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.expertise-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.expertise-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.expertise-card h3 {
    font-size: 22px;
    padding: 24px 24px 12px;
    color: #1a1a1a;
}

.expertise-card p {
    padding: 0 24px 24px;
    color: #666;
    line-height: 1.6;
}

/* ==========================================
   13. BACKGROUND SECTION
   ========================================== */
.background-section {
    padding: 50px 0;
    background: #f8f9fa;
}

.background-content {
    margin-top: 50px;
}

.background-content img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.background-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.background-text p {
    font-size: 18px;
    color: #444;
    line-height: 1.8;
}

/* ==========================================
   14. PRODUCT SECTION
   ========================================== */
.product-section {
    padding: 50px 0;
    background: white;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.product-content h2 {
    font-size: 40px;
    margin-bottom: 24px;
    line-height: 1.2;
}

.product-content p {
    font-size: 18px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 20px;
}

.product-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* ==========================================
   15. INNOVATION SECTION
   ========================================== */
.innovation-section {
    padding: 50px 0;
    background: #f8f9fa;
}

.innovation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.innovation-content h2 {
    font-size: 40px;
    margin-bottom: 24px;
    line-height: 1.2;
}

.innovation-content p {
    font-size: 18px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 20px;
}

.innovation-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* ==========================================
   16. SUCCESS SECTION
   ========================================== */
.success-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.success-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.success-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.success-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.success-card p {
    color: #666;
    line-height: 1.7;
}

/* ==========================================
   17. INDUSTRIES SECTION
   ========================================== */
.industries-section {
    padding: 50px 0;
    background: white;
}

.industries-content {
    margin-top: 50px;
}

.industries-content img {
    width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 40px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.industry-item {
    padding: 40px 30px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s;
    text-align: center;
}

.industry-item:hover {
    background: #fff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.industry-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.industry-item h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #ff6b4a;
}

.industry-item p {
    color: #666;
    line-height: 1.7;
    font-size: 15px;
}

.industries-note {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px;
    border-radius: 12px;
    border-left: 4px solid #ff6b4a;
}

.industries-note p {
    font-size: 17px;
    color: #444;
    line-height: 1.8;
    margin: 0;
}

.industries-note strong {
    color: #1a1a1a;
}

/* ==========================================
   18. ROLES SECTION
   ========================================== */
.roles-section {
    padding: 50px 0;
    background: #f8f9fa;
}

.roles-intro {
    text-align: center;
    max-width: 800px;
    margin: 30px auto 50px;
}

.roles-intro h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.roles-intro p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

.roles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
    margin-bottom: 40px;
}

.role-category {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.role-category img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.role-category h3 {
    font-size: 24px;
    padding: 24px 30px 16px;
    color: #1a1a1a;
    border-bottom: 2px solid #ff6b4a;
}

.role-content {
    padding: 24px 30px 30px;
}

.role-content p {
    font-size: 16px;
    font-weight: 600;
    color: #ff6b4a;
    margin: 20px 0 12px;
}

.role-content p:first-child {
    margin-top: 0;
}

.role-category ul {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}

.role-category ul li {
    padding: 8px 0 8px 20px;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    font-size: 15px;
}

.role-category ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #ff6b4a;
}

.role-category ul li:last-child {
    border-bottom: none;
}

.roles-note {
    background: linear-gradient(135deg, #1a3a52 0%, #2d5f7f 100%);
    padding: 40px;
    border-radius: 12px;
    color: white;
}

.roles-note p {
    font-size: 17px;
    line-height: 1.8;
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
}

.roles-note strong {
    color: #ff8a70;
}

/* ==========================================
   19. VALUES SECTION
   ========================================== */
.values-section {
    padding: 50px 0;
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.value-card {
    text-align: center;
    padding: 40px 30px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s;
}

.value-card:hover {
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.value-card p {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

/* ==========================================
   20. ABOUT SECTION
   ========================================== */
.about-section {
    padding: 50px 0;
    background: white;
}

.about-content {
    margin-top: 50px;
}

.about-main {
    margin-bottom: 50px;
}

.about-main img {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.about-text h3 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.about-text p {
    font-size: 18px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.about-card {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}

.about-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #ff6b4a;
}

.about-card p {
    color: #666;
    line-height: 1.7;
    font-size: 16px;
}

/* ==========================================
   21. HOW WE WORK SECTION
   ========================================== */
.how-section {
    padding: 50px 0;
    background: #f8f9fa;
}

.how-content {
    max-width: 1000px;
    margin: 50px auto 0;
}

.how-step {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 40px;
    margin-bottom: 50px;
    align-items: start;
}

.how-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b4a 0%, #ff8a70 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: white;
}

.how-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.how-text p {
    font-size: 17px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 16px;
}

/* ==========================================
   22. STORIES SECTION
   ========================================== */
.stories-section {
    padding: 50px 0;
    background: white;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.story-card {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    transition: all 0.3s;
}

.story-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.story-category {
    display: inline-block;
    background: #ff6b4a;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.story-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.story-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 16px;
}

.story-card p strong {
    color: #1a1a1a;
    display: block;
    margin-top: 16px;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #e0e0e0;
}

.stat-item-small {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #ff6b4a;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

/* ==========================================
   23. NETWORK SECTION
   ========================================== */
.network-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #1a3a52 0%, #2d5f7f 100%);
    color: white;
}

.network-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.network-text h2 {
    font-size: 40px;
    margin-bottom: 24px;
    color: white;
}

.network-text > p {
    font-size: 18px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
}

.network-benefits {
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    align-items: start;
}

.benefit-icon {
    width: 32px;
    height: 32px;
    background: #ff6b4a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 700;
    font-size: 18px;
}

.benefit-item strong {
    display: block;
    font-size: 18px;
    margin-bottom: 8px;
    color: white;
}

.benefit-item p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0;
}

.network-image img {
    width: 100%;
    height: auto;
    max-height: 550px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* ==========================================
   24. WHY CHOOSE SECTION
   ========================================== */
.why-choose-section {
    padding: 50px 0;
    background: white;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.why-choose-card {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
}

.why-choose-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.why-choose-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.why-choose-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.why-choose-card p {
    color: #666;
    line-height: 1.7;
    font-size: 16px;
}

/* ==========================================
   25. SERVICES SECTION
   ========================================== */
.services-overview {
    padding: 70px 0 40px;
    background: linear-gradient(135deg, #1a3a52 0%, #2d5f7f 100%);
}

.services-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.service-nav-link {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    text-decoration: none;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    font-size: 18px;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.service-nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #ff6b4a;
    transform: translateY(-2px);
}

.service-detail {
    padding: 50px 0;
    background: white;
}

.service-detail.service-alt {
    background: #f8f9fa;
}

.service-content {
    max-width: 1100px;
    margin: 0 auto;
}

.service-header {
    text-align: center;
    margin-bottom: 50px;
}

.service-badge {
    display: inline-block;
    background: #ff6b4a;
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-header h2 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-subtitle {
    font-size: 20px;
    color: #666;
    margin: 0;
}

.service-main {
    margin-bottom: 50px;
}

.service-main img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.service-description h3 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.service-description p {
    font-size: 18px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 16px;
    margin-bottom: 40px;
}

.service-alt .service-features {
    background: white;
}

.feature-col h4 {
    font-size: 24px;
    margin-bottom: 24px;
    color: #ff6b4a;
}

.feature-col ul {
    list-style: none;
    padding: 0;
}

.feature-col ul li {
    padding: 12px 0 12px 30px;
    color: #444;
    line-height: 1.6;
    position: relative;
    border-bottom: 1px solid #e0e0e0;
}

.feature-col ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #ff6b4a;
    font-weight: 700;
}

.feature-col ul li:last-child {
    border-bottom: none;
}

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

/* ==========================================
   26. CONTACT MODAL
   ========================================== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-container {
    background: white;
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
    position: relative;
}

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

.modal-header {
    padding: 30px 30px 20px;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
}

.modal-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px 0;
}

.modal-header p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 32px;
    color: #999;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s;
    line-height: 1;
}

.modal-close:hover {
    background: #f0f0f0;
    color: #333;
}

.modal-body {
    padding: 30px;
}

.popup-form-group {
    margin-bottom: 20px;
}

.popup-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1a1a1a;
    font-size: 14px;
}

.popup-form-group input,
.popup-form-group textarea,
.popup-form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s;
    background: white;
}

.popup-form-group input:focus,
.popup-form-group textarea:focus,
.popup-form-group select:focus {
    outline: none;
    border-color: #ff6b4a;
    box-shadow: 0 0 0 3px rgba(255, 107, 74, 0.1);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.modal-footer {
    padding: 0 30px 30px;
}

.popup-submit-btn {
    width: 100%;
    background: #ff6b4a;
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.popup-submit-btn:hover:not(:disabled) {
    background: #ff5533;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 74, 0.3);
}

.popup-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-message {
    margin-top: 20px;
    padding: 16px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-message.show {
    display: block;
}

/* ==========================================
   27. FOOTER
   ========================================== */
footer {
    padding: 50px 0 30px;
    background: #1a1a1a;
    color: white;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-brand {
    padding: 0;
    margin: 0;
}

.footer-brand img {
    margin-bottom: 15px;
    display: block;
}

.footer-logo {
    height: 80px;
    margin-bottom: 15px;
    display: block;
    margin-top: 0;
    padding: 0;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-section h4 {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 600;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #ff6b4a;
}

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

/* CTA Section */
.cta-section {
    padding: 50px 0;
    text-align: center;
    background: linear-gradient(135deg, #ff6b4a 0%, #ff8a70 100%);
    color: white;
}

.cta-section h2 {
    font-size: 48px;
    margin-bottom: 24px;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-section .cta-button {
    background: white;
    color: #ff6b4a;
    font-size: 18px;
    padding: 16px 40px;
}

.cta-section .cta-button:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* Visual CTA */
.visual-cta {
    padding: 0 0 50px;
    background: linear-gradient(135deg, #ff6b4a 0%, #ff8a70 100%);
}

.visual-cta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.cta-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s;
}

.cta-image:hover {
    transform: scale(1.05);
}

/* ==========================================
   AGGRESSIVE WHITE SPACE REDUCTION
   ========================================== */

/* ==========================================
   MINIMAL WHITE SPACE - ULTRA COMPACT
   ========================================== */

/* MINIMAL Section Padding - 30px */
.hero {
    padding: 30px 0 15px !important;
}

.visual-hero {
    padding: 15px 0 20px !important;
}

.stats {
    padding: 20px 0 !important;
}

.features,
.advantage,
.process,
.trust-section,
.why-section,
.story-section,
.technology-section,
.expertise-section,
.background-section,
.product-section,
.innovation-section,
.success-section,
.industries-section,
.roles-section,
.values-section,
.about-section,
.how-section,
.stories-section,
.network-section,
.why-choose-section,
.service-detail,
.cta-section {
    padding: 30px 0 !important;
}

.services-overview {
    padding: 25px 0 15px !important;
}

/* MINIMAL Section Headers - 20px margin */
.section-header {
    margin-bottom: 20px !important;
}

.section-header h2 {
    margin-bottom: 8px !important;
}

.section-header p {
    margin-bottom: 0 !important;
}

/* MINIMAL Internal Spacing */
.advantage-intro,
.process-intro,
.roles-intro {
    margin: 15px auto 20px !important;
}

.advantage-intro p,
.process-intro p,
.roles-intro p {
    margin-bottom: 10px !important;
}

/* MINIMAL Grid Spacing - 20px gaps */
.advantage-grid,
.features-grid,
.process-steps,
.expertise-grid,
.industries-grid,
.roles-grid,
.values-grid,
.success-grid,
.stories-grid,
.why-choose-grid,
.about-grid {
    margin-top: 20px !important;
    gap: 20px !important;
}

.trust-grid,
.why-grid,
.product-grid,
.innovation-grid,
.network-content {
    gap: 40px !important;  /* Keep some gap for 2-column layouts */
}

/* MINIMAL Card Padding - 25px */
.feature-card,
.advantage-card,
.success-card,
.value-card,
.why-choose-card,
.story-card,
.about-card {
    padding: 25px !important;
}

.industry-item {
    padding: 25px 20px !important;
}

.role-content {
    padding: 20px 24px 20px !important;
}

/* MINIMAL Special Boxes */
.advantage-synthesis,
.process-detail,
.tech-highlight,
.why-highlight,
.industries-note,
.roles-note {
    margin-top: 20px !important;
    padding: 25px !important;
}

.process-detail {
    margin: 30px auto 0 !important;
}

/* MINIMAL Image Margins - 20px */
.hero-image {
    margin-bottom: 20px !important;
}

.trust-image img,
.why-image img,
.product-image img,
.innovation-image img,
.network-image img,
.tech-block img,
.background-content img,
.industries-content img,
.about-main img,
.service-main img {
    margin-bottom: 20px !important;
}

.tech-block {
    margin-bottom: 40px !important;  /* Was 60px */
}

/* MINIMAL Text Spacing */
.trust-content h2,
.why-content h2,
.product-content h2,
.innovation-content h2,
.network-text h2,
.background-text h3,
.tech-text h3,
.about-text h3 {
    margin-bottom: 15px !important;
}

.trust-content p,
.why-content p,
.product-content p,
.innovation-content p,
.background-text p,
.tech-text p,
.about-text p {
    margin-bottom: 12px !important;
}

.network-text > p {
    margin-bottom: 30px !important;
}

/* MINIMAL Content Sections */
.about-content,
.background-content,
.tech-content,
.industries-content {
    margin-top: 25px !important;
}

.about-main {
    margin-bottom: 25px !important;
}

/* MINIMAL Process Steps */
.process-steps {
    margin-top: 30px !important;
    gap: 25px !important;
}

.process-step {
    margin-bottom: 0 !important;
}

.process-step h3 {
    margin-bottom: 8px !important;
}

.process-step p {
    margin-bottom: 10px !important;
}

.step-number {
    margin: 0 auto 20px !important;  /* Was 24px */
}

/* MINIMAL How We Work */
.how-content {
    margin: 30px auto 0 !important;
}

.how-step {
    margin-bottom: 30px !important;
    gap: 30px !important;
}

.how-text h3 {
    margin-bottom: 15px !important;
}

.how-text p {
    margin-bottom: 12px !important;
}

/* MINIMAL Service Sections */
.service-header {
    margin-bottom: 25px !important;
}

.service-header h2 {
    margin-bottom: 12px !important;
}

.service-main {
    margin-bottom: 25px !important;
}

.service-description h3 {
    margin-bottom: 20px !important;
}

.service-description p {
    margin-bottom: 15px !important;
}

.service-features {
    gap: 30px !important;
    padding: 25px !important;
    margin-bottom: 25px !important;
}

.feature-col h4 {
    margin-bottom: 20px !important;
}

.service-cta {
    margin-top: 0 !important;
}

/* MINIMAL Story Cards */
.story-card h3 {
    margin-bottom: 15px !important;
}

.story-card p {
    margin-bottom: 12px !important;
}

.story-stats {
    margin-top: 20px !important;
    padding-top: 20px !important;
    gap: 15px !important;
}

.stat-number {
    margin-bottom: 5px !important;
}

/* MINIMAL Network Benefits */
.network-benefits {
    margin-bottom: 30px !important;
}

.benefit-item {
    margin-bottom: 20px !important;
    gap: 15px !important;
}

.benefit-item strong {
    margin-bottom: 5px !important;
}

/* MINIMAL Footer */
footer {
    padding: 35px 0 20px !important;
}

.footer-content {
    margin-bottom: 25px !important;
    gap: 35px !important;
}

.footer-bottom {
    padding-top: 20px !important;
}

.footer-brand img,
.footer-logo {
    margin-bottom: 12px !important;
}

.footer-section h4 {
    margin-bottom: 15px !important;
}

.footer-section ul li {
    margin-bottom: 8px !important;
}

/* MINIMAL CTA Section */
.cta-section {
    padding: 40px 0 !important;
}

.cta-section h2 {
    margin-bottom: 15px !important;
}

.cta-section p {
    margin-bottom: 25px !important;
}

.visual-cta {
    padding: 0 0 25px !important;
}

.visual-cta-grid {
    gap: 15px !important;
}

/* MINIMAL Feature Icons */
.feature-icon {
    margin-bottom: 20px !important;  /* Was 24px */
}

.feature-card h3 {
    margin-bottom: 12px !important;  /* Was 16px */
}

/* MINIMAL Value Icons */
.value-icon {
    margin-bottom: 15px !important;  /* Was 20px */
}

.value-card h3 {
    margin-bottom: 8px !important;  /* Was 12px */
}

.why-choose-icon {
    margin-bottom: 15px !important;  /* Was 20px */
}

.why-choose-card h3 {
    margin-bottom: 12px !important;  /* Was 16px */
}

/* MINIMAL Stat Items */
.stat-item h3 {
    margin-bottom: 5px !important;  /* Was 8px */
}

/* MINIMAL Advantage Cards */
.advantage-card h3 {
    margin-bottom: 10px !important;  /* Was 12px */
}

.advantage-card p {
    margin-bottom: 15px !important;  /* Was 20px */
}

.advantage-card p strong {
    margin-bottom: 5px !important;  /* Was 8px */
}

.advantage-synthesis h3 {
    margin-bottom: 20px !important;  /* Was 24px */
}

.advantage-synthesis p {
    margin-bottom: 15px !important;  /* Was 20px */
}

/* MINIMAL Role Category */
.role-category h3 {
    padding: 20px 30px 12px !important;  /* Was 24px 30px 16px */
}

.role-content p {
    margin: 15px 0 10px !important;  /* Was 20px 0 12px */
}

.role-category ul li {
    padding: 6px 0 6px 20px !important;  /* Was 8px 0 8px 20px */
}

/* MINIMAL Expertise Cards */
.expertise-card h3 {
    padding: 20px 24px 10px !important;  /* Was 24px 24px 12px */
}

.expertise-card p {
    padding: 0 24px 20px !important;  /* Was 0 24px 24px */
}

/* ==========================================
   28. RESPONSIVE STYLES
   ========================================== */
@media (max-width: 768px) {
    /* MINIMAL mobile padding */
    .hero {
        padding: 25px 0 10px !important;
    }
    
    .features,
    .advantage,
    .process,
    .trust-section,
    .why-section,
    .technology-section,
    .expertise-section,
    .background-section,
    .product-section,
    .innovation-section,
    .success-section,
    .industries-section,
    .roles-section,
    .values-section,
    .about-section,
    .how-section,
    .stories-section,
    .network-section,
    .why-choose-section,
    .service-detail,
    .cta-section {
        padding: 25px 0 !important;
    }
    
    .section-header {
        margin-bottom: 20px !important;
    }
    
    .section-header h2 {
        font-size: 32px !important;
    }
    
    .hero h1 {
        font-size: 42px;
    }

    .hero p {
        font-size: 18px;
    }

    .features-grid,
    .advantage-grid,
    .expertise-grid,
    .industries-grid,
    .roles-grid,
    .values-grid,
    .success-grid,
    .stories-grid,
    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .nav-links {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-image {
        max-height: 300px;
    }

    .trust-grid,
    .why-grid,
    .product-grid,
    .innovation-grid,
    .network-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .trust-image img,
    .why-image img,
    .product-image img,
    .innovation-image img,
    .network-image img {
        height: 250px;
        position: relative;
        top: 0;
    }

    .visual-cta-grid {
        grid-template-columns: 1fr;
    }

    .trust-content h2,
    .why-content h2,
    .product-content h2,
    .innovation-content h2 {
        font-size: 32px;
    }

    .process-detail,
    .advantage-synthesis,
    .tech-highlight,
    .why-highlight {
        padding: 20px !important;
    }

    .tech-block img,
    .background-content img,
    .industries-content img {
        height: 200px;
    }

    .roles-note,
    .industries-note {
        padding: 20px !important;
    }

    .role-content {
        padding: 20px 24px 20px !important;
    }

    .about-grid,
    .story-stats {
        grid-template-columns: 1fr;
    }

    .how-step {
        grid-template-columns: 1fr;
        gap: 20px !important;
        margin-bottom: 25px !important;
    }

    .how-number {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .services-nav {
        grid-template-columns: 1fr;
    }

    .service-features {
        grid-template-columns: 1fr;
        padding: 20px !important;
    }

    .service-header h2 {
        font-size: 36px;
    }

    .service-main img {
        height: 250px;
    }

    .cta-image {
        height: 250px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .modal-container {
        max-height: 95vh;
    }

    .modal-header h2 {
        font-size: 24px;
    }

    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 20px;
    }
    
    .feature-card,
    .story-card,
    .success-card,
    .value-card,
    .why-choose-card {
        padding: 20px !important;
    }
}
CSSEOF
