/* ============================================
   ABOUT PAGE STYLES
   ============================================ */
* { box-sizing: border-box; margin: 0; padding: 0; }

body.digo-about-page {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #fff;
    color: #1a1a2e;
    line-height: 1.6;
}

.digo-about-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Breadcrumb */
.digo-breadcrumb {
    padding: 16px 0 8px;
    font-size: 13px;
    color: #666;
}
.digo-breadcrumb a { color: #666; text-decoration: none; }
.digo-breadcrumb a:hover { color: #4f46e5; }
.digo-breadcrumb span { margin: 0 6px; color: #999; }
.digo-breadcrumb .current { color: #333; }

/* ============================================
   HERO SECTION
   ============================================ */
.digo-hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 40px 0 60px;
}

.digo-hero-left {}

.digo-hero-badge {
    display: inline-block;
    background: #ede9fe;
    color: #4f46e5;
    font-size: 13px;
    font-weight: 500;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.digo-hero-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.15;
    color: #0f0f1a;
    margin-bottom: 20px;
}

.digo-hero-title .highlight {
    color: #4f46e5;
}

.digo-hero-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 420px;
}

.digo-hero-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.digo-hero-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.digo-hero-feature-icon {
    width: 44px;
    height: 44px;
    background: #ede9fe;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.digo-hero-feature-icon svg {
    width: 22px;
    height: 22px;
    color: #4f46e5;
}

.digo-hero-feature-text h4 {
    font-size: 14px;
    font-weight: 700;
    color: #0f0f1a;
    margin-bottom: 3px;
}

.digo-hero-feature-text p {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
}

.digo-hero-right {
    position: relative;
}

.digo-hero-image {
    width: 100%;
    height: 380px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    object-fit: cover;
}

.digo-hero-img-placeholder {
    width: 100%;
    height: 380px;
    background: linear-gradient(135deg, #f8f9ff 0%, #ede9fe 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(79,70,229,0.15);
    position: relative;
    overflow: hidden;
}

.digo-hero-img-placeholder::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(79,70,229,0.05);
    border-radius: 50%;
}

.digo-laptop-icon {
    text-align: center;
}

.digo-laptop-icon svg {
    width: 120px;
    height: 120px;
    color: #4f46e5;
    opacity: 0.3;
}

.digo-laptop-icon .brand-text {
    font-size: 18px;
    font-weight: 800;
    color: #4f46e5;
    margin-top: 10px;
    letter-spacing: 1px;
}

.digo-laptop-icon .brand-sub {
    font-size: 10px;
    color: #7c6bc9;
    letter-spacing: 2px;
}

/* ============================================
   STATS SECTION
   ============================================ */
.digo-stats-section {
    background: #fff;
    border: 1px solid #e8e8f0;
    border-radius: 16px;
    padding: 36px 40px;
    margin: 0 0 70px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.digo-stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 20px;
    border-right: 1px solid #e8e8f0;
}

.digo-stat-item:last-child {
    border-right: none;
}

.digo-stat-icon {
    width: 52px;
    height: 52px;
    background: #ede9fe;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.digo-stat-icon svg {
    width: 26px;
    height: 26px;
    color: #4f46e5;
}

.digo-stat-content {}

.digo-stat-number {
    font-size: 32px;
    font-weight: 800;
    color: #0f0f1a;
    line-height: 1;
    margin-bottom: 4px;
}

.digo-stat-label {
    font-size: 13px;
    color: #666;
}

/* ============================================
   STORY SECTION
   ============================================ */
.digo-story-section {
    padding: 0 0 70px;
}

.digo-story-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 50px;
    align-items: start;
}

.digo-story-left {}

.digo-section-badge {
    display: inline-block;
    color: #4f46e5;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
}

.digo-section-title {
    font-size: 32px;
    font-weight: 800;
    color: #0f0f1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.digo-story-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.digo-mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
}

.digo-mv-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.digo-mv-icon {
    width: 38px;
    height: 38px;
    background: #ede9fe;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.digo-mv-icon svg {
    width: 18px;
    height: 18px;
    color: #4f46e5;
}

.digo-mv-text h4 {
    font-size: 13px;
    font-weight: 700;
    color: #0f0f1a;
    margin-bottom: 4px;
}

.digo-mv-text p {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
}

/* Story Center Image */
.digo-story-center {
    display: flex;
    justify-content: center;
}

.digo-founder-img-wrap {
    width: 220px;
    height: 280px;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #c7d2fe, #ede9fe);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(79,70,229,0.15);
}

.digo-founder-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.digo-founder-placeholder {
    text-align: center;
    color: #4f46e5;
}

.digo-founder-placeholder svg {
    width: 80px;
    height: 80px;
    opacity: 0.4;
}

/* Story Right - Founder Card */
.digo-story-right {}

.digo-founder-badge {
    font-size: 12px;
    font-weight: 600;
    color: #4f46e5;
    margin-bottom: 6px;
    display: block;
}

.digo-founder-name {
    font-size: 26px;
    font-weight: 800;
    color: #0f0f1a;
    margin-bottom: 4px;
}

.digo-founder-role {
    font-size: 13px;
    color: #666;
    margin-bottom: 16px;
    font-style: italic;
}

.digo-founder-bio {
    font-size: 13px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.digo-founder-signature {
    font-family: 'Dancing Script', 'Brush Script MT', cursive;
    font-size: 28px;
    color: #0f0f1a;
    line-height: 1;
    margin-top: 10px;
}

/* ============================================
   TEAM SECTION
   ============================================ */
.digo-team-section {
    padding: 70px 0;
    background: #fafafa;
    border-radius: 24px;
    margin-bottom: 70px;
}

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

.digo-team-header .digo-section-badge {
    display: block;
    text-align: center;
}

.digo-team-header .digo-section-title {
    font-size: 36px;
    text-align: center;
}

.digo-team-subtitle {
    font-size: 15px;
    color: #666;
    text-align: center;
    margin-top: 10px;
}

.digo-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 0 30px;
}

.digo-team-card {
    text-align: center;
}

.digo-team-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin: 0 auto 16px;
    overflow: hidden;
    background: linear-gradient(135deg, #e0e7ff, #ede9fe);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(79,70,229,0.12);
}

.digo-team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.digo-team-photo-placeholder svg {
    width: 60px;
    height: 60px;
    color: #4f46e5;
    opacity: 0.4;
}

.digo-team-role-icon {
    width: 36px;
    height: 36px;
    background: #ede9fe;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}

.digo-team-role-icon svg {
    width: 18px;
    height: 18px;
    color: #4f46e5;
}

.digo-team-name {
    font-size: 16px;
    font-weight: 700;
    color: #0f0f1a;
    margin-bottom: 2px;
}

.digo-team-position {
    font-size: 12px;
    color: #4f46e5;
    font-weight: 500;
    margin-bottom: 10px;
}

.digo-team-desc {
    font-size: 12px;
    color: #666;
    line-height: 1.6;
}

/* ============================================
   VALUES SECTION
   ============================================ */
.digo-values-section {
    padding: 0 0 70px;
}

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

.digo-values-header .digo-section-badge {
    display: block;
    text-align: center;
}

.digo-values-header .digo-section-title {
    text-align: center;
    font-size: 36px;
}

.digo-values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.digo-value-card {
    text-align: center;
    padding: 24px 16px;
}

.digo-value-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.digo-value-icon svg {
    width: 28px;
    height: 28px;
}

.digo-value-icon.purple { background: #ede9fe; }
.digo-value-icon.purple svg { color: #4f46e5; }

.digo-value-icon.blue { background: #dbeafe; }
.digo-value-icon.blue svg { color: #2563eb; }

.digo-value-icon.green { background: #d1fae5; }
.digo-value-icon.green svg { color: #059669; }

.digo-value-icon.indigo { background: #e0e7ff; }
.digo-value-icon.indigo svg { color: #4338ca; }

.digo-value-icon.orange { background: #ffedd5; }
.digo-value-icon.orange svg { color: #ea580c; }

.digo-value-title {
    font-size: 15px;
    font-weight: 700;
    color: #0f0f1a;
    margin-bottom: 8px;
}

.digo-value-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .digo-hero-title { font-size: 34px; }
    .digo-stats-section { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .digo-stat-item:nth-child(2) { border-right: none; }
    .digo-stat-item:nth-child(3) { border-right: 1px solid #e8e8f0; }
    .digo-story-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .digo-story-right { grid-column: 1 / -1; }
    .digo-team-grid { grid-template-columns: repeat(2, 1fr); }
    .digo-values-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .digo-hero-section { grid-template-columns: 1fr; gap: 30px; }
    .digo-hero-title { font-size: 28px; }
    .digo-hero-features { grid-template-columns: 1fr; }
    .digo-hero-img-placeholder,
    .digo-hero-image { height: 280px; }
    
    .digo-stats-section { 
        grid-template-columns: repeat(2, 1fr); 
        padding: 24px 20px;
        gap: 20px;
    }
    .digo-stat-item { 
        border-right: none; 
        padding: 0;
        border-bottom: 1px solid #e8e8f0;
        padding-bottom: 16px;
    }
    .digo-stat-item:nth-child(3),
    .digo-stat-item:nth-child(4) { border-bottom: none; }
    .digo-stat-item:nth-child(odd) { 
        border-right: 1px solid #e8e8f0;
        padding-right: 16px;
    }
    
    .digo-story-grid { grid-template-columns: 1fr; }
    .digo-story-center { display: none; }
    .digo-mission-vision { grid-template-columns: 1fr; }
    
    .digo-team-grid { 
        grid-template-columns: repeat(2, 1fr); 
        padding: 0 16px;
    }
    
    .digo-values-grid { grid-template-columns: repeat(2, 1fr); }
    .digo-section-title { font-size: 26px; }
    .digo-team-header .digo-section-title,
    .digo-values-header .digo-section-title { font-size: 28px; }
}

@media (max-width: 480px) {
    .digo-hero-title { font-size: 24px; }
    .digo-stats-section { grid-template-columns: 1fr 1fr; }
    .digo-team-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .digo-values-grid { grid-template-columns: repeat(2, 1fr); }
    .digo-team-photo { width: 110px; height: 110px; }
    .digo-story-section, .digo-team-section, .digo-values-section { padding-bottom: 50px; }
    .digo-team-section { padding: 40px 0; }
}

@media (max-width: 360px) {
    .digo-values-grid { grid-template-columns: 1fr; }
    .digo-team-grid { grid-template-columns: 1fr; }
}
