:root {
    --primary-blue: #2563eb;
    --deep-dark: #0f172a;
    --text-slate: #475569;
    --soft-bg: #f8fafc;
    --glass-border: rgba(226, 232, 240, 0.8);
}

.section-container { max-width: 1200px; margin: 0 auto; padding: 40px 24px;     border-bottom: 1px solid #f1f5f9;}

.mod-label { color: var(--primary-blue); font-weight: 800; font-size: 13px; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 15px; display: block; }
.mod-title { font-size: 36px; font-weight: 850; color: var(--deep-dark); margin-bottom: 25px; line-height: 1.2; }

.carrier-tag { background: var(--soft-bg); padding: 18px; border-radius: 16px; text-align: center; font-weight: 700; transition: 0.3s; cursor: pointer; }
.carrier-tag:hover { background: var(--primary-blue); color: #fff; transform: translateY(-3px); }

.info-section { 
    display: flex; align-items: center; gap: 80px; 
    padding: 40px 0; border-bottom: 1px solid #f1f5f9;
}
.info-section:nth-child(even) { flex-direction: row-reverse; }
.info-text { flex: 1; }
.info-visual { flex: 1; background: var(--soft-bg); border-radius: 40px; min-height: 350px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }

.app-hero {
    background: var(--deep-dark); border-radius: 48px; padding: 80px;
    color: white; display: flex; align-items: center; gap: 60px; margin-top: 60px;
}


:root {
    --brand-blue: #2563eb;
    --brand-light-blue: #eff6ff;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --border-subtle: #f1f5f9;
    --card-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
}

.profile-section { background: white; border-radius: 32px; padding: 10px; box-shadow: var(--card-shadow); margin-bottom: 40px;margin-top: 15px; }
.tag-label { display: inline-block; padding: 6px 12px; background: var(--brand-light-blue); color: var(--brand-blue); border-radius: 8px; font-size: 12px; font-weight: 700; margin-bottom: 16px; }
.carrier-title { font-size: 42px; font-weight: 900; color: var(--text-main); margin-bottom: 24px; letter-spacing: -1px; }
.official-btn { display: inline-flex; align-items: center; background: var(--brand-blue); color: white; padding: 14px 28px; border-radius: 14px; text-decoration: none; font-weight: 600; transition: 0.3s; }
.official-btn:hover { background: #1d4ed8; transform: translateY(-2px); }

.detail-card {
    background: #fff; border-radius: 20px; border: 1px solid #f1f5f9; margin-top: 36px; overflow: hidden;
}
.detail-row {
    display: flex; align-items: flex-start; gap: 20px; padding: 24px 28px;
    border-bottom: 1px solid #f1f5f9; transition: background 0.2s;
}
.detail-row:last-child { border-bottom: none; }
.detail-row:hover { background: #f8fafc; }
.detail-row .row-icon {
    width: 42px; height: 42px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.detail-row .row-icon.blue { background: #eff6ff; }
.detail-row .row-icon.violet { background: #f5f3ff; }
.detail-row .row-icon.emerald { background: #ecfdf5; }
.detail-row .row-label {
    font-size: 11px; text-transform: uppercase; letter-spacing: 1.2px; font-weight: 700; color: #94a3b8; margin-bottom: 6px;
}
.detail-row .row-body { flex: 1; min-width: 0; }
.detail-row .row-body p { font-size: 14px; color: #334155; line-height: 1.7; margin: 0; }
.detail-row .row-body p strong { color: #0f172a; font-weight: 600; }
.detail-row .row-body a { font-size: 14px; color: #2563eb; text-decoration: none; word-break: break-all; }
.detail-row .row-body a:hover { text-decoration: underline; }
.detail-row .row-body code {
    font-size: 13px; background: #f1f5f9; padding: 3px 10px; border-radius: 8px; color: #475569; font-family: 'SF Mono', 'Consolas', monospace;
}

.status-list { background: white; border-radius: 24px; padding: 10px; border: 1px solid var(--border-subtle); }
.status-item { display: flex; align-items: center; padding: 24px; border-bottom: 1px solid var(--border-subtle); transition: 0.2s; margin: 5px 0;}
.status-item:last-child { border-bottom: none; }
.status-item:hover { background: var(--brand-light-blue); border-radius: 16px; }
.status-num { font-size: 14px; font-weight: 800; color: var(--brand-blue); width: 40px; }
.status-content h4 { font-size: 16px; font-weight: 700; color: var(--text-main); margin-bottom: 4px; }
.status-content p { font-size: 14px; color: var(--text-muted); }

.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.faq-card { background: white; padding: 32px; border-radius: 24px; border: 1px solid var(--border-subtle); box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02); }
.faq-card h4 { font-size: 18px; font-weight: 700; color: var(--text-main); margin-bottom: 16px; line-height: 1.4; }
.faq-card p { font-size: 14px; color: var(--text-muted); line-height: 1.8; }

@media (max-width: 768px) {
    .faq-grid { grid-template-columns: 1fr; }
    .profile-section { padding: 16px; }
    .carrier-title { font-size: 28px; }
    .detail-row { flex-direction: column; gap: 10px; padding: 20px; }
}




/* Template Info Sections Styles */

/* Features List */
.feature-list { margin-top: 20px; list-style: none; padding: 0; }
.feature-list li { margin-bottom: 10px; font-weight: 600; }

/* Visual Mockups Cards */
.visual-card-wrapper { width: 90%; max-width: 320px; }
.visual-card {
    background: white; border-radius: 16px; box-shadow: 0 20px 40px rgba(0,0,0,0.06); 
    border: 1px solid #eee; padding: 24px; text-align: left;
}
.step-label {
    font-size: 11px; color: #94a3b8; font-weight: 600; text-transform: uppercase; 
    letter-spacing: 0.5px; margin-bottom: 12px;
}
.tracking-input-mock {
    background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 100px; 
    padding: 12px 20px; font-size: 14px; color: #334155; font-family: monospace; margin-bottom: 20px;
}
.carrier-detect-mock { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.carrier-icon-mock {
    width: 32px; height: 32px; background: #2563eb; border-radius: 8px; 
    display: flex; align-items: center; justify-content: center; color: white; font-size: 12px; font-weight: 700;
}
.carrier-name-mock { font-weight: 600; color: #1e293b; }
.check-icon { color: #22c55e; font-size: 18px; }
.status-mock {
    background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 10px; 
    padding: 10px 14px; font-size: 13px; color: #166534; font-weight: 600;
}

/* Globe Animation Section */
.globe-animation-wrapper { position: relative; width: 240px; height: 240px; }
.globe-dashed-ring {
    width: 200px; height: 200px; border-radius: 50%; border: 10px dashed #2563eb; 
    opacity: 0.15; animation: rotate 20s linear infinite; position: absolute; top: 20px; left: 20px;
}
.globe-content { position: absolute; top: 40px; left: 50%; transform: translateX(-50%); text-align: center; }
.globe-icon { font-size: 36px; margin-bottom: 12px; }
.country-list-mock { font-size: 13px; font-weight: 600; color: #1e293b; line-height: 1.6; }

/* Privacy Section */
.privacy-wrapper { width: 90%; max-width: 280px; text-align: center; }
.privacy-icon { font-size: 64px; margin-bottom: 20px; }
.privacy-features { display: flex; flex-direction: column; gap: 12px; }
.privacy-feature-item {
    display: flex; align-items: center; gap: 12px; background: white; border-radius: 12px; 
    padding: 12px 16px; box-shadow: 0 4px 12px rgba(0,0,0,0.04); border: 1px solid #e2e8f0;
}
.feature-text { font-size: 13px; color: #334155; font-weight: 500; }

/* App Section */
.app-hero-text { flex: 1; }
.app-label { color: #60a5fa; }
.app-title { color: white; }
.app-desc { color: #94a3b8; margin-bottom: 40px; }
.app-badges { display: flex; gap: 15px; align-items: center; }
.app-badge img { height: 44px; display: block; }

.app-mockup {
    flex: 0 0 240px;  background: #1e293b; border-radius: 40px; 
}
.app-mockup img { width: 100%; height: 100%; object-fit: cover; }
.app-mockup-inner { padding: 20px; }
.mockup-icon { width: 40px; height: 40px; background: #2563eb; border-radius: 10px; margin-bottom: 20px; }
.mockup-line-1 { width: 100%; height: 12px; background: #334155; border-radius: 6px; margin-bottom: 10px; }
.mockup-line-2 { width: 60%; height: 12px; background: #334155; border-radius: 6px; }

@media (max-width: 992px) {
    .info-section { flex-direction: column !important; gap: 40px; text-align: center; }
    .app-hero { flex-direction: column; padding: 40px; text-align: center; }
}